-
Notifications
You must be signed in to change notification settings - Fork 38
/
config.example.js
65 lines (65 loc) · 1.26 KB
/
config.example.js
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
62
63
64
65
module.exports = {
BTCNode: {
chain: 'BTC',
host: 'localhost',
protocol: 'http',
rpcPort: '20009',
rpcUser: 'bitpaytest',
rpcPass: 'local321',
},
BCHNode: {
chain: 'BCH',
host: 'localhost',
protocol: 'http',
rpcPort: '20003',
rpcUser: 'bitpaytest',
rpcPass: 'local321'
},
DogeNode: {
chain: 'DOGE',
host: 'localhost',
protocol: 'http',
rpcPort: '20004',
rpcUser: 'bitpaytest',
rpcPass: 'local321'
},
XRPNode: {
chain: 'XRP',
host: 'localhost',
protocol: 'ws',
rpcPort: '6006',
},
ETHNode: {
chain: 'ETH',
host: 'localhost',
rpcPort: '8545',
protocol: 'http',
tokens : {
GUSD: {
tokenContractAddress: '0x00C3f2662F4F56623712BaC28179E7aDf952c0F0',
type: 'ERC20'
},
USDC: {
tokenContractAddress: '0xc2258ea076cF2467960EE9B62264b9E17d59eFc9',
type: 'ERC20'
},
PAX: {
tokenContractAddress: '0x531f6D8aFA88CC6966FD817340b2A5D7FA3750AD',
type: 'ERC20'
}
}
},
ARBNode: {
chain: 'ARB',
host: 'localhost',
rpcPort: '8546',
protocol: 'http',
isEVM: true
},
SOLNode: {
chain: 'SOL',
host: 'localhost',
rpcPort: '8899',
protocol: 'http'
}
};