diff --git a/.changeset/green-dolphins-jam.md b/.changeset/green-dolphins-jam.md new file mode 100644 index 00000000..ac0760a2 --- /dev/null +++ b/.changeset/green-dolphins-jam.md @@ -0,0 +1,6 @@ +--- +'@api3/chains': minor +--- + +Adds following chain: +* atleta-testnet diff --git a/chains/atleta-testnet.json b/chains/atleta-testnet.json new file mode 100644 index 00000000..a6d112b5 --- /dev/null +++ b/chains/atleta-testnet.json @@ -0,0 +1,23 @@ +{ + "alias": "atleta-testnet", + "decimals": 18, + "explorer": { + "api": { + "key": { + "required": false + }, + "url": "https://blockscout.testnet-v2.atleta.network/api" + }, + "browserUrl": "https://blockscout.testnet-v2.atleta.network/" + }, + "id": "2340", + "name": "Atleta testnet", + "providers": [ + { + "alias": "default", + "rpcUrl": "https://rpc.testnet-v2.atleta.network:9944" + } + ], + "symbol": "ATLA", + "testnet": true +} diff --git a/src/generated/chains.ts b/src/generated/chains.ts index f0c18917..38a467ca 100644 --- a/src/generated/chains.ts +++ b/src/generated/chains.ts @@ -118,6 +118,19 @@ export const CHAINS: Chain[] = [ symbol: 'ETH', testnet: false, }, + { + alias: 'atleta-testnet', + decimals: 18, + explorer: { + api: { key: { required: false }, url: 'https://blockscout.testnet-v2.atleta.network/api' }, + browserUrl: 'https://blockscout.testnet-v2.atleta.network/', + }, + id: '2340', + name: 'Atleta testnet', + providers: [{ alias: 'default', rpcUrl: 'https://rpc.testnet-v2.atleta.network:9944' }], + symbol: 'ATLA', + testnet: true, + }, { alias: 'aurora-testnet', decimals: 18,