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

Add zetachainAthens3 testnet #435

Merged
merged 5 commits into from
Aug 9, 2023
Merged
Show file tree
Hide file tree
Changes from 3 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
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": minor
---

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

export const zetachainAthens3 = {
SyedAhkam marked this conversation as resolved.
Show resolved Hide resolved
id: 7001,
name: 'ZetaChain Athens 3',
SyedAhkam marked this conversation as resolved.
Show resolved Hide resolved
network: 'zetachain-athens-evm',
SyedAhkam marked this conversation as resolved.
Show resolved Hide resolved
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
Loading