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

Commit

Permalink
feat: add Taiko (Alpha-3 Testnet) (#411)
Browse files Browse the repository at this point in the history
* Add chain: Taiko (Alpha-3 Testnet)

* Update clever-squids-compare.md

---------

Co-authored-by: jxom <[email protected]>
  • Loading branch information
MarcusWentz and jxom authored Jul 6, 2023
1 parent 56c127d commit df697ac
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/clever-squids-compare.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@wagmi/chains": minor
---

Added Taiko (Alpha-3 Testnet)
1 change: 1 addition & 0 deletions packages/chains/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ const { chains, provider } = configureChains(
- `skaleTitan`
- `skaleTitanTestnet`
- `sepolia`
- `taikoTestnetSepolia`
- `taraxa`
- `taraxaTestnet`
- `telos`
Expand Down
1 change: 1 addition & 0 deletions packages/chains/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ export { songbirdTestnet } from './songbirdTestnet'
export { shardeumSphinx } from './shardeumSphinx'
export { syscoin } from './syscoin'
export { taraxa } from './taraxa'
export { taikoTestnetSepolia } from './taikoTestnetSepolia'
export { taraxaTestnet } from './taraxaTestnet'
export { telos } from './telos'
export { telosTestnet } from './telosTestnet'
Expand Down
22 changes: 22 additions & 0 deletions packages/chains/src/taikoTestnetSepolia.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import { Chain } from './types'

export const taikoTestnetSepolia = {
id: 167005,
name: 'Taiko (Alpha-3 Testnet)',
network: 'taiko-sepolia',
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
rpcUrls: {
default: {
http: ['https://rpc.test.taiko.xyz'],
},
public: {
http: ['https://rpc.test.taiko.xyz'],
},
},
blockExplorers: {
default: {
name: 'blockscout',
url: 'https://explorer.test.taiko.xyz',
},
},
} as const satisfies Chain

0 comments on commit df697ac

Please sign in to comment.