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

Commit

Permalink
feat(chains): add Gnosis Chiado chain (#65)
Browse files Browse the repository at this point in the history
* feat(chains): add Gnosis Chiado chain

Adds the [Chiado](https://docs.gnosischain.com/about/networks/chiado/) testnet

* Update packages/chains/src/gnosisChiado

* Update packages/chains/src/gnosisChiado

* chore: changeset

Co-authored-by: awkweb <[email protected]>
  • Loading branch information
nvnx7 and tmm authored Jan 20, 2023
1 parent 7a87ec4 commit d3cbc6b
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/mean-turtles-turn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@wagmi/chains': patch
---

Added Gnosis Chiado Chain
22 changes: 22 additions & 0 deletions packages/chains/src/gnosisChiado.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import { Chain } from './types'

export const gnosisChiado: Chain = {
id: 10_200,
name: 'Gnosis Chiado',
network: 'chiado',
nativeCurrency: {
decimals: 18,
name: 'Gnosis',
symbol: 'xDAI',
},
rpcUrls: {
default: { http: ['https://rpc.chiadochain.net'] },
public: { http: ['https://rpc.chiadochain.net'] },
},
blockExplorers: {
default: {
name: 'Blockscout',
url: 'https://blockscout.chiadochain.net',
},
},
}
1 change: 1 addition & 0 deletions packages/chains/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export { iotex } from './iotex'
export { iotexTestnet } from './iotexTestnet'
export { goerli } from './goerli'
export { gnosis } from './gnosis'
export { gnosisChiado } from './gnosisChiado'
export { hardhat } from './hardhat'
export { localhost } from './localhost'
export { mainnet } from './mainnet'
Expand Down

0 comments on commit d3cbc6b

Please sign in to comment.