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
Browse files Browse the repository at this point in the history
  • Loading branch information
SyedAhkam committed Jul 22, 2023
1 parent ad90fca commit 1958a41
Showing 1 changed file with 27 additions and 0 deletions.
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 = {
id: 7001,
name: "ZetaChain Athens 3",
network: "zetachain-athens-evm",
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 1958a41

Please sign in to comment.