From e7bb40ae45e443ff83aaee4229891e727582e054 Mon Sep 17 00:00:00 2001 From: Subramanya Jois Date: Thu, 30 Apr 2026 20:12:35 +0530 Subject: [PATCH] feat: add Aurigraph Mainnet (8471) and Aurigraph Testnet (8472) Two new EIP-155 chain entries for the Aurigraph DLT V12 EVM-compatibility layer. - Aurigraph Mainnet (8471 / AUR): production chain, mainnet RPC + explorer - Aurigraph Testnet (8472 / tAUR): public testnet with faucet at https://faucet-testnet.aurigraph.io Both networks expose standard Ethereum JSON-RPC; native AUR is a fresh token (not bridged from any other chain). Block time ~500ms, deterministic finality after 3 blocks under HyperRAFT++ consensus. Features: EIP155 (replay protection via chainId) + EIP1559 (base-fee gas). Chain IDs verified unregistered at https://chainid.network on 2026-04-30. Validated locally: ./gradlew run BUILD SUCCESSFUL. --- _data/chains/eip155-8471.json | 34 +++++++++++++++++++++++++++++++++ _data/chains/eip155-8472.json | 36 +++++++++++++++++++++++++++++++++++ 2 files changed, 70 insertions(+) create mode 100644 _data/chains/eip155-8471.json create mode 100644 _data/chains/eip155-8472.json diff --git a/_data/chains/eip155-8471.json b/_data/chains/eip155-8471.json new file mode 100644 index 000000000000..ea66334e1145 --- /dev/null +++ b/_data/chains/eip155-8471.json @@ -0,0 +1,34 @@ +{ + "name": "Aurigraph Mainnet", + "chain": "AUR", + "rpc": [ + "https://rpc.aurigraph.io", + "wss://rpc.aurigraph.io/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Aurigraph", + "symbol": "AUR", + "decimals": 18 + }, + "infoURL": "https://aurigraph.io", + "shortName": "aur", + "chainId": 8471, + "networkId": 8471, + "explorers": [ + { + "name": "Aurigraph Explorer", + "url": "https://explorer.aurigraph.io", + "standard": "EIP3091" + } + ], + "status": "active", + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ] +} \ No newline at end of file diff --git a/_data/chains/eip155-8472.json b/_data/chains/eip155-8472.json new file mode 100644 index 000000000000..ada673a6e955 --- /dev/null +++ b/_data/chains/eip155-8472.json @@ -0,0 +1,36 @@ +{ + "name": "Aurigraph Testnet", + "chain": "AUR", + "rpc": [ + "https://testnet-rpc.aurigraph.io", + "wss://testnet-rpc.aurigraph.io/ws" + ], + "faucets": [ + "https://faucet-testnet.aurigraph.io" + ], + "nativeCurrency": { + "name": "Aurigraph Testnet AUR", + "symbol": "tAUR", + "decimals": 18 + }, + "infoURL": "https://aurigraph.io", + "shortName": "aur-testnet", + "chainId": 8472, + "networkId": 8472, + "explorers": [ + { + "name": "Aurigraph Testnet Explorer", + "url": "https://testnet-explorer.aurigraph.io", + "standard": "EIP3091" + } + ], + "status": "active", + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ] +} \ No newline at end of file