From 02bc5f2f9a19fa8558461649c848a48a1330ce2e Mon Sep 17 00:00:00 2001 From: RTFM <115787312+web3cdnservices@users.noreply.github.com> Date: Tue, 12 Aug 2025 17:59:47 +0300 Subject: [PATCH] Autonity Autonity Mainnet support & fixed testnet Chain Id --- index.ts | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/index.ts b/index.ts index 97e7300..2485be1 100644 --- a/index.ts +++ b/index.ts @@ -474,9 +474,9 @@ export const networkFamilies: NetworkFamily[] = [ ], }, { - code: "65100004", + code: "65000000", name: "Autonity", - chain_id: "65100004", + chain_id: "65000000", onfinality_code: "Autonity", description: "Autonity is a public, EVM based, proof-of-stake blockchain for decentralized clearing of smart derivatives contracts.", @@ -489,21 +489,28 @@ export const networkFamilies: NetworkFamily[] = [ remote: "https://github.com/subquery/ethereum-subql-starter", path: "Autonity/autonity-testnet-starter", }, + { + name: "autonity-mainnet-starter", + description: + "This SubQuery project indexes all transfers and approval events for the Newton on Autonity Mainnet", + remote: "https://github.com/subquery/ethereum-subql-starter", + path: "Autonity/autonity-mainnet-starter", + }, ], public_rpc: [ { type: "ARCHIVE", - name: "Autonity Piccadilly (Tiber) Testnet", + name: "Autonity Mainnet", description: "", rate_limit: { rate: 50, burst: 50, }, explorer_url: - "https://app.subquery.network/explorer/project/0x4d/overview", - endpoint: "https://autonity-piccadilly.rpc.subquery.network/public", + "https://app.subquery.network/explorer/project/0x6d/overview", + endpoint: "https://autonity.rpc.subquery.network/public", example_request: - 'curl -H \'content-type:application/json\' -d \'{"id": 1, "jsonrpc": "2.0", "method": "eth_blockNumber"}\' \'https://autonity-piccadilly.rpc.subquery.network/public\'', + 'curl -H \'content-type:application/json\' -d \'{"id": 1, "jsonrpc": "2.0", "method": "eth_blockNumber"}\' \'https://autonity.rpc.subquery.network/public\'', tags: ["Testnet"], }, ],