-
-
Notifications
You must be signed in to change notification settings - Fork 868
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added new chain - redstone * Exported redstone chain * chore: format * Create cyan-taxis-learn.md --------- Co-authored-by: Pfed-prog <Pfed-prog@users.noreply.github.com> Co-authored-by: jxom <j@wevm.dev>
- Loading branch information
1 parent
98aeb5f
commit 4f15896
Showing
3 changed files
with
26 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 @@ | ||
--- | ||
"viem": patch | ||
--- | ||
|
||
Added Redstone 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,20 @@ | ||
import { defineChain } from '../../utils/chain/defineChain.js' | ||
|
||
export const redstone = defineChain({ | ||
id: 690, | ||
name: 'Redstone', | ||
nativeCurrency: { | ||
decimals: 18, | ||
name: 'Ether', | ||
symbol: 'ETH', | ||
}, | ||
rpcUrls: { | ||
default: { | ||
http: ['https://rpc.redstonechain.com'], | ||
webSocket: ['wss://rpc.redstonechain.com'], | ||
}, | ||
}, | ||
blockExplorers: { | ||
default: { name: 'Explorer', url: ' https://explorer.redstone.xyz' }, | ||
}, | ||
}) |
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