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

Add Shardeum Dapp Sphinx (chain id: 8081) #479

Closed
wants to merge 11 commits into from
5 changes: 5 additions & 0 deletions .changeset/rotten-wasps-grab.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@wagmi/chains": patch
---

Added shardeum sphinx chain.
1 change: 1 addition & 0 deletions packages/chains/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ const { chains, provider } = configureChains(
- `polygonMumbai`
- `pulsechain`
- `pulsechainV4`
- `shardeumSphinx`
- `skaleBlockBrawlers`
- `skaleCalypso`
- `skaleCalypsoTestnet`
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 @@ -116,6 +116,7 @@ export { skaleTitan } from './skale/titan'
export { skaleTitanTestnet } from './skale/titanTestnet'
export { songbird } from './songbird'
export { songbirdTestnet } from './songbirdTestnet'
export { shardeumDappsSphinx } from './shardeumDappsSphinx'
export { shardeumSphinx } from './shardeumSphinx'
export { syscoin } from './syscoin'
export { syscoinTestnet } from './syscoinTestnet'
Expand Down
22 changes: 22 additions & 0 deletions packages/chains/src/shardeumDappsSphinx.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import { Chain } from './types'

export const shardeumDappsSphinx = {
id: 8081,
name: 'Shardeum Dapp Sphinx 1.X',
network: 'shmDappsSphinx',
nativeCurrency: { name: 'SHARDEUM', symbol: 'SHM', decimals: 18 },
rpcUrls: {
default: {
http: ['https://dapps.shardeum.org'],
},
public: {
http: ['https://dapps.shardeum.org'],
},
},
blockExplorers: {
default: {
name: 'Shardeum Explorer',
url: 'https://explorer-dapps.shardeum.org',
},
}
} as const satisfies Chain
Loading