-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtomo.js
More file actions
449 lines (405 loc) · 15 KB
/
Copy pathtomo.js
File metadata and controls
449 lines (405 loc) · 15 KB
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
const ethers = require('ethers')
const request = require('request')
const urljoin = require('url-join');
const BigNumber = require('bignumber.js')
const WebSocket = require('ws')
const TomoValidatorAbi = require('./abis/TomoValidator.json')
const TomoX = require('./tomox')
const TomoZ = require('./tomoz')
const Bridge = require('./bridge')
const utils = require('./utils')
const validatorAddress = '0x0000000000000000000000000000000000000088'
let network = {}
/**
* The SDK works with TomoChain protocols
* @constructor
* @param {string} endpoint - The Url to the node
* @param {string} pkey - The private key of the wallet
*/
class TomoJS {
constructor (
endpoint = 'http://localhost:8545',
pkey = '', // sample
chainId = 88
) {
this.gasLimit = 2000000
this.endpoint = endpoint
if (!pkey) {
let randomWallet = ethers.Wallet.createRandom()
pkey = randomWallet.privateKey
}
if (endpoint.endsWith('.ipc')) {
this.provider = new ethers.providers.IpcProvider(endpoint)
} else {
this.provider = new ethers.providers.JsonRpcProvider(endpoint)
}
this.wallet = new ethers.Wallet(pkey, this.provider)
this.coinbase = this.wallet.address
this.chainId = chainId ? Number(chainId) : (this.endpoint === 'https://rpc.tomochain.com' ? 88 : 89)
this.contract = new ethers.Contract(
validatorAddress,
TomoValidatorAbi.abi,
this.wallet
)
network.endpoint = this.endpoint
network.pkey = pkey
network.chainId = chainId
this.tomox = new TomoX(network)
this.tomoz = new TomoZ(network)
this.bridge = new Bridge(network)
this.tomo = this.provider
this.network = network
this.utils = Object.assign(ethers.utils, utils)
}
/**
* Initial the SDK
* @param {string} endpoint - The Url to the node
* @param {string} pkey - The private key of the wallet
*/
static setProvider(
endpoint = 'http://localhost:8545',
pkey = '',
chainId = 88
) {
return TomoJS.networkInformation(endpoint).then((info) => {
network = {
endpoint: endpoint,
pkey: pkey,
chainId: info.NetworkId,
issuerAddress: info.TomoZAddress,
tomoXAddress: info.TomoXListingAddress,
registrationAddress: info.RelayerRegistrationAddress,
lendingAddress: info.LendingAddress
}
return new TomoJS(
endpoint, pkey, info.NetworkId
)
}).catch((e) => {
return new TomoJS(
endpoint, pkey, chainId
)
})
}
/**
* Stake TOMO to the node
* @param {object} stake - The staking information
* @param {string} stake.amount - The amount (TOMO) you want to stake
* @param {string} stake.node - The coinbase of the node
*/
async stake ({ amount, node }) {
try {
const voteAmountBN = new BigNumber(amount).multipliedBy(10 ** 18).toString(10)
const nonce = this.provider.getTransactionCount(this.coinbase)
const gasPrice = await this.provider.getGasPrice()
let txParams = {
value: ethers.utils.hexlify(ethers.utils.bigNumberify(voteAmountBN)),
gasPrice: ethers.utils.hexlify(ethers.utils.bigNumberify(gasPrice)),
gasLimit: ethers.utils.hexlify(this.gasLimit),
chainId: this.chainId,
nonce: await nonce
}
const result = await this.contract.functions.vote(node, txParams)
return result
} catch (error) {
throw error
}
}
/**
* Unstake your TOMO
* @param {object} unstake - The unstaking information
* @param {string} unstake.amount - The amount (TOMO) you want to unstake
* @param {string} unstake.node - The coinbase of the node
*/
async unstake ({ amount, node }) {
try {
const voteAmountBN = new BigNumber(amount).multipliedBy(10 ** 18).toString(10)
const value = ethers.utils.hexlify(ethers.utils.bigNumberify(voteAmountBN))
const nonce = this.provider.getTransactionCount(this.coinbase)
const gasPrice = await this.provider.getGasPrice()
let txParams = {
gasPrice: ethers.utils.hexlify(ethers.utils.bigNumberify(gasPrice)),
gasLimit: ethers.utils.hexlify(this.gasLimit),
chainId: this.chainId,
nonce: await nonce
}
const result = await this.contract.functions.unvote(node, value, txParams)
return result
} catch (error) {
throw error
}
}
/**
* Propose a node to become a masternode candidate
* @param {object} propose - The propose information
* @param {string} propose.amount - The first amount (TOMO) you want to stake for the candidate
* @param {string} propose.node - The coinbase of the node
*/
async propose ({ amount, node }) {
try {
if (amount < 50000) {
throw new Error('The required amount is at least 50000 TOMO')
} else {
const nonce = this.provider.getTransactionCount(this.coinbase)
const voteAmountBN = new BigNumber(amount).multipliedBy(10 ** 18).toString(10)
const gasPrice = await this.provider.getGasPrice()
let txParams = {
value: ethers.utils.hexlify(ethers.utils.bigNumberify(voteAmountBN)),
gasPrice: ethers.utils.hexlify(ethers.utils.bigNumberify(gasPrice)),
gasLimit: ethers.utils.hexlify(this.gasLimit),
chainId: this.chainId,
nonce: await nonce
}
const result = await this.contract.functions.propose(node, txParams)
return result
}
} catch (error) {
throw error
}
}
/**
* Resign a node
* @param {object} resign - The resign information
* @param {string} resign.node - The coinbase of the node
*/
async resign ({ node }) {
try {
const nonce = this.provider.getTransactionCount(this.coinbase)
const gasPrice = await this.provider.getGasPrice()
let txParams = {
gasPrice: ethers.utils.hexlify(ethers.utils.bigNumberify(gasPrice)),
gasLimit: ethers.utils.hexlify(this.gasLimit),
chainId: this.chainId,
nonce: await nonce
}
const result = await this.contract.functions.resign(node, txParams)
return result
} catch (error) {
throw error
}
}
async getWithdrawBlockNumbers () {
try {
const result = []
const blks = await this.contract.functions.getWithdrawBlockNumbers()
await Promise.all(blks.map(async (block, index) => {
const cap = await this.contract.functions.getWithdrawCap(block)
const capacity = new BigNumber(cap).div(10 ** 18).toString(10)
if (capacity !== '0') {
result.push({
index,
blockNumber: block.toString(10),
capacity
})
}
}))
return result.sort((a, b) => a.index - b.index)
} catch (error) {
throw error
}
}
async withdraw ({ blockNumber, index }) {
try {
const gasPrice = this.provider.getGasPrice()
const nonce = this.provider.getTransactionCount(this.coinbase)
let txParams = {
gasPrice: ethers.utils.hexlify(ethers.utils.bigNumberify(await gasPrice)),
gasLimit: ethers.utils.hexlify(this.gasLimit),
chainId: this.chainId,
nonce: await nonce
}
const result = await this.contract.functions.withdraw(blockNumber, index, txParams)
return result
} catch (error) {
throw error
}
}
async withdrawAll () {
try {
const result = []
const nonce = this.provider.getTransactionCount(this.coinbase)
const currentBlock = await this.provider.getBlockNumber() || 0
const blks = await this.contract.functions.getWithdrawBlockNumbers()
await Promise.all(blks.map(async (block, index) => {
if (new BigNumber(block).isLessThan(currentBlock)) {
result.push({
index,
blockNumber: block.toString(10)
})
}
}))
const gasPrice = await this.provider.getGasPrice()
let txParams = {
gasPrice: ethers.utils.hexlify(ethers.utils.bigNumberify(gasPrice)),
gasLimit: ethers.utils.hexlify(this.gasLimit),
chainId: this.chainId,
nonce: await nonce
}
const withdraw = await Promise.all(result.map(async r => {
const withdrawal = await this.contract.functions.withdraw(r.blockNumber, r.index, txParams)
return withdrawal
}))
return withdraw
} catch (error) {
throw error
}
}
async getBalance (address) {
let balance = await this.provider.getBalance(address || this.coinbase)
return ethers.utils.formatEther(balance)
}
async getTokenBalance ( tokenAddress, address = this.coinbase) {
if (tokenAddress === "0x0000000000000000000000000000000000000001") {
let balance = await this.provider.getBalance(address)
return ethers.utils.formatEther(balance)
}
let balance = await this.tomoz.balanceOf({
tokenAddress: tokenAddress,
userAddress: address
})
return balance.balance
}
getCandidateStatus({ address, epoch }) {
return new Promise(async (resolve, reject) => {
try {
const jsonrpc = {
jsonrpc: '2.0',
method: 'eth_getCandidateStatus',
params: [ address, '0x' + parseInt(epoch).toString(16) || 'latest' ],
id: 1
}
let url = urljoin(this.endpoint)
let options = {
method: 'POST',
url: url,
json: true,
headers: {
'content-type': 'application/json'
},
body: jsonrpc
}
request(options, (error, response, body) => {
if (error) {
return reject(error)
}
if (response.statusCode !== 200 && response.statusCode !== 201) {
return reject(body)
}
let ret = body.result || {}
ret.capacity = new BigNumber(ret.capacity).dividedBy(1e+18).toString(10)
return resolve(ret)
})
} catch(e) {
return reject(e)
}
})
}
send({ address, value, nonce }) {
return new Promise(async (resolve, reject) => {
let tx = {
nonce: nonce,
gasLimit: 21000,
gasPrice: ethers.utils.bigNumberify('250000000'),
to: address,
value: ethers.utils.parseEther(String(value)),
data: '0x',
chainId: this.chainId
}
if (tx.nonce) {
return this.wallet.sendTransaction(tx).then(tx => {
return resolve(tx)
}).catch(e => {
return reject(e)
})
}
return this.wallet.getTransactionCount().then(count => {
let tx = {
nonce: count,
gasLimit: 21000,
gasPrice: ethers.utils.bigNumberify('250000000'),
to: address,
value: ethers.utils.parseEther(String(value)),
data: '0x',
chainId: this.chainId
}
return this.wallet.sendTransaction(tx)
}).then(tx => {
return resolve(tx)
}).catch(e => {
return reject(e)
})
})
}
static randomWallet() {
let randomWallet = ethers.Wallet.createRandom()
let privateKey = randomWallet.privateKey
let address = randomWallet.address
return { address, privateKey }
}
static networkInformation (endpoint) {
return new Promise(async (resolve, reject) => {
try {
const jsonrpc = {
jsonrpc: '2.0',
method: 'posv_networkInformation',
params: [ ],
id: 1
}
let url = urljoin(endpoint || this.endpoint)
let options = {
method: 'POST',
url: url,
json: true,
headers: {
'content-type': 'application/json'
},
body: jsonrpc
}
request(options, (error, response, body) => {
if (error) {
return reject(error)
}
if (response.statusCode !== 200 && response.statusCode !== 201) {
return reject(body)
}
return resolve(body.result)
})
} catch(e) {
return reject(e)
}
})
}
getTransactionReceipt ({ hash }) {
return new Promise(async (resolve, reject) => {
try {
const jsonrpc = {
jsonrpc: '2.0',
method: 'eth_getTransactionReceipt',
params: [ hash ],
id: 1
}
let url = urljoin(this.endpoint)
let options = {
method: 'POST',
url: url,
json: true,
headers: {
'content-type': 'application/json'
},
body: jsonrpc
}
request(options, (error, response, body) => {
if (error) {
return reject(error)
}
if (response.statusCode !== 200 && response.statusCode !== 201) {
return reject(body)
}
return resolve(body.result)
})
} catch(e) {
return reject(e)
}
})
}
}
module.exports = TomoJS