-
Notifications
You must be signed in to change notification settings - Fork 0
/
locklift.config.js
50 lines (50 loc) · 1.3 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
module.exports = {
compiler: {
// Specify path to your TON-Solidity-Compiler
path: "/usr/bin/solc-ton",
},
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:
"team region drill little feature improve gun hunt recycle brother unfair left",
amount: 20,
},
},
},
};