-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbahamut.ts
41 lines (40 loc) · 1.03 KB
/
bahamut.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
import { defineChain } from '../../utils/chain/defineChain.js'
export const bahamut = /*#__PURE__*/ defineChain({
id: 5165,
network: 'bahamut',
name: 'Bahamut',
nativeCurrency: { name: 'Fasttoken', symbol: 'FTN', decimals: 18 },
rpcUrls: {
default: {
http: [
'https://rpc1.bahamut.io',
'https://bahamut-rpc.publicnode.com',
'https://rpc2.bahamut.io',
],
webSocket: [
'wss://ws1.sahara.bahamutchain.com',
'wss://bahamut-rpc.publicnode.com',
'wss://ws2.sahara.bahamutchain.com',
],
},
public: {
http: [
'https://rpc1.bahamut.io',
'https://bahamut-rpc.publicnode.com',
'https://rpc2.bahamut.io',
],
webSocket: [
'wss://ws1.sahara.bahamutchain.com',
'wss://bahamut-rpc.publicnode.com',
'wss://ws2.sahara.bahamutchain.com',
],
},
},
blockExplorers: {
default: {
name: 'Ftnscan',
url: 'https://www.ftnscan.com',
apiUrl: 'https://www.ftnscan.com/api',
},
},
})