generated from shuding/nextra-docs-template
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathconfig.ts
61 lines (60 loc) · 1.61 KB
/
config.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import { NetworkEntry } from './types';
export const networks: NetworkEntry[] = [
{
type: 'EVM',
name: 'Mainnet',
chainId: '1329',
hexChainId: '0x531',
rpcUrl: 'https://evm-rpc.sei-apis.com',
explorerLinks: [
{ name: 'SeiTrace', url: 'https://seitrace.com/?chain=pacific-1' },
{ name: 'SeiScan', url: 'https://www.seiscan.app/?chain=pacific-1' }
]
},
{
type: 'EVM',
name: 'Testnet',
chainId: '1328',
hexChainId: '0x530',
rpcUrl: 'https://evm-rpc-testnet.sei-apis.com',
explorerLinks: [
{ name: 'SeiTrace', url: 'https://seitrace.com/?chain=atlantic-2' },
{ name: 'SeiScan', url: 'https://www.seiscan.app/?chain=atlantic-2' }
]
},
{
type: 'EVM',
name: 'Devnet',
chainId: '713715',
hexChainId: '0xAE3F3',
rpcUrl: 'https://evm-rpc-arctic-1.sei-apis.com',
explorerLinks: [{ name: 'SeiTrace', url: 'https://seitrace.com/?chain=arctic-1' }]
},
{
type: 'Cosmos',
name: 'Mainnet',
chainId: 'pacific-1',
rpcUrl: 'https://rpc.sei-apis.com',
explorerLinks: [
{ name: 'SeiTrace', url: 'https://seitrace.com/?chain=pacific-1' },
{ name: 'SeiScan', url: 'https://www.seiscan.app/?chain=pacific-1' }
]
},
{
type: 'Cosmos',
name: 'Testnet',
chainId: 'atlantic-2',
rpcUrl: 'https://rpc-testnet.sei-apis.com',
explorerLinks: [
{ name: 'SeiTrace', url: 'https://seitrace.com/?chain=atlantic-2' },
{ name: 'SeiScan', url: 'https://www.seiscan.app/?chain=atlantic-2' }
]
},
{
type: 'Cosmos',
name: 'Devnet',
chainId: 'arctic-1',
rpcUrl: 'https://rpc-arctic-1.sei-apis.com',
explorerLinks: [{ name: 'SeiTrace', url: 'https://seitrace.com/?chain=arctic-1' }]
}
];