From b0efb236bf3b51bdc3d898b05ecd71d279b8d514 Mon Sep 17 00:00:00 2001 From: Claude Agent Date: Sat, 8 Aug 2026 22:47:51 +0000 Subject: [PATCH 1/2] Add abcore mainnet genesis.json (chain-id 36888, Newton) --- abcore/mainnet/genesis.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 abcore/mainnet/genesis.json diff --git a/abcore/mainnet/genesis.json b/abcore/mainnet/genesis.json new file mode 100644 index 00000000..ff81dea3 --- /dev/null +++ b/abcore/mainnet/genesis.json @@ -0,0 +1,28 @@ +{ + "config": { + "chainId": 36888, + "homesteadBlock": 0, + "eip150Block": 0, + "eip155Block": 0, + "eip158Block": 0, + "byzantiumBlock": 0, + "constantinopleBlock": 0, + "petersburgBlock": 0, + "istanbulBlock": 0, + "muirGlacierBlock": 0, + "berlinBlock": 0, + "clique": { + "period": 3, + "epoch": 30000 + } + }, + "timestamp": "0x67fda368", + "difficulty": "1", + "gasLimit": "63000000", + "extradata": "0x0000000000000000000000000000000000000000000000000000000000000000E9B95948d28EF808a9184d5fC98346EF3e56839c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "alloc": { + "da8B88027Ac27532E1525DD67974c2377b450A08": { + "balance": "100000000000000000000000000000" + } + } +} -- 2.49.1 From 477e969e54c28ed4b6ce3054b2a6a505f10c4f62 Mon Sep 17 00:00:00 2001 From: Claude Agent Date: Sun, 9 Aug 2026 00:19:24 +0000 Subject: [PATCH 2/2] abcore: add mainnet genesis.json and config.toml for chain-id 36888 --- abcore/mainnet/config.toml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 abcore/mainnet/config.toml diff --git a/abcore/mainnet/config.toml b/abcore/mainnet/config.toml new file mode 100644 index 00000000..e2c38703 --- /dev/null +++ b/abcore/mainnet/config.toml @@ -0,0 +1,33 @@ +[Eth] +NetworkId = 36888 +SyncMode = "snap" +NoPruning = false +NoPrefetch = false + +[Eth.Miner] +GasFloor = 0 +GasCeil = 63000000 +GasPrice = 50000000000000 +Recommit = 2000000000 +NewPayloadTimeout = 2000000000 + +[Node] +DataDir = "/root/.ethereum" +HTTPHost = "0.0.0.0" +HTTPPort = 8545 +HTTPVirtualHosts = ["*"] +HTTPModules = ["eth", "net", "web3", "debug", "admin", "txpool", "engine"] +WSHost = "0.0.0.0" +WSPort = 8546 +WSModules = ["eth", "net", "web3", "debug", "admin", "txpool", "engine"] +WSOrigins = ["*"] + +[Node.P2P] +MaxPeers = 50 +NoDiscovery = false +DiscoveryV4 = true +ListenAddr = ":33333" + +[Metrics] +HTTP = "127.0.0.1" +Port = 6060 -- 2.49.1