-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5ca0ea8
commit 6bf4556
Showing
5 changed files
with
107 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,28 @@ | ||
import { EVMChain } from '../../../types/index.js'; | ||
|
||
export const abstractSepolia: EVMChain = { | ||
id: 11124, | ||
name: 'Abstract Sepolia', | ||
type: 'evm', | ||
nativeCurrency: { | ||
decimals: 18, | ||
name: 'Ether', | ||
symbol: 'ETH', | ||
}, | ||
rpcUrls: { | ||
default: { | ||
http: ['https://api.testnet.abs.xyz'], | ||
}, | ||
}, | ||
blockExplorers: { | ||
default: { | ||
name: 'Abstract Sepolia Explorer', | ||
url: 'https://sepolia.abscan.org', | ||
}, | ||
}, | ||
contracts: { | ||
multicall3: { | ||
address: '0xF9cda624FBC7e059355ce98a31693d299FACd963', | ||
}, | ||
}, | ||
}; |
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 |
---|---|---|
@@ -1,6 +1,9 @@ | ||
export * from './abstractSepolia.js'; | ||
export * from './beraChain.testnet.js'; | ||
export * from './firechain.testnet.js'; | ||
export * from './movement.testnet.js'; | ||
export * from './oasisSapphire.testnet.js'; | ||
export * from './pentagon.testnet.js'; | ||
export * from './soneium.testnet.js'; | ||
export * from './storyOdyssey.js'; | ||
export * from './unichainSepolia.js'; |
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 { EVMChain } from '../../../types/index.js'; | ||
|
||
export const storyOdyssey: EVMChain = { | ||
id: 1516, | ||
name: 'Story Odyssey', | ||
type: 'evm', | ||
nativeCurrency: { | ||
decimals: 18, | ||
name: 'IP Token', | ||
symbol: 'IP', | ||
}, | ||
rpcUrls: { | ||
default: { | ||
http: ['https://lightnode-json-rpc-story.grandvalleys.com'], | ||
}, | ||
}, | ||
blockExplorers: { | ||
default: { | ||
name: 'Story Odyssey Explorer', | ||
url: 'https://odyssey.storyscan.xyz', | ||
}, | ||
}, | ||
contracts: { | ||
multicall3: { | ||
address: '0xcA11bde05977b3631167028862bE2a173976CA11', | ||
}, | ||
}, | ||
}; |
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 { EVMChain } from '../../../types/index.js'; | ||
|
||
export const unichainSepolia: EVMChain = { | ||
id: 1301, | ||
name: 'Unichain Sepolia', | ||
type: 'evm', | ||
nativeCurrency: { | ||
decimals: 18, | ||
name: 'Ether', | ||
symbol: 'ETH', | ||
}, | ||
rpcUrls: { | ||
default: { | ||
http: ['https://unichain-sepolia-rpc.publicnode.com'], | ||
}, | ||
}, | ||
blockExplorers: { | ||
default: { | ||
name: 'Unichain Sepolia Explorer', | ||
url: 'https://unichain-sepolia.blockscout.com', | ||
}, | ||
}, | ||
contracts: { | ||
multicall3: { | ||
address: '0xcA11bde05977b3631167028862bE2a173976CA11', | ||
}, | ||
}, | ||
}; |
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