diff --git a/package.json b/package.json index d7da204..2887914 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "0.7.18", + "version": "0.7.19", "private": true, "type": "module", "scripts": { diff --git a/registry/eip155/autonomys-taurus.json b/registry/eip155/autonomys-taurus.json index df21c75..03c8d02 100644 --- a/registry/eip155/autonomys-taurus.json +++ b/registry/eip155/autonomys-taurus.json @@ -15,6 +15,9 @@ ], "services": { "subgraphs": ["https://api.studio.thegraph.com/deploy"] }, "networkType": "testnet", + "relations": [ + { "kind": "testnetOf", "network": "autonomys" } + ], "issuanceRewards": false, "nativeToken": "AI3", "docsUrl": "https://docs.autonomys.xyz", diff --git a/registry/eip155/autonomys.json b/registry/eip155/autonomys.json new file mode 100644 index 0000000..ef8d5d5 --- /dev/null +++ b/registry/eip155/autonomys.json @@ -0,0 +1,33 @@ +{ + "id": "autonomys", + "shortName": "Autonomys", + "fullName": "Autonomys Mainnet", + "aliases": ["evm-870", "autonomys-mainnet"], + "caip2Id": "eip155:870", + "graphNode": { "protocol": "ethereum" }, + "explorerUrls": ["https://explorer.auto-evm.mainnet.autonomys.xyz/"], + "rpcUrls": ["https://auto-evm.mainnet.autonomys.xyz/ws"], + "apiUrls": [ + { + "url": "https://explorer.auto-evm.mainnet.autonomys.xyz/api", + "kind": "blockscout" + } + ], + "services": { "subgraphs": ["https://api.studio.thegraph.com/deploy"] }, + "networkType": "mainnet", + "issuanceRewards": false, + "nativeToken": "AI3", + "docsUrl": "https://docs.autonomys.xyz", + "firehose": { + "blockType": "sf.ethereum.type.v2.Block", + "evmExtendedModel": true, + "bufUrl": "https://buf.build/streamingfast/firehose-ethereum", + "bytesEncoding": "hex", + "firstStreamableBlock": { + "id": "0x085b6a1088858e39e9f26e832db9ba44e7f8ca977f363f0aff79f8bec5abb8b9", + "height": 0 + }, + "blockFeatures": ["base"] + }, + "icon": { "web3Icons": { "name": "autonomys" } } +} diff --git a/registry/eip155/zilliqa-testnet.json b/registry/eip155/zilliqa-testnet.json index 7e8fc56..8d31fc1 100644 --- a/registry/eip155/zilliqa-testnet.json +++ b/registry/eip155/zilliqa-testnet.json @@ -15,6 +15,7 @@ "kind": "blockscout" } ], + "rpcUrls": ["https://api.testnet.zilliqa.com"], "networkType": "testnet", "relations": [{ "kind": "testnetOf", "network": "zilliqa" }], "services": { "subgraphs": ["https://api.studio.thegraph.com/deploy"] }, diff --git a/src/validate_logic.ts b/src/validate_logic.ts index 8f11e81..3cc050f 100644 --- a/src/validate_logic.ts +++ b/src/validate_logic.ts @@ -17,6 +17,7 @@ const ALLOWED_DUPLICATES: string[] = [ const ALLOWED_ETHEREUM_LIST_MISSING: string[] = [ "ozean-poseidon", "injective-evm-testnet", + "autonomys", ]; function validateFilenames(networksPath: string) {