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

Commit

Permalink
Added Support for Shardeum Sphinx Testnet (#136)
Browse files Browse the repository at this point in the history
* add Shardeum Sphinx Network Details

* added details in index file

* added changeset

* Update shardeumSphinx.ts

---------

Co-authored-by: skundu42 <skundu_be19@thapar.edu>
Co-authored-by: jxom <jakemoxey@gmail.com>
  • Loading branch information
3 people authored Mar 7, 2023
1 parent 9cb0535 commit 9559464
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/proud-kangaroos-stare.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@wagmi/chains': major
---

Added Shardeum Sphinx Network
1 change: 1 addition & 0 deletions packages/chains/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ export { polygon } from './polygon'
export { polygonMumbai } from './polygonMumbai'
export { polygonZkEvmTestnet } from './polygonZkEvmTestnet'
export { sepolia } from './sepolia'
export { shardeumSphinx } from './shardeumSphinx'
export { taraxa } from './taraxa'
export { taraxaTestnet } from './taraxaTestnet'
export { telos } from './telos'
Expand Down
23 changes: 23 additions & 0 deletions packages/chains/src/shardeumSphinx.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import { Chain } from './types'

export const shardeumSphinx = {
id: 8082,
name: 'Shardeum Sphinx',
network: 'shmSphinx',
nativeCurrency: { name: 'SHARDEUM', symbol: 'SHM', decimals: 18 },
rpcUrls: {
default: {
http: ['https://sphinx.shardeum.org'],
},
public: {
http: ['https://sphinx.shardeum.org'],
},
},
blockExplorers: {
default: {
name: 'Shardeum Explorer',
url: 'https://explorer-sphinx.shardeum.org',
},
},
testnet: true,
} as const satisfies Chain

0 comments on commit 9559464

Please sign in to comment.