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.
feat: update SYSCOIN chain. add: Rollux, RolluxTestnet, SyscoinTestnet (
#436) * Updated: SYSCOIN chain. Added: Rollux, RolluxTestnet, SyscoinTestnet * Add changeset * Add ANKR, public and WSS for Rollux and Syscoin. * Create shiny-apes-kneel.md * Update rollux.ts * Delete shiny-apes-kneel.md * Update selfish-experts-lay.md * Update syscoin.ts * Update syscoin.ts --------- Co-authored-by: Fernando Paredes Garcia <[email protected]> Co-authored-by: jxom <[email protected]>
- Loading branch information
1 parent
cd68471
commit 1cf72bc
Showing
5 changed files
with
101 additions
and
5 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,6 @@ | ||
--- | ||
"@wagmi/chains": patch | ||
--- | ||
|
||
Updated syscoin. | ||
Added rollux, rolluxTestnet & syscoinTestnet. |
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,28 @@ | ||
import { Chain } from './types' | ||
|
||
export const rollux = { | ||
id: 570, | ||
name: 'Rollux Mainnet', | ||
network: 'rollux', | ||
nativeCurrency: { | ||
decimals: 18, | ||
name: 'Syscoin', | ||
symbol: 'SYS', | ||
}, | ||
rpcUrls: { | ||
default: { | ||
http: ['https://rpc.rollux.com'], | ||
websocket: ['wss://rpc.rollux.com/wss'] | ||
}, | ||
public: { http: ['https://rollux.public-rpc.com'] }, | ||
}, | ||
blockExplorers: { | ||
default: { name: 'RolluxExplorer', url: 'https://explorer.rollux.com' }, | ||
}, | ||
contracts: { | ||
multicall3: { | ||
address: '0xcA11bde05977b3631167028862bE2a173976CA11', | ||
blockCreated: 119222, | ||
}, | ||
}, | ||
} as const satisfies Chain |
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,28 @@ | ||
import { Chain } from './types' | ||
|
||
export const rolluxTestnet = { | ||
id: 57000, | ||
name: 'Rollux Testnet', | ||
network: 'rollux-testnet', | ||
nativeCurrency: { | ||
decimals: 18, | ||
name: 'Syscoin', | ||
symbol: 'SYS', | ||
}, | ||
rpcUrls: { | ||
default: { | ||
http: ['https://rpc-tanenbaum.rollux.com/'], | ||
websocket: ['wss://rpc-tanenbaum.rollux.com/wss'] | ||
}, | ||
public: { http: ['https://rpc-tanenbaum.rollux.com/'] }, | ||
}, | ||
blockExplorers: { | ||
default: { name: 'RolluxTestnetExplorer', url: 'https://rollux.tanenbaum.io' }, | ||
}, | ||
contracts: { | ||
multicall3: { | ||
address: '0xcA11bde05977b3631167028862bE2a173976CA11', | ||
blockCreated: 1813675, | ||
}, | ||
}, | ||
} as const satisfies Chain |
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,28 @@ | ||
import { Chain } from './types' | ||
|
||
export const syscoinTestnet = { | ||
id: 5700, | ||
name: 'Syscoin Tanenbaum Testnet', | ||
network: 'syscoin-testnet', | ||
nativeCurrency: { | ||
decimals: 18, | ||
name: 'Syscoin', | ||
symbol: 'SYS', | ||
}, | ||
rpcUrls: { | ||
default: { | ||
http: ['https://rpc.tanenbaum.io'], | ||
websocket: ['wss://rpc.tanenbaum.io/wss'] | ||
}, | ||
public: { http: ['https://rpc.tanenbaum.io'] }, | ||
}, | ||
blockExplorers: { | ||
default: { name: 'SyscoinTestnetExplorer', url: 'https://tanenbaum.io' }, | ||
}, | ||
contracts: { | ||
multicall3: { | ||
address: '0xcA11bde05977b3631167028862bE2a173976CA11', | ||
blockCreated: 271288, | ||
}, | ||
}, | ||
} as const satisfies Chain |