forked from pocteo/dapp-sla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConf.js
46 lines (45 loc) · 892 Bytes
/
Conf.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
var Poc_adress = '0x8F1C7DadD5313018bc7e0eD4bbe5a5B20B7a3f7a';
var Pocteo_ABI = [
{
"constant": true,
"inputs": [],
"name": "myMessage",
"outputs": [
{
"name": "",
"type": "string"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "_newMessage",
"type": "string"
}
],
"name": "setMessage",
"outputs": [],
"payable": true,
"stateMutability": "payable",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "getMessage",
"outputs": [
{
"name": "",
"type": "string"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
}
];