Skip to content
This repository has been archived by the owner on Sep 6, 2023. It is now read-only.

Add Arthera Testnet to chains #472

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions packages/chains/src/artheraTestnet.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import { Chain } from './types'

export const artheraTestnet = {
id: 10243,
name: 'Arthera Testnet',
network: 'arthera-tesnet',
nativeCurrency: {
decimals: 18,
name: 'Arthera',
symbol: 'AA',
},
rpcUrls: {
default: { http: ['https://rpc-test.arthera.net'] },
public: { http: ['https://rpc-test.arthera.net'] },
},
blockExplorers: {
default: { name: 'Arthera Explorer', url: 'https://explorer-test.arthera.net/' },
},
testnet: true,
} as const satisfies Chain
Loading