-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbaseSepolia.ts
34 lines (33 loc) · 842 Bytes
/
baseSepolia.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import { defineChain } from '../../utils/chain/defineChain.js'
import { formattersOptimism } from '../optimism/formatters.js'
export const baseSepolia = /*#__PURE__*/ defineChain(
{
id: 84532,
network: 'base-sepolia',
name: 'Base Sepolia',
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
rpcUrls: {
default: {
http: ['https://sepolia.base.org'],
},
public: {
http: ['https://sepolia.base.org'],
},
},
blockExplorers: {
blockscout: {
name: 'Blockscout',
url: 'https://base-sepolia.blockscout.com',
},
default: {
name: 'Blockscout',
url: 'https://base-sepolia.blockscout.com',
},
},
testnet: true,
sourceId: 11155111, // sepolia
},
{
formatters: formattersOptimism,
},
)