-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* tests: update snapshots (foundry upgrade) * Add XR Sepolia chain (#1) * Update xrSepolia.ts * Update writeContracts.test.ts * Revert changes --------- Co-authored-by: jxom <jakemoxey@gmail.com>
- Loading branch information
1 parent
ffb155e
commit 495192c
Showing
3 changed files
with
27 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 XR Sepolia 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,21 @@ | ||
import { defineChain } from '../../utils/chain/defineChain.js' | ||
|
||
export const xrSepolia = /*#__PURE__*/ defineChain({ | ||
id: 2730, | ||
name: 'XR Sepolia', | ||
nativeCurrency: { | ||
decimals: 18, | ||
name: 'tXR', | ||
symbol: 'tXR', | ||
}, | ||
rpcUrls: { | ||
default: { http: ['https://xr-sepolia-testnet.rpc.caldera.xyz/http'] }, | ||
}, | ||
blockExplorers: { | ||
default: { | ||
name: 'Blockscout', | ||
url: 'https://xr-sepolia-testnet.explorer.caldera.xyz', | ||
}, | ||
}, | ||
testnet: true, | ||
}) |
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