This repository has been archived by the owner on Sep 6, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 205
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Support for Shardeum Sphinx Testnet (#136)
* 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
1 parent
9cb0535
commit 9559464
Showing
3 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@wagmi/chains': major | ||
--- | ||
|
||
Added Shardeum Sphinx Network |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |