CREATE2 deterministic contract address calculator — derive the EIP-1014 EVM deployment add
CREATE2 deterministic contract address calculator — derive the EIP-1014 EVM deployment address, preimage, hashes, and EIP-55 checksum offline without RPC.
5000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-15
updated
Provider
chain-tools.use.x402atlas.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x8C128f1Ee62Bb5e47867CfbAe2ad89be325Df1b2",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:137",
"payTo": "0x8C128f1Ee62Bb5e47867CfbAe2ad89be325Df1b2",
"asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
"amount": "5000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:42161",
"payTo": "0x8C128f1Ee62Bb5e47867CfbAe2ad89be325Df1b2",
"asset": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
"amount": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"category": "utilities",
"info": {
"input": {
"body": {
"deployer": "0x0000000000000000000000000000000000000000",
"init_code": "0xdeadbeef",
"salt": "0x0000000000000000000000000000000000000000000000000000000000000000"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"address": "0x70f2b2914a2a4b783faefb75f459a580616fcb5e",
"algorithm_version": "eip1014-create2-v1",
"checksum_address": "0x70f2b2914A2a4b783FaEFb75f459A580616Fcb5e",
"deployer": "0x0000000000000000000000000000000000000000",
"init_code": "0xdeadbeef",
"init_code_hash": "0xd4fd4e189132273036449fc9e11198c739161b4c0116a9a2dccdfa1c492006f1",
"operation": "create2",
"preimage": "0xff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d4fd4e189132273036449fc9e11198c739161b4c0116a9a2dccdfa1c492006f1",
"preimage_hash": "0x7c389b77881a0016face428070f2b2914a2a4b783faefb75f459a580616fcb5e",
"salt": "0x0000000000000000000000000000000000000000000000000000000000000000",
"warnings": []
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"description": "Canonical CREATE2 request using init code",
"properties": {
"deployer": {
"description": "EVM deployer address",
"maxLength": 42,
"minLength": 42,
"pattern": "^0x[0-9a-fA-F]+$",
"type": "string"
},
"init_code": {
"description": "Contract creation init code, not deployed runtime code; at most 65,461 bytes so the closed request fits the 128 KiB body cap",
"maxLength": 130924,
"pattern": "^0x(?:[0-9a-fA-F]{2})*$",
"type": "string"
},
"salt": {
"description": "CREATE2 salt",
"maxLength": 66,
"minLength": 66,
"pattern": "^0x[0-9a-fA-F]+$",
"type": "string"
}
},
"required": [
"deployer",
"salt",
"init_code"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"additionalProperties": false,
"properties": {
"_atlas": {
"additionalProperties": false,
"description": "Atlas documentation and related-route metadata added after deployment",
"properties": {
"docs": {
"description": "Documentation URL for this bridge",
"format": "uri",
"maxLength": 512,
"type": "string"
},
"related": {
"description": "Bounded related Atlas routes",
"items": {
"additionalProperties": false,
"description": "One related Atlas route",
"properties": {
"bridge": {
"description": "Related bridge name",
"maxLength": 64,
"type": "string"
},
"docs": {
"description": "Related bridge documentation URL",
"format": "uri",
"maxLength": 512,
"type": "string"
},
"summary": {
"description": "Short capability summary",
"maxLength": 256,
"type": "string"
},
"url": {
"description": "Related route URL",
"format": "uri",
"maxLength": 512,
"type": "string"
}
},
"required": [
"bridge",
"url",
"docs",
"summary"
],
"type": "object"
},
"maxItems": 3,
"type": "array"
}
},
"required": [
"docs"
],
"type": "object"
},
"address": {
"description": "Lower-case final 20-byte address",
"maxLength": 42,
"minLength": 42,
"pattern": "^0x[0-9a-fA-F]+$",
"type": "string"
},
"algorithm_version": {
"const": "eip1014-create2-v1",
"description": "Pinned EIP-1014 contract",
"type": "string"
},
"checksum_address": {
"description": "EIP-55 checksum address",
"type": "string"
},
"deployer": {
"description": "Normalized lower-case deployer",
"maxLength": 42,
"minLength": 42,
"pattern": "^0x[0-9a-fA-F]+$",
"type": "string"
},
"init_code": {
"description": "Normalized init code when supplied",
"type": "string"
},
"init_code_hash": {
"description": "Keccak-256 of init code or supplied hash",
"maxLength": 66,
"minLength": 66,
"pattern": "^0x[0-9a-fA-F]+$",
"type": "string"
},
"operation": {
"const": "create2",
"description": "Stable route operation",
"type": "string"
},
"preimage": {
"description": "Exact 0xff + deployer + salt + init-code-hash bytes",
"maxLength": 172,
"minLength": 172,
"pattern": "^0x[0-9a-fA-F]+$",
"type": "string"
},
"preimage_hash": {
"description": "Keccak-256 of the 85-byte preimage",
"maxLength": 66,
"minLength": 66,
"pattern": "^0x[0-9a-fA-F]+$",
"type": "string"
},
"salt": {
"description": "Normalized salt",
"maxLength": 66,
"minLength": 66,
"pattern": "^0x[0-9a-fA-F]+$",
"type": "string"
},
"warnings": {
"description": "Always empty",
"items": {
"description": "Warning",
"type": "string"
},
"maxItems": 0,
"type": "array"
}
},
"required": [
"operation",
"algorithm_version",
"deployer",
"salt",
"init_code_hash",
"preimage",
"preimage_hash",
"address",
"checksum_address",
"warnings"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
},
"tags": [
"create2-address",
"eip-1014",
"evm",
"contract-deployment",
"blockchain-development"
]
}
}Use it
curl
curl "https://chain-tools.use.x402atlas.com/evm/create2" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://chain-tools.use.x402atlas.com/evm/create2");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://chain-tools.use.x402atlas.com/evm/create2")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/3458.json, and this resource appears in /discovery/resources and /discovery/search.