-
Notifications
You must be signed in to change notification settings - Fork 5
/
config.js
131 lines (128 loc) · 4.5 KB
/
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/**
* config
* Created by ordemri
* on 12/25/17
*/
var config = {
qtum: {
provider: 'http://or:demri@localhost:13889',
address: '35fb4e772a940fdde54da38e63ee89f054543663',
abi: [{
"constant": false,
"inputs": [{"name": "ccyName", "type": "string"}, {
"name": "qty",
"type": "uint256"
}, {"name": "hashedPassword", "type": "bytes32"}, {"name": "cp", "type": "address"}, {
"name": "exp",
"type": "uint256"
}],
"name": "publish",
"outputs": [],
"payable": true,
"stateMutability": "payable",
"type": "function"
}, {
"constant": false,
"inputs": [{"name": "name", "type": "string"}, {"name": "symbol", "type": "string"}, {
"name": "isToken",
"type": "bool"
}, {"name": "tAddress", "type": "address"}],
"name": "addCurrency",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
}, {
"constant": false,
"inputs": [{"name": "hashedPassword", "type": "bytes32"}],
"name": "refund",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
}, {
"constant": true,
"inputs": [{"name": "", "type": "bytes32"}],
"name": "txs",
"outputs": [{"name": "tradingParty", "type": "address"}, {
"name": "counterParty",
"type": "address"
}, {"name": "ccy", "type": "string"}, {"name": "qty", "type": "uint256"}, {
"name": "expirationDate",
"type": "uint256"
}, {"name": "initDate", "type": "uint256"}, {"name": "exist", "type": "bool"}, {
"name": "done",
"type": "bool"
}],
"payable": false,
"stateMutability": "view",
"type": "function"
}, {
"constant": false,
"inputs": [{"name": "secret", "type": "string"}],
"name": "claim",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
}, {
"inputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "constructor"
}, {
"anonymous": false,
"inputs": [{"indexed": false, "name": "tradingParty", "type": "address"}, {
"indexed": false,
"name": "counterParty",
"type": "address"
}, {"indexed": false, "name": "ccy", "type": "string"}, {
"indexed": false,
"name": "qty",
"type": "uint256"
}, {"indexed": false, "name": "hashedPassword", "type": "bytes32"}, {
"indexed": false,
"name": "expirationDate",
"type": "uint256"
}],
"name": "Initiated",
"type": "event"
}, {
"anonymous": false,
"inputs": [{"indexed": false, "name": "counterParty", "type": "address"}, {
"indexed": false,
"name": "ccy",
"type": "string"
}, {"indexed": false, "name": "qty", "type": "uint256"}, {
"indexed": false,
"name": "secret",
"type": "string"
}],
"name": "Claimed",
"type": "event"
}, {
"anonymous": false,
"inputs": [{"indexed": false, "name": "tradingParty", "type": "address"}, {
"indexed": false,
"name": "ccy",
"type": "string"
}, {"indexed": false, "name": "qty", "type": "uint256"}, {
"indexed": false,
"name": "hashedPassword",
"type": "bytes32"
}],
"name": "Refunded",
"type": "event"
}, {
"anonymous": false,
"inputs": [{"indexed": false, "name": "symbol", "type": "string"}, {
"indexed": false,
"name": "name",
"type": "string"
}, {"indexed": false, "name": "tokenAddress", "type": "address"}],
"name": "CurrencyAdded",
"type": "event"
}]
}
};
module.exports = config;