-
Notifications
You must be signed in to change notification settings - Fork 0
/
polar.config.js
53 lines (52 loc) · 1.33 KB
/
polar.config.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
const accounts = [
{
name: 'account_0',
address: 'secret1nmjq4cqdwr9d68nun3kkxr9h2z5l5u03ypmyk2',
mnemonic: 'hood endorse primary mixed camera piece agree chimney upgrade album blade alcohol reunion forget invite squeeze general bench aerobic happy saddle off buddy soccer'
},
{
name: 'account_1',
address: 'secret1ddfphwwzqtkp8uhcsc53xdu24y9gks2kug45zv',
mnemonic: 'sorry object nation also century glove small tired parrot avocado pulp purchase'
}
];
module.exports = {
networks: {
default: {
endpoint: 'http://localhost:1337/',
accounts: accounts,
},
development: {
endpoint: 'tcp://0.0.0.0:26656',
nodeId: '115aa0a629f5d70dd1d464bc7e42799e00f4edae',
chainId: 'enigma-pub-testnet-3',
keyringBackend: 'test',
types: {}
},
// Supernova Testnet
testnet: {
endpoint: 'http://40.88.137.151:1317',
chainId: 'pulsar-2',
trustNode: true,
keyringBackend: 'test',
accounts: accounts,
types: {},
fees: {
upload: {
amount: [{ amount: "500000", denom: "uscrt" }],
gas: "2000000",
},
init: {
amount: [{ amount: "125000", denom: "uscrt" }],
gas: "500000",
},
}
}
},
mocha: {
timeout: 60000
},
rust: {
version: "1.55.0",
}
};