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

Commit

Permalink
feat(dogechainTestnet): added DogeChain Testnet chain
Browse files Browse the repository at this point in the history
  • Loading branch information
dzmitrybaranau committed Aug 31, 2023
1 parent c86795f commit 7b03c1c
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions packages/chains/src/dogechainTestnet.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import { Chain } from './types'

export const dogechainTestnet = {
id: 568,
name: 'Dogechain Testnet',
network: 'dogechain-testnet',
nativeCurrency: {
decimals: 18,
name: 'Testnet Doge',
symbol: 'tDC',
},
rpcUrls: {
default: { http: ['https://rpc-testnet.dogechain.dog'] },
public: { http: ['https://rpc-testnet.dogechain.dog'] },
},
blockExplorers: {
etherscan: {
name: 'TestnetDogeChainExplorer',
url: 'https://explorer-testnet.dogechain.dog',
},
default: {
name: 'TestnetDogeChainExplorer',
url: 'https://explorer-testnet.dogechain.dog',
},
},
} as const satisfies Chain

0 comments on commit 7b03c1c

Please sign in to comment.