Skip to content

Commit b72ec12

Browse files
committed
add exsat chains definitions
1 parent 6991900 commit b72ec12

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

src/chains/definitions/exSat.ts

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import { defineChain } from '../../utils/chain/defineChain.js'
2+
3+
export const eos = /*#__PURE__*/ defineChain({
4+
id: 7200,
5+
name: 'exSat Network',
6+
nativeCurrency: {
7+
decimals: 18,
8+
name: 'BTC',
9+
symbol: 'BTC',
10+
},
11+
rpcUrls: {
12+
default: { http: ['https://evm.exsat.network'] },
13+
},
14+
blockExplorers: {
15+
default: {
16+
name: 'exSat Explorer',
17+
url: 'https://scan.exsat.network',
18+
apiUrl: 'https://scan.exsat.network/api',
19+
},
20+
}
21+
})
+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import { defineChain } from '../../utils/chain/defineChain.js'
2+
3+
export const eos = /*#__PURE__*/ defineChain({
4+
id: 839999,
5+
name: 'exSat Testnet',
6+
nativeCurrency: {
7+
decimals: 18,
8+
name: 'BTC',
9+
symbol: 'BTC',
10+
},
11+
rpcUrls: {
12+
default: { http: ['https://evm-tst3.exsat.network'] },
13+
},
14+
blockExplorers: {
15+
default: {
16+
name: 'exSat Explorer',
17+
url: 'https://scan-testnet.exsat.network',
18+
apiUrl: 'https://scan-testnet.exsat.network/api',
19+
},
20+
}
21+
})

0 commit comments

Comments
 (0)