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

Commit

Permalink
feat(chains): added base goerli (#127)
Browse files Browse the repository at this point in the history
* feat(chains): added base goerli

* Update baseGoerli.ts
  • Loading branch information
jxom authored Feb 24, 2023
1 parent 57f1226 commit d04aa1b
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/angry-rocks-clap.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@wagmi/chains': patch
---

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

export const baseGoerli = {
id: 84531,
network: 'base-goerli',
name: 'Base Goerli',
nativeCurrency: { name: 'Base Goerli', symbol: 'ETH', decimals: 18 },
rpcUrls: {
default: {
http: ['https://goerli.base.org'],
},
public: {
http: ['https://goerli.base.org'],
},
},
blockExplorers: {
etherscan: {
name: 'Basescan',
url: 'https://goerli.basescan.org',
},
default: {
name: 'Basescan',
url: 'https://goerli.basescan.org',
},
},
testnet: true,
} as const satisfies Chain
1 change: 1 addition & 0 deletions packages/chains/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export { aurora } from './aurora'
export { auroraTestnet } from './auroraTestnet'
export { avalanche } from './avalanche'
export { avalancheFuji } from './avalancheFuji'
export { baseGoerli } from './baseGoerli'
export { bronos } from './bronos'
export { bronosTestnet } from './bronosTestnet'
export { bsc } from './bsc'
Expand Down

0 comments on commit d04aa1b

Please sign in to comment.