forked from polkawallet-io/polkawallet-flutter
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapiMiningMXC.dart
531 lines (446 loc) · 22 KB
/
apiMiningMXC.dart
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
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
import 'dart:async' show Future;
import 'package:flutter/services.dart' show rootBundle;
import 'package:web3dart/web3dart.dart';
import 'api.dart';
import 'apiAccount.dart';
class EthereumApiMiningMXC {
EthereumApiMiningMXC();
BigInt signalled;
BigInt claimsSignalledPending;
BigInt claimsSignalledApproved;
BigInt claimsSignalledRejected;
BigInt locked;
BigInt claimsLockedPending;
BigInt claimsLockedApproved;
BigInt claimsLockedRejected;
// Get amount of MXC tokens that have been signalled
Future<BigInt> getAccountSignalledMXCAmountFromDataHighwayMXCMiningContract(
String rpcUrl, String wsUrl, EthereumAddress contractAddr,
[String privateKey]) async {
// TODO - move this into singleton
EthereumApi ethereumApi = EthereumApi(rpcUrl: rpcUrl, wsUrl: wsUrl);
Web3Client client = await ethereumApi.connectToWeb3EthereumClient();
EthereumApiAccount ethereumApiAccount = EthereumApiAccount();
EthereumAddress ownAddress = await ethereumApiAccount.getOwnAddress();
print('Ethereum account address ${ownAddress.hex}');
// Read the contract ABI and to inform web3dart of its deployed contractAddr
final abiCode = await rootBundle
.loadString('assets/data/abi_datahighway_mxc_mining_mainnet.json');
final contract = DeployedContract(
ContractAbi.fromJson(abiCode, 'DataHighwayMXCMiningToken'),
contractAddr);
// Extracting some functions and events for later use
final signalledEvent = contract.event('Signalled');
final signalFunction = contract.function('signal');
// Check signalled amount of DataHighwayMXCMiningToken by calling the appropriate function
List signalledList = await client.call(
contract: contract, function: signalFunction, params: [ownAddress]);
signalled = signalledList.first;
print('You have ${signalled} DataHighwayMXCMiningToken');
// Listen for the Signalled event when emitted by the contract above
final subscription = client
.events(FilterOptions.events(contract: contract, event: signalledEvent))
.take(1)
.listen((event) async {
final decoded = signalledEvent.decodeResults(event.topics, event.data);
final from = decoded[0] as EthereumAddress;
final to = decoded[1] as EthereumAddress;
final value = decoded[2] as BigInt;
if (from == ownAddress || to == ownAddress) {
print('$from signalled $value DataHighwayMXCMiningTokens to $to');
signalledList = await client.call(
contract: contract, function: signalFunction, params: [ownAddress]);
signalled = signalledList.first;
print('You have ${signalled} DataHighwayMXCMiningTokens');
}
});
await subscription.asFuture();
await subscription.cancel();
await client.dispose();
return signalled;
}
// Get amount of MXC tokens that have been signalled
// whose rewards have been claimed and pending approval
Future<BigInt>
getAccountSignalledClaimsPendingOfMXCAmountFromDataHighwayMXCMiningContract(
String rpcUrl, String wsUrl, EthereumAddress contractAddr,
[String privateKey]) async {
// TODO - move this into singleton
EthereumApi ethereumApi = EthereumApi(rpcUrl: rpcUrl, wsUrl: wsUrl);
Web3Client client = await ethereumApi.connectToWeb3EthereumClient();
EthereumApiAccount ethereumApiAccount = EthereumApiAccount();
EthereumAddress ownAddress = await ethereumApiAccount.getOwnAddress();
print('Ethereum account address ${ownAddress.hex}');
// Read the contract ABI and to inform web3dart of its deployed contractAddr
final abiCode = await rootBundle
.loadString('assets/data/abi_datahighway_mxc_mining_mainnet.json');
final contract = DeployedContract(
ContractAbi.fromJson(abiCode, 'DataHighwayMXCMiningToken'),
contractAddr);
// Extracting some functions and events for later use
final claimSignalledPendingEvent = contract.event('ClaimSignalledPending');
final claimsSignalledPendingFunction = contract.function('claimsSignalledPending');
// Check claims Signalled pending amount of DataHighwayMXCMiningToken by calling the appropriate function
List claimsSignalledPendingList = await client.call(
contract: contract,
function: claimsSignalledPendingFunction,
params: [ownAddress]);
claimsSignalledPending = claimsSignalledPendingList.first;
print(
'You have ${claimsSignalledPending} of pending claims of DataHighwayMXCMiningToken after Signalled');
// Listen for the ClaimSignalledPending event when emitted by the contract above
final subscription = client
.events(
FilterOptions.events(contract: contract, event: claimSignalledPendingEvent))
.take(1)
.listen((event) async {
final decoded =
claimSignalledPendingEvent.decodeResults(event.topics, event.data);
final from = decoded[0] as EthereumAddress;
final to = decoded[1] as EthereumAddress;
final value = decoded[2] as BigInt;
if (from == ownAddress || to == ownAddress) {
print(
'$from claimed $value DataHighwayMXCMiningTokens to $to is pending after Signalled');
claimsSignalledPendingList = await client.call(
contract: contract,
function: claimsSignalledPendingFunction,
params: [ownAddress]);
claimsSignalledPending = claimsSignalledPendingList.first;
print(
'You have ${claimsSignalledPending} of pending claims of DataHighwayMXCMiningTokens after Signalled');
}
});
await subscription.asFuture();
await subscription.cancel();
await client.dispose();
return claimsSignalledPending;
}
// Get amount of MXC tokens that have been signalled whose rewards have had their claim approved
Future<BigInt>
getAccountSignalledClaimsApprovedOfMXCAmountFromDataHighwayMXCMiningContract(
String rpcUrl, String wsUrl, EthereumAddress contractAddr,
[String privateKey]) async {
// TODO - move this into singleton
EthereumApi ethereumApi = EthereumApi(rpcUrl: rpcUrl, wsUrl: wsUrl);
Web3Client client = await ethereumApi.connectToWeb3EthereumClient();
EthereumApiAccount ethereumApiAccount = EthereumApiAccount();
EthereumAddress ownAddress = await ethereumApiAccount.getOwnAddress();
print('Ethereum account address ${ownAddress.hex}');
// Read the contract ABI and to inform web3dart of its deployed contractAddr
final abiCode = await rootBundle
.loadString('assets/data/abi_datahighway_mxc_mining_mainnet.json');
final contract = DeployedContract(
ContractAbi.fromJson(abiCode, 'DataHighwayMXCMiningToken'),
contractAddr);
// Extracting some functions and events for later use
final claimSignalledApprovedEvent = contract.event('ClaimSignalledApproved');
final claimsSignalledApprovedFunction = contract.function('claimsSignalledApproved');
// Check claims Signalled approved amount of DataHighwayMXCMiningToken by calling the appropriate function
List claimsSignalledApprovedList = await client.call(
contract: contract,
function: claimsSignalledApprovedFunction,
params: [ownAddress]);
claimsSignalledApproved = claimsSignalledApprovedList.first;
print(
'You have ${claimsSignalledApproved} of approved claims of DataHighwayMXCMiningToken after Signalled');
// Listen for the ClaimSignalledApproved event when emitted by the contract above
final subscription = client
.events(
FilterOptions.events(contract: contract, event: claimSignalledApprovedEvent))
.take(1)
.listen((event) async {
final decoded =
claimSignalledApprovedEvent.decodeResults(event.topics, event.data);
final from = decoded[0] as EthereumAddress;
final to = decoded[1] as EthereumAddress;
final value = decoded[2] as BigInt;
if (from == ownAddress || to == ownAddress) {
print(
'$from claimed $value DataHighwayMXCMiningTokens to $to was approved after Signalled');
claimsSignalledApprovedList = await client.call(
contract: contract,
function: claimsSignalledApprovedFunction,
params: [ownAddress]);
claimsSignalledApproved = claimsSignalledApprovedList.first;
print(
'You have ${claimsSignalledApproved} of approved claims of DataHighwayMXCMiningTokens after Signalled');
}
});
await subscription.asFuture();
await subscription.cancel();
await client.dispose();
return claimsSignalledApproved;
}
// Get amount of MXC tokens that have been signalled whose rewards have had their claim rejected
Future<BigInt>
getAccountSignalledClaimsRejectedOfMXCAmountFromDataHighwayMXCMiningContract(
String rpcUrl, String wsUrl, EthereumAddress contractAddr,
[String privateKey]) async {
// TODO - move this into singleton
EthereumApi ethereumApi = EthereumApi(rpcUrl: rpcUrl, wsUrl: wsUrl);
Web3Client client = await ethereumApi.connectToWeb3EthereumClient();
EthereumApiAccount ethereumApiAccount = EthereumApiAccount();
EthereumAddress ownAddress = await ethereumApiAccount.getOwnAddress();
print('Ethereum account address ${ownAddress.hex}');
// Read the contract ABI and to inform web3dart of its deployed contractAddr
final abiCode = await rootBundle
.loadString('assets/data/abi_datahighway_mxc_mining_mainnet.json');
final contract = DeployedContract(
ContractAbi.fromJson(abiCode, 'DataHighwayMXCMiningToken'),
contractAddr);
// Extracting some functions and events for later use
final claimSignalledRejectedEvent = contract.event('ClaimSignalledRejected');
final claimsSignalledRejectedFunction = contract.function('claimsSignalledRejected');
// Check claims Signalled rejected amount of DataHighwayMXCMiningToken by calling the appropriate function
List claimsSignalledRejectedList = await client.call(
contract: contract,
function: claimsSignalledRejectedFunction,
params: [ownAddress]);
claimsSignalledRejected = claimsSignalledRejectedList.first;
print(
'You have ${claimsSignalledRejected} of rejected claims of DataHighwayMXCMiningToken after Signalled');
// Listen for the ClaimSignalledRejected event when emitted by the contract above
final subscription = client
.events(
FilterOptions.events(contract: contract, event: claimSignalledRejectedEvent))
.take(1)
.listen((event) async {
final decoded =
claimSignalledRejectedEvent.decodeResults(event.topics, event.data);
final from = decoded[0] as EthereumAddress;
final to = decoded[1] as EthereumAddress;
final value = decoded[2] as BigInt;
if (from == ownAddress || to == ownAddress) {
print(
'$from claimed $value DataHighwayMXCMiningTokens to $to was rejected after Signalled');
claimsSignalledRejectedList = await client.call(
contract: contract,
function: claimsSignalledRejectedFunction,
params: [ownAddress]);
claimsSignalledRejected = claimsSignalledRejectedList.first;
print(
'You have ${claimsSignalledRejected} of rejected claims of DataHighwayMXCMiningTokens after Signalled');
}
});
await subscription.asFuture();
await subscription.cancel();
await client.dispose();
return claimsSignalledRejected;
}
// Get amount of MXC tokens that have been locked
Future<BigInt> getAccountLockedMXCAmountFromDataHighwayMXCMiningContract(
String rpcUrl, String wsUrl, EthereumAddress contractAddr,
[String privateKey]) async {
// TODO - move this into singleton
EthereumApi ethereumApi = EthereumApi(rpcUrl: rpcUrl, wsUrl: wsUrl);
Web3Client client = await ethereumApi.connectToWeb3EthereumClient();
EthereumApiAccount ethereumApiAccount = EthereumApiAccount();
EthereumAddress ownAddress = await ethereumApiAccount.getOwnAddress();
print('Ethereum account address ${ownAddress.hex}');
// Read the contract ABI and to inform web3dart of its deployed contractAddr
final abiCode = await rootBundle
.loadString('assets/data/abi_datahighway_mxc_mining_mainnet.json');
final contract = DeployedContract(
ContractAbi.fromJson(abiCode, 'DataHighwayMXCMiningToken'),
contractAddr);
// Extracting some functions and events for later use
final lockedEvent = contract.event('Locked');
final lockFunction = contract.function('lock');
// Check locked amount of DataHighwayMXCMiningToken by calling the appropriate function
List lockedList = await client
.call(contract: contract, function: lockFunction, params: [ownAddress]);
locked = lockedList.first;
print('You have ${locked} DataHighwayMXCMiningToken');
// Listen for the Locked event when emitted by the contract above
final subscription = client
.events(FilterOptions.events(contract: contract, event: lockedEvent))
.take(1)
.listen((event) async {
final decoded = lockedEvent.decodeResults(event.topics, event.data);
final from = decoded[0] as EthereumAddress;
final to = decoded[1] as EthereumAddress;
final value = decoded[2] as BigInt;
if (from == ownAddress || to == ownAddress) {
print('$from locked $value DataHighwayMXCMiningTokens to $to');
lockedList = await client.call(
contract: contract, function: lockFunction, params: [ownAddress]);
locked = lockedList.first;
print('You have ${locked} DataHighwayMXCMiningTokens');
}
});
await subscription.asFuture();
await subscription.cancel();
await client.dispose();
return locked;
}
// Get amount of MXC tokens that have been locked
// whose rewards have been claimed and pending approval
Future<BigInt>
getAccountLockedClaimsPendingOfMXCAmountFromDataHighwayMXCMiningContract(
String rpcUrl, String wsUrl, EthereumAddress contractAddr,
[String privateKey]) async {
// TODO - move this into singleton
EthereumApi ethereumApi = EthereumApi(rpcUrl: rpcUrl, wsUrl: wsUrl);
Web3Client client = await ethereumApi.connectToWeb3EthereumClient();
EthereumApiAccount ethereumApiAccount = EthereumApiAccount();
EthereumAddress ownAddress = await ethereumApiAccount.getOwnAddress();
print('Ethereum account address ${ownAddress.hex}');
// Read the contract ABI and to inform web3dart of its deployed contractAddr
final abiCode = await rootBundle
.loadString('assets/data/abi_datahighway_mxc_mining_mainnet.json');
final contract = DeployedContract(
ContractAbi.fromJson(abiCode, 'DataHighwayMXCMiningToken'),
contractAddr);
// Extracting some functions and events for later use
final claimLockedPendingEvent = contract.event('ClaimLockedPending');
final claimsLockedPendingFunction = contract.function('claimsLockedPending');
// Check claims Locked pending amount of DataHighwayMXCMiningToken by calling the appropriate function
List claimsLockedPendingList = await client.call(
contract: contract,
function: claimsLockedPendingFunction,
params: [ownAddress]);
claimsLockedPending = claimsLockedPendingList.first;
print(
'You have ${claimsLockedPending} of pending claims of DataHighwayMXCMiningToken after Locked');
// Listen for the ClaimLockedPending event when emitted by the contract above
final subscription = client
.events(
FilterOptions.events(contract: contract, event: claimLockedPendingEvent))
.take(1)
.listen((event) async {
final decoded =
claimLockedPendingEvent.decodeResults(event.topics, event.data);
final from = decoded[0] as EthereumAddress;
final to = decoded[1] as EthereumAddress;
final value = decoded[2] as BigInt;
if (from == ownAddress || to == ownAddress) {
print(
'$from claimed $value DataHighwayMXCMiningTokens to $to is pending after Locked');
claimsLockedPendingList = await client.call(
contract: contract,
function: claimsLockedPendingFunction,
params: [ownAddress]);
claimsLockedPending = claimsLockedPendingList.first;
print(
'You have ${claimsLockedPending} of pending claims of DataHighwayMXCMiningTokens after Locked');
}
});
await subscription.asFuture();
await subscription.cancel();
await client.dispose();
return claimsLockedPending;
}
// Get amount of MXC tokens that have been locked whose rewards have had their claim approved
Future<BigInt>
getAccountLockedClaimsApprovedOfMXCAmountFromDataHighwayMXCMiningContract(
String rpcUrl, String wsUrl, EthereumAddress contractAddr,
[String privateKey]) async {
// TODO - move this into singleton
EthereumApi ethereumApi = EthereumApi(rpcUrl: rpcUrl, wsUrl: wsUrl);
Web3Client client = await ethereumApi.connectToWeb3EthereumClient();
EthereumApiAccount ethereumApiAccount = EthereumApiAccount();
EthereumAddress ownAddress = await ethereumApiAccount.getOwnAddress();
print('Ethereum account address ${ownAddress.hex}');
// Read the contract ABI and to inform web3dart of its deployed contractAddr
final abiCode = await rootBundle
.loadString('assets/data/abi_datahighway_mxc_mining_mainnet.json');
final contract = DeployedContract(
ContractAbi.fromJson(abiCode, 'DataHighwayMXCMiningToken'),
contractAddr);
// Extracting some functions and events for later use
final claimLockedApprovedEvent = contract.event('ClaimLockedApproved');
final claimsLockedApprovedFunction = contract.function('claimsLockedApproved');
// Check claims Locked approved amount of DataHighwayMXCMiningToken by calling the appropriate function
List claimsLockedApprovedList = await client.call(
contract: contract,
function: claimsLockedApprovedFunction,
params: [ownAddress]);
claimsLockedApproved = claimsLockedApprovedList.first;
print(
'You have ${claimsLockedApproved} of approved claims of DataHighwayMXCMiningToken after Locked');
// Listen for the ClaimLockedApproved event when emitted by the contract above
final subscription = client
.events(
FilterOptions.events(contract: contract, event: claimLockedApprovedEvent))
.take(1)
.listen((event) async {
final decoded =
claimLockedApprovedEvent.decodeResults(event.topics, event.data);
final from = decoded[0] as EthereumAddress;
final to = decoded[1] as EthereumAddress;
final value = decoded[2] as BigInt;
if (from == ownAddress || to == ownAddress) {
print(
'$from claimed $value DataHighwayMXCMiningTokens to $to was approved after Locked');
claimsLockedApprovedList = await client.call(
contract: contract,
function: claimsLockedApprovedFunction,
params: [ownAddress]);
claimsLockedApproved = claimsLockedApprovedList.first;
print(
'You have ${claimsLockedApproved} of approved claims of DataHighwayMXCMiningTokens after Locked');
}
});
await subscription.asFuture();
await subscription.cancel();
await client.dispose();
return claimsLockedApproved;
}
// Get amount of MXC tokens that have been locked whose rewards have had their claim rejected
Future<BigInt>
getAccountLockedClaimsRejectedOfMXCAmountFromDataHighwayMXCMiningContract(
String rpcUrl, String wsUrl, EthereumAddress contractAddr,
[String privateKey]) async {
// TODO - move this into singleton
EthereumApi ethereumApi = EthereumApi(rpcUrl: rpcUrl, wsUrl: wsUrl);
Web3Client client = await ethereumApi.connectToWeb3EthereumClient();
EthereumApiAccount ethereumApiAccount = EthereumApiAccount();
EthereumAddress ownAddress = await ethereumApiAccount.getOwnAddress();
print('Ethereum account address ${ownAddress.hex}');
// Read the contract ABI and to inform web3dart of its deployed contractAddr
final abiCode = await rootBundle
.loadString('assets/data/abi_datahighway_mxc_mining_mainnet.json');
final contract = DeployedContract(
ContractAbi.fromJson(abiCode, 'DataHighwayMXCMiningToken'),
contractAddr);
// Extracting some functions and events for later use
final claimLockedRejectedEvent = contract.event('ClaimLockedRejected');
final claimsLockedRejectedFunction = contract.function('claimsLockedRejected');
// Check claims Locked rejected amount of DataHighwayMXCMiningToken by calling the appropriate function
List claimsLockedRejectedList = await client.call(
contract: contract,
function: claimsLockedRejectedFunction,
params: [ownAddress]);
claimsLockedRejected = claimsLockedRejectedList.first;
print(
'You have ${claimsLockedRejected} of rejected claims of DataHighwayMXCMiningToken after Locked');
// Listen for the ClaimLockedRejected event when emitted by the contract above
final subscription = client
.events(
FilterOptions.events(contract: contract, event: claimLockedRejectedEvent))
.take(1)
.listen((event) async {
final decoded =
claimLockedRejectedEvent.decodeResults(event.topics, event.data);
final from = decoded[0] as EthereumAddress;
final to = decoded[1] as EthereumAddress;
final value = decoded[2] as BigInt;
if (from == ownAddress || to == ownAddress) {
print(
'$from claimed $value DataHighwayMXCMiningTokens to $to was rejected after Locked');
claimsLockedRejectedList = await client.call(
contract: contract,
function: claimsLockedRejectedFunction,
params: [ownAddress]);
claimsLockedRejected = claimsLockedRejectedList.first;
print(
'You have ${claimsLockedRejected} of rejected claims of DataHighwayMXCMiningTokens after Locked');
}
});
await subscription.asFuture();
await subscription.cancel();
await client.dispose();
return claimsLockedRejected;
}
}