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

Commit

Permalink
feat: add zetachainAthens3 testnet (#435)
Browse files Browse the repository at this point in the history
* feat: add zetachainAthens3

* chore: add changeset

* chore: formatter

* fix: rename chain and network name to sync with ethereum-chains

* Update smooth-plums-swim.md

---------

Co-authored-by: jxom <[email protected]>
  • Loading branch information
SyedAhkam and jxom authored Aug 9, 2023
1 parent 6eba41a commit cd68471
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/smooth-plums-swim.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@wagmi/chains": patch
---

Add zetachainAthens3 testnet
27 changes: 27 additions & 0 deletions packages/chains/src/zetachainAthensTestnet.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import { Chain } from './types'

export const zetachainAthensTestnet = {
id: 7001,
name: 'ZetaChain Athens Testnet',
network: 'zetachain-athens-testnet',
nativeCurrency: {
decimals: 18,
name: 'Zeta',
symbol: 'aZETA',
},
rpcUrls: {
public: {
http: ['https://zetachain-athens-evm.blockpi.network/v1/rpc/public'],
},
default: {
http: ['https://zetachain-athens-evm.blockpi.network/v1/rpc/public'],
},
},
blockExplorers: {
default: {
name: 'ZetaScan',
url: 'https://athens3.explorer.zetachain.com',
},
},
testnet: true,
} as const satisfies Chain

0 comments on commit cd68471

Please sign in to comment.