forked from mostexpensive-io/true-nft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocklift.config.js
33 lines (33 loc) · 1.04 KB
/
locklift.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
module.exports = {
compiler: {
// Specify path to your TON-Solidity-Compiler
path: '/usr/bin/tsolc',
},
linker: {
// Path to your TVM Linker
path: '/usr/bin/tvm_linker',
},
networks: {
// You can use TON labs graphql endpoints or local node
local: {
ton_client: {
// See the TON client specification for all available options
network: {
server_address: 'http://localhost/',
},
},
// This giver is default local-node giver
giver: {
address: '0:841288ed3b55d9cdafa806807f02a0ae0c169aa5edfe88a789a6482429756a94',
abi: { "ABI version": 1, "functions": [ { "name": "constructor", "inputs": [], "outputs": [] }, { "name": "sendGrams", "inputs": [ {"name":"dest","type":"address"}, {"name":"amount","type":"uint64"} ], "outputs": [] } ], "events": [], "data": [] },
key: '',
},
// Use tonos-cli to generate your phrase
// !!! Never commit it in your repos !!!
keys: {
phrase: '',
amount: 20,
}
},
},
};