-
Notifications
You must be signed in to change notification settings - Fork 2
/
tomoz.js
505 lines (442 loc) · 16.5 KB
/
tomoz.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
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
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
const ethers = require('ethers')
const request = require('request')
const urljoin = require('url-join');
const BigNumber = require('bignumber.js')
const WebSocket = require('ws')
const path = require('path')
const fs = require('fs')
const solc = require('solc')
const IssuerAbi = require('./abis/TRC21Issuer.json')
const TomoXListingAbi = require('./abis/TOMOXListing.json')
function createContract () {
try {
const p = path.resolve(__dirname, './contracts', 'TRC21Mintable.sol')
const contractCode = fs.readFileSync(p, 'UTF-8')
return contractCode
} catch (error) {
throw error
}
}
function compileContract (contractCode) {
try {
const compiledContract = solc.compile(contractCode, 1)
const contract = compiledContract.contracts['MyTRC21Mintable'] ||
compiledContract.contracts[':' + 'MyTRC21Mintable']
return contract
} catch (error) {
throw error
}
}
async function getABI (isMintable = true) {
let p
if (isMintable) {
p = path.resolve(__dirname, './abis', 'MyTRC21Mintable.json')
const data = fs.readFileSync(p, 'UTF-8')
if (data) {
return JSON.parse(data).abi
}
} else {
p = path.resolve(__dirname, './abis', 'MyTRC21.json')
const data = fs.readFileSync(p, 'UTF-8')
if (data) {
return JSON.parse(data).abi
}
}
}
class TomoZ {
constructor ({
endpoint,
pkey,
chainId,
issuerAddress,
tomoXAddress,
}) {
this.gasLimit = 2000000
this.endpoint = endpoint
this.chainId = chainId ? Number(chainId) : (this.endpoint === 'https://rpc.tomochain.com' ? 88 : 89)
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.issuerContract = new ethers.Contract(
issuerAddress || '0xc44ac3e7ea0f6471da752886209c76c4ebffd1fb',
IssuerAbi.abi,
this.wallet
)
this.tomoXContract = new ethers.Contract(
tomoXAddress || '0x6cac761fe6c31e3ecab1121b00bfa708d72d85ce',
TomoXListingAbi.abi,
this.wallet
)
}
async issueTRC21 ({
name,
symbol,
totalSupply,
decimals,
nonce
}) {
try {
console.log('Creating contract...')
const contractCode = createContract()
console.log('Compiling contract...')
const compliedContract = compileContract(contractCode)
const bytecode = compliedContract.bytecode
const abi = JSON.parse(compliedContract.interface)
const trcContract = {
abi, bytecode
}
console.log('Deploying contract...')
const factory = new ethers.ContractFactory(
trcContract.abi,
trcContract.bytecode,
this.wallet
)
nonce = nonce || await this.provider.getTransactionCount(this.coinbase)
const txParams = {
gasLimit: ethers.utils.hexlify(this.gasLimit),
gasPrice: ethers.utils.hexlify(10000000000000),
chainId: this.chainId,
nonce: nonce
}
const contract = await factory.deploy(
name,
symbol,
decimals,
(new BigNumber(totalSupply).multipliedBy(10 ** decimals)).toString(10),
(new BigNumber(0).multipliedBy(10 ** decimals)).toString(10),
txParams
)
await contract.deployed()
return {
name,
symbol,
totalSupply,
decimals,
contractAddress: contract.address,
transactionHash: contract.deployTransaction.hash
}
} catch (error) {
throw error
}
}
async updateFee ({ tokenAddress, fee }) {
try {
const isAppliedTomoZ = await this.isAppliedTomoZ(tokenAddress)
if (!isAppliedTomoZ) {
throw new Error('This token have not applied to TomoZ')
} else {
const abi = getABI()
const nonce = this.provider.getTransactionCount(this.coinbase)
const gasPrice = this.provider.getGasPrice()
const contract = new ethers.Contract(
tokenAddress,
await abi,
this.wallet
)
const owner = await contract.functions.issuer()
if (this.coinbase.toLowerCase() !== owner.toLowerCase()) {
throw new Error('Only owner of the contract can edit fee')
}
const txParams = {
gasLimit: ethers.utils.hexlify(this.gasLimit),
gasPrice: ethers.utils.hexlify(ethers.utils.bigNumberify(await gasPrice)),
chainId: this.chainId,
nonce: await nonce
}
const decimals = contract.functions.decimals()
const result = await contract.functions.setMinFee(
(new BigNumber(fee).multipliedBy(10 ** await decimals)).toString(10),
txParams
)
return result
}
} catch (error) {
throw error
}
}
async depositPoolingFee ({ tokenAddress, amount }) {
try {
const isAppliedTomoZ = await this.isAppliedTomoZ(tokenAddress)
if (!isAppliedTomoZ) {
throw new Error('This token have not applied to TomoZ')
} else {
const depAmountBN = new BigNumber(amount).multipliedBy(10 ** 18).toString(10)
const nonce = this.provider.getTransactionCount(this.coinbase)
const gasPrice = this.provider.getGasPrice()
const txParams = {
value: ethers.utils.hexlify(ethers.utils.bigNumberify(depAmountBN)),
gasLimit: ethers.utils.hexlify(this.gasLimit),
gasPrice: ethers.utils.hexlify(ethers.utils.bigNumberify(await gasPrice)),
chainId: this.chainId,
nonce: await nonce
}
const result = await this.issuerContract.functions.charge(
tokenAddress,
txParams
)
const receipt = await this.provider.getTransactionReceipt(result.hash || '')
if (receipt.status) {
return result
} else {
throw new Error('Something went wrong \n txHash: ' + result.hash || '')
}
}
} catch (error) {
throw error
}
}
async getTokensTomoZ () {
return this.issuerContract.functions.tokens()
.then(data => data)
.catch(error => error)
}
async getTokensTomoX () {
return this.tomoXContract.functions.tokens()
.then(data => data)
.catch(error => error)
}
async isAppliedTomoX (address) {
try {
const list = await this.getTokensTomoX()
if (list && list.length > 0) {
const lowerCaseArr = list.map(m => m.toLowerCase())
if (lowerCaseArr.indexOf(address.toLowerCase()) > -1) {
return true
}
}
return false
} catch (error) {
throw error
}
}
async isAppliedTomoZ (address) {
try {
const list = await this.getTokensTomoZ()
if (list && list.length > 0) {
const lowerCaseArr = list.map(m => m.toLowerCase())
if (lowerCaseArr.indexOf(address.toLowerCase()) > -1) {
return true
}
}
return false
} catch (error) {
throw error
}
}
async applyTomoZ ({ tokenAddress, amount }) {
try {
if (amount < 10) {
throw new Error('Minimum of depositing is 10 TOMO')
}
const isAppliedTomoZ = await this.isAppliedTomoZ(tokenAddress)
if (isAppliedTomoZ) {
throw new Error('This token have already applied to TomoZ')
} else {
const depAmountBN = new BigNumber(amount).multipliedBy(10 ** 18).toString(10)
const nonce = this.provider.getTransactionCount(this.coinbase)
const gasPrice = this.provider.getGasPrice()
const txParams = {
value: ethers.utils.hexlify(ethers.utils.bigNumberify(depAmountBN)),
gasLimit: ethers.utils.hexlify(this.gasLimit),
gasPrice: ethers.utils.hexlify(ethers.utils.bigNumberify(await gasPrice)),
chainId: this.chainId,
nonce: await nonce
}
const result = await this.issuerContract.functions.apply(
tokenAddress,
txParams
)
return result
}
} catch (error) {
throw error
}
}
async applyTomoX ({ tokenAddress, amount, nonce }) {
try {
if (amount < 1000) {
throw new Error('You need to pay 1000 TOMO as TomoX protocol listing fee')
}
const isAppliedTomoX = await this.isAppliedTomoX(tokenAddress)
if (isAppliedTomoX) {
throw new Error('This token have already applied to TomoX')
} else {
const depAmountBN = new BigNumber(amount).multipliedBy(10 ** 18).toString(10)
nonce = nonce || this.provider.getTransactionCount(this.coinbase)
const gasPrice = this.provider.getGasPrice()
const txParams = {
value: ethers.utils.hexlify(ethers.utils.bigNumberify(depAmountBN)),
gasLimit: ethers.utils.hexlify(this.gasLimit),
gasPrice: ethers.utils.hexlify(ethers.utils.bigNumberify(await gasPrice)),
chainId: this.chainId,
nonce: nonce
}
const result = await this.tomoXContract.functions.apply(
tokenAddress,
txParams
)
return result
}
} catch (error) {
throw error
}
}
async reissueToken({ tokenAddress, toAddress = this.coinbase, amount }) {
try {
const abi = getABI()
const contract = new ethers.Contract(
tokenAddress,
await abi,
this.wallet
)
const reissueAmountBN = new BigNumber(amount).multipliedBy(10 ** 18).toString(10)
const nonce = this.provider.getTransactionCount(this.coinbase)
const gasPrice = this.provider.getGasPrice()
const txParams = {
gasLimit: ethers.utils.hexlify(this.gasLimit),
gasPrice: ethers.utils.hexlify(ethers.utils.bigNumberify(await gasPrice)),
chainId: this.chainId,
nonce: await nonce
}
const result = await contract.functions.mint(
toAddress,
ethers.utils.hexlify(ethers.utils.bigNumberify(reissueAmountBN)),
txParams
)
const receipt = await this.provider.getTransactionReceipt(result.hash || '')
if (receipt.status) {
return result
} else {
throw new Error('Something went wrong \n txHash: ' + result.hash || '')
}
} catch (error) {
throw error
}
}
async burnToken({ tokenAddress , amount }) {
try {
const abi = getABI()
const contract = new ethers.Contract(
tokenAddress,
await abi,
this.wallet
)
const burnAmountBN = new BigNumber(amount).multipliedBy(10 ** 18).toString(10)
const nonce = this.provider.getTransactionCount(this.coinbase)
const gasPrice = this.provider.getGasPrice()
const txParams = {
gasLimit: ethers.utils.hexlify(this.gasLimit),
gasPrice: ethers.utils.hexlify(ethers.utils.bigNumberify(await gasPrice)),
chainId: this.chainId,
nonce: await nonce
}
const result = await contract.functions.burn(
ethers.utils.hexlify(ethers.utils.bigNumberify(burnAmountBN)),
txParams
)
const receipt = await this.provider.getTransactionReceipt(result.hash || '')
if (receipt.status) {
return result
} else {
throw new Error('Something went wrong \n txHash: ' + result.hash || '')
}
} catch (error) {
throw error
}
}
async balanceOf({ tokenAddress , userAddress }) {
try {
const abi = getABI()
const contract = new ethers.Contract(
tokenAddress,
await abi,
this.wallet
)
const decimals = await contract.functions.decimals()
const balance = await contract.functions.balanceOf(userAddress || this.coinbase)
return {
balance: (new BigNumber(balance).dividedBy(10 ** decimals)).toString(10),
balanceBig: (new BigNumber(balance)).toString(10)
}
} catch (error) {
throw error
}
}
async transfer({ tokenAddress, to, amount, nonce }) {
try {
const abi = getABI()
const contract = new ethers.Contract(
tokenAddress,
await abi,
this.wallet
)
const decimals = await contract.functions.decimals()
const amountBN = new BigNumber(amount).multipliedBy(10 ** decimals).toString(10)
nonce = nonce || await this.provider.getTransactionCount(this.coinbase)
let txParams = {
value: 0,
gasPrice: ethers.utils.hexlify(250000000000000),
gasLimit: ethers.utils.hexlify(this.gasLimit),
chainId: this.chainId,
nonce
}
const result = await contract.functions.transfer(
to,
ethers.utils.hexlify(ethers.utils.bigNumberify(amountBN)),
txParams
)
return result
} catch (error) {
throw error
}
}
async getTokenInformation(tokenAddress) {
try {
if (tokenAddress === '0x0000000000000000000000000000000000000001') {
return {
name: 'TomoChain',
symbol: 'TOMO',
decimals: 18,
totalSupply: '100000000'
}
}
const abi = getABI()
const contract = new ethers.Contract(
tokenAddress,
await abi,
this.wallet
)
let decimals = 0
let name = ''
let symbol = ''
try {
decimals = await contract.functions.decimals()
name = await contract.functions.name()
symbol = await contract.functions.symbol()
} catch (e) {}
const isAppliedTomoZ = await this.isAppliedTomoZ(tokenAddress)
const isAppliedTomoX = await this.isAppliedTomoX(tokenAddress)
let totalSupply = await contract.functions.totalSupply()
totalSupply = (new BigNumber(totalSupply).dividedBy(10 ** decimals)).toString(10)
return {
name,
symbol,
decimals,
totalSupply,
isAppliedTomoZ,
isAppliedTomoX
}
} catch (error) {
throw error
}
}
}
module.exports = TomoZ