@nexusmutual/sdk 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/.github/workflows/merge-master.yml +124 -0
  2. package/.github/workflows/pull_request.yml +62 -0
  3. package/README.md +32 -0
  4. package/dist/contracts/abis/Assessment.json +700 -0
  5. package/dist/contracts/abis/Cover.json +1258 -0
  6. package/dist/contracts/abis/CoverMigrator.json +189 -0
  7. package/dist/contracts/abis/CoverNFT.json +498 -0
  8. package/dist/contracts/abis/CoverNFTDescriptor.json +200 -0
  9. package/dist/contracts/abis/CoverViewer.json +124 -0
  10. package/dist/contracts/abis/EACAggregatorProxy.json +58 -0
  11. package/dist/contracts/abis/ERC20.json +364 -0
  12. package/dist/contracts/abis/Governance.json +975 -0
  13. package/dist/contracts/abis/IndividualClaims.json +528 -0
  14. package/dist/contracts/abis/LegacyClaimProofs.json +64 -0
  15. package/dist/contracts/abis/LegacyClaimsData.json +1912 -0
  16. package/dist/contracts/abis/LegacyClaimsReward.json +179 -0
  17. package/dist/contracts/abis/LegacyGateway.json +542 -0
  18. package/dist/contracts/abis/LegacyPooledStaking.json +1320 -0
  19. package/dist/contracts/abis/LegacyQuotationData.json +1121 -0
  20. package/dist/contracts/abis/MCR.json +326 -0
  21. package/dist/contracts/abis/MemberRoles.json +681 -0
  22. package/dist/contracts/abis/NXMToken.json +498 -0
  23. package/dist/contracts/abis/NXMaster.json +501 -0
  24. package/dist/contracts/abis/Pool.json +928 -0
  25. package/dist/contracts/abis/PriceFeedOracle.json +122 -0
  26. package/dist/contracts/abis/ProductsV1.json +21 -0
  27. package/dist/contracts/abis/ProposalCategory.json +550 -0
  28. package/dist/contracts/abis/StakingNFT.json +569 -0
  29. package/dist/contracts/abis/StakingNFTDescriptor.json +222 -0
  30. package/dist/contracts/abis/StakingPool.json +1433 -0
  31. package/dist/contracts/abis/StakingPoolFactory.json +108 -0
  32. package/dist/contracts/abis/StakingProducts.json +885 -0
  33. package/dist/contracts/abis/StakingViewer.json +777 -0
  34. package/dist/contracts/abis/SwapOperator.json +754 -0
  35. package/dist/contracts/abis/TokenController.json +1024 -0
  36. package/dist/contracts/abis/YieldTokenIncidents.json +438 -0
  37. package/dist/contracts/abis/index.js +69 -0
  38. package/dist/contracts/addresses.json +35 -0
  39. package/dist/index.d.ts +5 -0
  40. package/dist/index.js +13 -0
  41. package/dist/products/product-logos.json +103 -0
  42. package/dist/products/product-types.json +58 -0
  43. package/dist/products/products.json +1414 -0
  44. package/package.json +50 -0
@@ -0,0 +1,1912 @@
1
+ [
2
+ {
3
+ "type": "event",
4
+ "anonymous": false,
5
+ "name": "ClaimRaise",
6
+ "inputs": [
7
+ {
8
+ "type": "uint256",
9
+ "name": "coverId",
10
+ "indexed": true
11
+ },
12
+ {
13
+ "type": "address",
14
+ "name": "userAddress",
15
+ "indexed": true
16
+ },
17
+ {
18
+ "type": "uint256",
19
+ "name": "claimId",
20
+ "indexed": false
21
+ },
22
+ {
23
+ "type": "uint256",
24
+ "name": "dateSubmit",
25
+ "indexed": false
26
+ }
27
+ ]
28
+ },
29
+ {
30
+ "type": "event",
31
+ "anonymous": false,
32
+ "name": "VoteCast",
33
+ "inputs": [
34
+ {
35
+ "type": "address",
36
+ "name": "userAddress",
37
+ "indexed": true
38
+ },
39
+ {
40
+ "type": "uint256",
41
+ "name": "claimId",
42
+ "indexed": true
43
+ },
44
+ {
45
+ "type": "bytes4",
46
+ "name": "typeOf",
47
+ "indexed": true
48
+ },
49
+ {
50
+ "type": "uint256",
51
+ "name": "tokens",
52
+ "indexed": false
53
+ },
54
+ {
55
+ "type": "uint256",
56
+ "name": "submitDate",
57
+ "indexed": false
58
+ },
59
+ {
60
+ "type": "int8",
61
+ "name": "verdict",
62
+ "indexed": false
63
+ }
64
+ ]
65
+ },
66
+ {
67
+ "type": "function",
68
+ "name": "actualClaimLength",
69
+ "constant": true,
70
+ "stateMutability": "view",
71
+ "payable": false,
72
+
73
+ "inputs": [],
74
+ "outputs": [
75
+ {
76
+ "type": "uint256",
77
+ "name": "len"
78
+ }
79
+ ]
80
+ },
81
+ {
82
+ "type": "function",
83
+ "name": "addClaim",
84
+ "constant": false,
85
+ "payable": false,
86
+
87
+ "inputs": [
88
+ {
89
+ "type": "uint256",
90
+ "name": "_claimId"
91
+ },
92
+ {
93
+ "type": "uint256",
94
+ "name": "_coverId"
95
+ },
96
+ {
97
+ "type": "address",
98
+ "name": "_from"
99
+ },
100
+ {
101
+ "type": "uint256",
102
+ "name": "_nowtime"
103
+ }
104
+ ],
105
+ "outputs": []
106
+ },
107
+ {
108
+ "type": "function",
109
+ "name": "addClaimVoteCA",
110
+ "constant": false,
111
+ "payable": false,
112
+
113
+ "inputs": [
114
+ {
115
+ "type": "uint256",
116
+ "name": "_claimId"
117
+ },
118
+ {
119
+ "type": "uint256",
120
+ "name": "_voteid"
121
+ }
122
+ ],
123
+ "outputs": []
124
+ },
125
+ {
126
+ "type": "function",
127
+ "name": "addClaimVotemember",
128
+ "constant": false,
129
+ "payable": false,
130
+
131
+ "inputs": [
132
+ {
133
+ "type": "uint256",
134
+ "name": "_claimId"
135
+ },
136
+ {
137
+ "type": "uint256",
138
+ "name": "_voteid"
139
+ }
140
+ ],
141
+ "outputs": []
142
+ },
143
+ {
144
+ "type": "function",
145
+ "name": "addMockClaim",
146
+ "constant": false,
147
+ "payable": false,
148
+
149
+ "inputs": [
150
+ {
151
+ "type": "uint256",
152
+ "name": "claimId"
153
+ },
154
+ {
155
+ "type": "uint256",
156
+ "name": "coverId"
157
+ },
158
+ {
159
+ "type": "address",
160
+ "name": "coverOwner"
161
+ },
162
+ {
163
+ "type": "uint256",
164
+ "name": "timestamp"
165
+ }
166
+ ],
167
+ "outputs": []
168
+ },
169
+ {
170
+ "type": "function",
171
+ "name": "addVote",
172
+ "constant": false,
173
+ "payable": false,
174
+
175
+ "inputs": [
176
+ {
177
+ "type": "address",
178
+ "name": "_voter"
179
+ },
180
+ {
181
+ "type": "uint256",
182
+ "name": "_tokens"
183
+ },
184
+ {
185
+ "type": "uint256",
186
+ "name": "claimId"
187
+ },
188
+ {
189
+ "type": "int8",
190
+ "name": "_verdict"
191
+ }
192
+ ],
193
+ "outputs": []
194
+ },
195
+ {
196
+ "type": "function",
197
+ "name": "callClaimEvent",
198
+ "constant": false,
199
+ "payable": false,
200
+
201
+ "inputs": [
202
+ {
203
+ "type": "uint256",
204
+ "name": "_coverId"
205
+ },
206
+ {
207
+ "type": "address",
208
+ "name": "_userAddress"
209
+ },
210
+ {
211
+ "type": "uint256",
212
+ "name": "_claimId"
213
+ },
214
+ {
215
+ "type": "uint256",
216
+ "name": "_datesubmit"
217
+ }
218
+ ],
219
+ "outputs": []
220
+ },
221
+ {
222
+ "type": "function",
223
+ "name": "callVoteEvent",
224
+ "constant": false,
225
+ "payable": false,
226
+
227
+ "inputs": [
228
+ {
229
+ "type": "address",
230
+ "name": "_userAddress"
231
+ },
232
+ {
233
+ "type": "uint256",
234
+ "name": "_claimId"
235
+ },
236
+ {
237
+ "type": "bytes4",
238
+ "name": "_typeOf"
239
+ },
240
+ {
241
+ "type": "uint256",
242
+ "name": "_tokens"
243
+ },
244
+ {
245
+ "type": "uint256",
246
+ "name": "_submitDate"
247
+ },
248
+ {
249
+ "type": "int8",
250
+ "name": "_verdict"
251
+ }
252
+ ],
253
+ "outputs": []
254
+ },
255
+ {
256
+ "type": "function",
257
+ "name": "changeDependentContractAddress",
258
+ "constant": false,
259
+ "payable": false,
260
+
261
+ "inputs": [],
262
+ "outputs": []
263
+ },
264
+ {
265
+ "type": "function",
266
+ "name": "changeFinalVerdict",
267
+ "constant": false,
268
+ "payable": false,
269
+
270
+ "inputs": [
271
+ {
272
+ "type": "uint256",
273
+ "name": "_claimId"
274
+ },
275
+ {
276
+ "type": "int8",
277
+ "name": "_verdict"
278
+ }
279
+ ],
280
+ "outputs": []
281
+ },
282
+ {
283
+ "type": "function",
284
+ "name": "changeMasterAddress",
285
+ "constant": false,
286
+ "payable": false,
287
+
288
+ "inputs": [
289
+ {
290
+ "type": "address",
291
+ "name": "_masterAddress"
292
+ }
293
+ ],
294
+ "outputs": []
295
+ },
296
+ {
297
+ "type": "function",
298
+ "name": "claimDepositTime",
299
+ "constant": true,
300
+ "stateMutability": "view",
301
+ "payable": false,
302
+
303
+ "inputs": [],
304
+ "outputs": [
305
+ {
306
+ "type": "uint256"
307
+ }
308
+ ]
309
+ },
310
+ {
311
+ "type": "function",
312
+ "name": "claimRewardPerc",
313
+ "constant": true,
314
+ "stateMutability": "view",
315
+ "payable": false,
316
+
317
+ "inputs": [],
318
+ "outputs": [
319
+ {
320
+ "type": "uint256"
321
+ }
322
+ ]
323
+ },
324
+ {
325
+ "type": "function",
326
+ "name": "getAllClaimsByAddress",
327
+ "constant": true,
328
+ "stateMutability": "view",
329
+ "payable": false,
330
+
331
+ "inputs": [
332
+ {
333
+ "type": "address",
334
+ "name": "_member"
335
+ }
336
+ ],
337
+ "outputs": [
338
+ {
339
+ "type": "uint256[]",
340
+ "name": "claimarr"
341
+ }
342
+ ]
343
+ },
344
+ {
345
+ "type": "function",
346
+ "name": "getAllClaimsByIndex",
347
+ "constant": true,
348
+ "stateMutability": "view",
349
+ "payable": false,
350
+
351
+ "inputs": [
352
+ {
353
+ "type": "uint256",
354
+ "name": "_claimId"
355
+ }
356
+ ],
357
+ "outputs": [
358
+ {
359
+ "type": "uint256",
360
+ "name": "coverId"
361
+ },
362
+ {
363
+ "type": "int8",
364
+ "name": "vote"
365
+ },
366
+ {
367
+ "type": "uint256",
368
+ "name": "status"
369
+ },
370
+ {
371
+ "type": "uint256",
372
+ "name": "dateUpd"
373
+ },
374
+ {
375
+ "type": "uint256",
376
+ "name": "state12Count"
377
+ }
378
+ ]
379
+ },
380
+ {
381
+ "type": "function",
382
+ "name": "getAllVoteLength",
383
+ "constant": true,
384
+ "stateMutability": "view",
385
+ "payable": false,
386
+
387
+ "inputs": [],
388
+ "outputs": [
389
+ {
390
+ "type": "uint256",
391
+ "name": "voteCount"
392
+ }
393
+ ]
394
+ },
395
+ {
396
+ "type": "function",
397
+ "name": "getAllVotesForClaim",
398
+ "constant": true,
399
+ "stateMutability": "view",
400
+ "payable": false,
401
+
402
+ "inputs": [
403
+ {
404
+ "type": "uint256",
405
+ "name": "_claimId"
406
+ }
407
+ ],
408
+ "outputs": [
409
+ {
410
+ "type": "uint256",
411
+ "name": "claimId"
412
+ },
413
+ {
414
+ "type": "uint256[]",
415
+ "name": "ca"
416
+ },
417
+ {
418
+ "type": "uint256[]",
419
+ "name": "mv"
420
+ }
421
+ ]
422
+ },
423
+ {
424
+ "type": "function",
425
+ "name": "getCaClaimVotesToken",
426
+ "constant": true,
427
+ "stateMutability": "view",
428
+ "payable": false,
429
+
430
+ "inputs": [
431
+ {
432
+ "type": "uint256",
433
+ "name": "_claimId"
434
+ }
435
+ ],
436
+ "outputs": [
437
+ {
438
+ "type": "uint256",
439
+ "name": "claimId"
440
+ },
441
+ {
442
+ "type": "uint256",
443
+ "name": "cnt"
444
+ }
445
+ ]
446
+ },
447
+ {
448
+ "type": "function",
449
+ "name": "getClaim",
450
+ "constant": true,
451
+ "stateMutability": "view",
452
+ "payable": false,
453
+
454
+ "inputs": [
455
+ {
456
+ "type": "uint256",
457
+ "name": "_claimId"
458
+ }
459
+ ],
460
+ "outputs": [
461
+ {
462
+ "type": "uint256",
463
+ "name": "claimId"
464
+ },
465
+ {
466
+ "type": "uint256",
467
+ "name": "coverId"
468
+ },
469
+ {
470
+ "type": "int8",
471
+ "name": "vote"
472
+ },
473
+ {
474
+ "type": "uint256",
475
+ "name": "status"
476
+ },
477
+ {
478
+ "type": "uint256",
479
+ "name": "dateUpd"
480
+ },
481
+ {
482
+ "type": "uint256",
483
+ "name": "state12Count"
484
+ }
485
+ ]
486
+ },
487
+ {
488
+ "type": "function",
489
+ "name": "getClaimCoverId",
490
+ "constant": true,
491
+ "stateMutability": "view",
492
+ "payable": false,
493
+
494
+ "inputs": [
495
+ {
496
+ "type": "uint256",
497
+ "name": "_claimId"
498
+ }
499
+ ],
500
+ "outputs": [
501
+ {
502
+ "type": "uint256",
503
+ "name": "claimId"
504
+ },
505
+ {
506
+ "type": "uint256",
507
+ "name": "coverid"
508
+ }
509
+ ]
510
+ },
511
+ {
512
+ "type": "function",
513
+ "name": "getClaimDateUpd",
514
+ "constant": true,
515
+ "stateMutability": "view",
516
+ "payable": false,
517
+
518
+ "inputs": [
519
+ {
520
+ "type": "uint256",
521
+ "name": "_claimId"
522
+ }
523
+ ],
524
+ "outputs": [
525
+ {
526
+ "type": "uint256",
527
+ "name": "dateupd"
528
+ }
529
+ ]
530
+ },
531
+ {
532
+ "type": "function",
533
+ "name": "getClaimFromNewStart",
534
+ "constant": true,
535
+ "stateMutability": "view",
536
+ "payable": false,
537
+
538
+ "inputs": [
539
+ {
540
+ "type": "uint256",
541
+ "name": "_index"
542
+ },
543
+ {
544
+ "type": "address",
545
+ "name": "_add"
546
+ }
547
+ ],
548
+ "outputs": [
549
+ {
550
+ "type": "uint256",
551
+ "name": "coverid"
552
+ },
553
+ {
554
+ "type": "uint256",
555
+ "name": "claimId"
556
+ },
557
+ {
558
+ "type": "int8",
559
+ "name": "voteCA"
560
+ },
561
+ {
562
+ "type": "int8",
563
+ "name": "voteMV"
564
+ },
565
+ {
566
+ "type": "uint256",
567
+ "name": "statusnumber"
568
+ }
569
+ ]
570
+ },
571
+ {
572
+ "type": "function",
573
+ "name": "getClaimLength",
574
+ "constant": true,
575
+ "stateMutability": "view",
576
+ "payable": false,
577
+
578
+ "inputs": [],
579
+ "outputs": [
580
+ {
581
+ "type": "uint256",
582
+ "name": "len"
583
+ }
584
+ ]
585
+ },
586
+ {
587
+ "type": "function",
588
+ "name": "getClaimMVote",
589
+ "constant": true,
590
+ "stateMutability": "view",
591
+ "payable": false,
592
+
593
+ "inputs": [
594
+ {
595
+ "type": "uint256",
596
+ "name": "_claimId"
597
+ },
598
+ {
599
+ "type": "int8",
600
+ "name": "_verdict"
601
+ }
602
+ ],
603
+ "outputs": [
604
+ {
605
+ "type": "uint256",
606
+ "name": "claimId"
607
+ },
608
+ {
609
+ "type": "uint256",
610
+ "name": "token"
611
+ }
612
+ ]
613
+ },
614
+ {
615
+ "type": "function",
616
+ "name": "getClaimOfEmergencyPauseByIndex",
617
+ "constant": true,
618
+ "stateMutability": "view",
619
+ "payable": false,
620
+
621
+ "inputs": [
622
+ {
623
+ "type": "uint256",
624
+ "name": "_index"
625
+ }
626
+ ],
627
+ "outputs": [
628
+ {
629
+ "type": "uint256",
630
+ "name": "coverId"
631
+ },
632
+ {
633
+ "type": "uint256",
634
+ "name": "dateUpd"
635
+ },
636
+ {
637
+ "type": "bool",
638
+ "name": "submit"
639
+ }
640
+ ]
641
+ },
642
+ {
643
+ "type": "function",
644
+ "name": "getClaimRewardDetail",
645
+ "constant": true,
646
+ "stateMutability": "view",
647
+ "payable": false,
648
+
649
+ "inputs": [
650
+ {
651
+ "type": "uint256",
652
+ "name": "claimid"
653
+ }
654
+ ],
655
+ "outputs": [
656
+ {
657
+ "type": "uint256",
658
+ "name": "percCA"
659
+ },
660
+ {
661
+ "type": "uint256",
662
+ "name": "percMV"
663
+ },
664
+ {
665
+ "type": "uint256",
666
+ "name": "tokens"
667
+ }
668
+ ]
669
+ },
670
+ {
671
+ "type": "function",
672
+ "name": "getClaimState12Count",
673
+ "constant": true,
674
+ "stateMutability": "view",
675
+ "payable": false,
676
+
677
+ "inputs": [
678
+ {
679
+ "type": "uint256",
680
+ "name": "_claimId"
681
+ }
682
+ ],
683
+ "outputs": [
684
+ {
685
+ "type": "uint256",
686
+ "name": "num"
687
+ }
688
+ ]
689
+ },
690
+ {
691
+ "type": "function",
692
+ "name": "getClaimStatusNumber",
693
+ "constant": true,
694
+ "stateMutability": "view",
695
+ "payable": false,
696
+
697
+ "inputs": [
698
+ {
699
+ "type": "uint256",
700
+ "name": "_claimId"
701
+ }
702
+ ],
703
+ "outputs": [
704
+ {
705
+ "type": "uint256",
706
+ "name": "claimId"
707
+ },
708
+ {
709
+ "type": "uint256",
710
+ "name": "statno"
711
+ }
712
+ ]
713
+ },
714
+ {
715
+ "type": "function",
716
+ "name": "getClaimVote",
717
+ "constant": true,
718
+ "stateMutability": "view",
719
+ "payable": false,
720
+
721
+ "inputs": [
722
+ {
723
+ "type": "uint256",
724
+ "name": "_claimId"
725
+ },
726
+ {
727
+ "type": "int8",
728
+ "name": "_verdict"
729
+ }
730
+ ],
731
+ "outputs": [
732
+ {
733
+ "type": "uint256",
734
+ "name": "claimId"
735
+ },
736
+ {
737
+ "type": "uint256",
738
+ "name": "token"
739
+ }
740
+ ]
741
+ },
742
+ {
743
+ "type": "function",
744
+ "name": "getClaimVoteLength",
745
+ "constant": true,
746
+ "stateMutability": "view",
747
+ "payable": false,
748
+
749
+ "inputs": [
750
+ {
751
+ "type": "uint256",
752
+ "name": "_claimId"
753
+ },
754
+ {
755
+ "type": "uint8",
756
+ "name": "_ca"
757
+ }
758
+ ],
759
+ "outputs": [
760
+ {
761
+ "type": "uint256",
762
+ "name": "claimId"
763
+ },
764
+ {
765
+ "type": "uint256",
766
+ "name": "len"
767
+ }
768
+ ]
769
+ },
770
+ {
771
+ "type": "function",
772
+ "name": "getClaimsTokenCA",
773
+ "constant": true,
774
+ "stateMutability": "view",
775
+ "payable": false,
776
+
777
+ "inputs": [
778
+ {
779
+ "type": "uint256",
780
+ "name": "_claimId"
781
+ }
782
+ ],
783
+ "outputs": [
784
+ {
785
+ "type": "uint256",
786
+ "name": "claimId"
787
+ },
788
+ {
789
+ "type": "uint256",
790
+ "name": "accept"
791
+ },
792
+ {
793
+ "type": "uint256",
794
+ "name": "deny"
795
+ }
796
+ ]
797
+ },
798
+ {
799
+ "type": "function",
800
+ "name": "getClaimsTokenMV",
801
+ "constant": true,
802
+ "stateMutability": "view",
803
+ "payable": false,
804
+
805
+ "inputs": [
806
+ {
807
+ "type": "uint256",
808
+ "name": "_claimId"
809
+ }
810
+ ],
811
+ "outputs": [
812
+ {
813
+ "type": "uint256",
814
+ "name": "claimId"
815
+ },
816
+ {
817
+ "type": "uint256",
818
+ "name": "accept"
819
+ },
820
+ {
821
+ "type": "uint256",
822
+ "name": "deny"
823
+ }
824
+ ]
825
+ },
826
+ {
827
+ "type": "function",
828
+ "name": "getFinalVerdict",
829
+ "constant": true,
830
+ "stateMutability": "view",
831
+ "payable": false,
832
+
833
+ "inputs": [
834
+ {
835
+ "type": "uint256",
836
+ "name": "_claimId"
837
+ }
838
+ ],
839
+ "outputs": [
840
+ {
841
+ "type": "int8",
842
+ "name": "verdict"
843
+ }
844
+ ]
845
+ },
846
+ {
847
+ "type": "function",
848
+ "name": "getFirstClaimIndexToStartVotingAfterEP",
849
+ "constant": true,
850
+ "stateMutability": "view",
851
+ "payable": false,
852
+
853
+ "inputs": [],
854
+ "outputs": [
855
+ {
856
+ "type": "uint256",
857
+ "name": "firstindex"
858
+ }
859
+ ]
860
+ },
861
+ {
862
+ "type": "function",
863
+ "name": "getFirstClaimIndexToSubmitAfterEP",
864
+ "constant": true,
865
+ "stateMutability": "view",
866
+ "payable": false,
867
+
868
+ "inputs": [],
869
+ "outputs": [
870
+ {
871
+ "type": "uint256",
872
+ "name": "indexToSubmit"
873
+ }
874
+ ]
875
+ },
876
+ {
877
+ "type": "function",
878
+ "name": "getLengthOfClaimSubmittedAtEP",
879
+ "constant": true,
880
+ "stateMutability": "view",
881
+ "payable": false,
882
+
883
+ "inputs": [],
884
+ "outputs": [
885
+ {
886
+ "type": "uint256",
887
+ "name": "len"
888
+ }
889
+ ]
890
+ },
891
+ {
892
+ "type": "function",
893
+ "name": "getLengthOfClaimVotingPause",
894
+ "constant": true,
895
+ "stateMutability": "view",
896
+ "payable": false,
897
+
898
+ "inputs": [],
899
+ "outputs": [
900
+ {
901
+ "type": "uint256",
902
+ "name": "len"
903
+ }
904
+ ]
905
+ },
906
+ {
907
+ "type": "function",
908
+ "name": "getMemberClaimVotesToken",
909
+ "constant": true,
910
+ "stateMutability": "view",
911
+ "payable": false,
912
+
913
+ "inputs": [
914
+ {
915
+ "type": "uint256",
916
+ "name": "_claimId"
917
+ }
918
+ ],
919
+ "outputs": [
920
+ {
921
+ "type": "uint256",
922
+ "name": "claimId"
923
+ },
924
+ {
925
+ "type": "uint256",
926
+ "name": "cnt"
927
+ }
928
+ ]
929
+ },
930
+ {
931
+ "type": "function",
932
+ "name": "getPendingClaimDetailsByIndex",
933
+ "constant": true,
934
+ "stateMutability": "view",
935
+ "payable": false,
936
+
937
+ "inputs": [
938
+ {
939
+ "type": "uint256",
940
+ "name": "_index"
941
+ }
942
+ ],
943
+ "outputs": [
944
+ {
945
+ "type": "uint256",
946
+ "name": "claimId"
947
+ },
948
+ {
949
+ "type": "uint256",
950
+ "name": "pendingTime"
951
+ },
952
+ {
953
+ "type": "bool",
954
+ "name": "voting"
955
+ }
956
+ ]
957
+ },
958
+ {
959
+ "type": "function",
960
+ "name": "getRewardDistributedIndex",
961
+ "constant": true,
962
+ "stateMutability": "view",
963
+ "payable": false,
964
+
965
+ "inputs": [
966
+ {
967
+ "type": "address",
968
+ "name": "_voter"
969
+ }
970
+ ],
971
+ "outputs": [
972
+ {
973
+ "type": "uint256",
974
+ "name": "lastCAvoteIndex"
975
+ },
976
+ {
977
+ "type": "uint256",
978
+ "name": "lastMVvoteIndex"
979
+ }
980
+ ]
981
+ },
982
+ {
983
+ "type": "function",
984
+ "name": "getRewardStatus",
985
+ "constant": true,
986
+ "stateMutability": "view",
987
+ "payable": false,
988
+
989
+ "inputs": [
990
+ {
991
+ "type": "uint256",
992
+ "name": "statusNumber"
993
+ }
994
+ ],
995
+ "outputs": [
996
+ {
997
+ "type": "uint256",
998
+ "name": "percCA"
999
+ },
1000
+ {
1001
+ "type": "uint256",
1002
+ "name": "percMV"
1003
+ }
1004
+ ]
1005
+ },
1006
+ {
1007
+ "type": "function",
1008
+ "name": "getTokensClaim",
1009
+ "constant": true,
1010
+ "stateMutability": "view",
1011
+ "payable": false,
1012
+
1013
+ "inputs": [
1014
+ {
1015
+ "type": "address",
1016
+ "name": "_of"
1017
+ },
1018
+ {
1019
+ "type": "uint256",
1020
+ "name": "_claimId"
1021
+ }
1022
+ ],
1023
+ "outputs": [
1024
+ {
1025
+ "type": "uint256",
1026
+ "name": "claimId"
1027
+ },
1028
+ {
1029
+ "type": "uint256",
1030
+ "name": "tokens"
1031
+ }
1032
+ ]
1033
+ },
1034
+ {
1035
+ "type": "function",
1036
+ "name": "getUintParameters",
1037
+ "constant": true,
1038
+ "stateMutability": "view",
1039
+ "payable": false,
1040
+
1041
+ "inputs": [
1042
+ {
1043
+ "type": "bytes8",
1044
+ "name": "code"
1045
+ }
1046
+ ],
1047
+ "outputs": [
1048
+ {
1049
+ "type": "bytes8",
1050
+ "name": "codeVal"
1051
+ },
1052
+ {
1053
+ "type": "uint256",
1054
+ "name": "val"
1055
+ }
1056
+ ]
1057
+ },
1058
+ {
1059
+ "type": "function",
1060
+ "name": "getUserClaimByIndex",
1061
+ "constant": true,
1062
+ "stateMutability": "view",
1063
+ "payable": false,
1064
+
1065
+ "inputs": [
1066
+ {
1067
+ "type": "uint256",
1068
+ "name": "_index"
1069
+ },
1070
+ {
1071
+ "type": "address",
1072
+ "name": "_add"
1073
+ }
1074
+ ],
1075
+ "outputs": [
1076
+ {
1077
+ "type": "uint256",
1078
+ "name": "status"
1079
+ },
1080
+ {
1081
+ "type": "uint256",
1082
+ "name": "coverid"
1083
+ },
1084
+ {
1085
+ "type": "uint256",
1086
+ "name": "claimId"
1087
+ }
1088
+ ]
1089
+ },
1090
+ {
1091
+ "type": "function",
1092
+ "name": "getUserClaimCount",
1093
+ "constant": true,
1094
+ "stateMutability": "view",
1095
+ "payable": false,
1096
+
1097
+ "inputs": [
1098
+ {
1099
+ "type": "address",
1100
+ "name": "_add"
1101
+ }
1102
+ ],
1103
+ "outputs": [
1104
+ {
1105
+ "type": "uint256",
1106
+ "name": "len"
1107
+ }
1108
+ ]
1109
+ },
1110
+ {
1111
+ "type": "function",
1112
+ "name": "getUserClaimVoteCA",
1113
+ "constant": true,
1114
+ "stateMutability": "view",
1115
+ "payable": false,
1116
+
1117
+ "inputs": [
1118
+ {
1119
+ "type": "address",
1120
+ "name": "_add"
1121
+ },
1122
+ {
1123
+ "type": "uint256",
1124
+ "name": "_claimId"
1125
+ }
1126
+ ],
1127
+ "outputs": [
1128
+ {
1129
+ "type": "uint256",
1130
+ "name": "idVote"
1131
+ }
1132
+ ]
1133
+ },
1134
+ {
1135
+ "type": "function",
1136
+ "name": "getUserClaimVoteMember",
1137
+ "constant": true,
1138
+ "stateMutability": "view",
1139
+ "payable": false,
1140
+
1141
+ "inputs": [
1142
+ {
1143
+ "type": "address",
1144
+ "name": "_add"
1145
+ },
1146
+ {
1147
+ "type": "uint256",
1148
+ "name": "_claimId"
1149
+ }
1150
+ ],
1151
+ "outputs": [
1152
+ {
1153
+ "type": "uint256",
1154
+ "name": "idVote"
1155
+ }
1156
+ ]
1157
+ },
1158
+ {
1159
+ "type": "function",
1160
+ "name": "getVoteAddressCA",
1161
+ "constant": true,
1162
+ "stateMutability": "view",
1163
+ "payable": false,
1164
+
1165
+ "inputs": [
1166
+ {
1167
+ "type": "address",
1168
+ "name": "_voter"
1169
+ },
1170
+ {
1171
+ "type": "uint256",
1172
+ "name": "index"
1173
+ }
1174
+ ],
1175
+ "outputs": [
1176
+ {
1177
+ "type": "uint256"
1178
+ }
1179
+ ]
1180
+ },
1181
+ {
1182
+ "type": "function",
1183
+ "name": "getVoteAddressCALength",
1184
+ "constant": true,
1185
+ "stateMutability": "view",
1186
+ "payable": false,
1187
+
1188
+ "inputs": [
1189
+ {
1190
+ "type": "address",
1191
+ "name": "_voter"
1192
+ }
1193
+ ],
1194
+ "outputs": [
1195
+ {
1196
+ "type": "uint256"
1197
+ }
1198
+ ]
1199
+ },
1200
+ {
1201
+ "type": "function",
1202
+ "name": "getVoteAddressMember",
1203
+ "constant": true,
1204
+ "stateMutability": "view",
1205
+ "payable": false,
1206
+
1207
+ "inputs": [
1208
+ {
1209
+ "type": "address",
1210
+ "name": "_voter"
1211
+ },
1212
+ {
1213
+ "type": "uint256",
1214
+ "name": "index"
1215
+ }
1216
+ ],
1217
+ "outputs": [
1218
+ {
1219
+ "type": "uint256"
1220
+ }
1221
+ ]
1222
+ },
1223
+ {
1224
+ "type": "function",
1225
+ "name": "getVoteAddressMemberLength",
1226
+ "constant": true,
1227
+ "stateMutability": "view",
1228
+ "payable": false,
1229
+
1230
+ "inputs": [
1231
+ {
1232
+ "type": "address",
1233
+ "name": "_voter"
1234
+ }
1235
+ ],
1236
+ "outputs": [
1237
+ {
1238
+ "type": "uint256"
1239
+ }
1240
+ ]
1241
+ },
1242
+ {
1243
+ "type": "function",
1244
+ "name": "getVoteDetails",
1245
+ "constant": true,
1246
+ "stateMutability": "view",
1247
+ "payable": false,
1248
+
1249
+ "inputs": [
1250
+ {
1251
+ "type": "uint256",
1252
+ "name": "_voteid"
1253
+ }
1254
+ ],
1255
+ "outputs": [
1256
+ {
1257
+ "type": "uint256",
1258
+ "name": "tokens"
1259
+ },
1260
+ {
1261
+ "type": "uint256",
1262
+ "name": "claimId"
1263
+ },
1264
+ {
1265
+ "type": "int8",
1266
+ "name": "verdict"
1267
+ },
1268
+ {
1269
+ "type": "bool",
1270
+ "name": "rewardClaimed"
1271
+ }
1272
+ ]
1273
+ },
1274
+ {
1275
+ "type": "function",
1276
+ "name": "getVoteToken",
1277
+ "constant": true,
1278
+ "stateMutability": "view",
1279
+ "payable": false,
1280
+
1281
+ "inputs": [
1282
+ {
1283
+ "type": "uint256",
1284
+ "name": "_claimId"
1285
+ },
1286
+ {
1287
+ "type": "uint256",
1288
+ "name": "_index"
1289
+ },
1290
+ {
1291
+ "type": "uint8",
1292
+ "name": "_ca"
1293
+ }
1294
+ ],
1295
+ "outputs": [
1296
+ {
1297
+ "type": "uint256",
1298
+ "name": "tok"
1299
+ }
1300
+ ]
1301
+ },
1302
+ {
1303
+ "type": "function",
1304
+ "name": "getVoteVerdict",
1305
+ "constant": true,
1306
+ "stateMutability": "view",
1307
+ "payable": false,
1308
+
1309
+ "inputs": [
1310
+ {
1311
+ "type": "uint256",
1312
+ "name": "_claimId"
1313
+ },
1314
+ {
1315
+ "type": "uint256",
1316
+ "name": "_index"
1317
+ },
1318
+ {
1319
+ "type": "uint8",
1320
+ "name": "_ca"
1321
+ }
1322
+ ],
1323
+ "outputs": [
1324
+ {
1325
+ "type": "int8",
1326
+ "name": "ver"
1327
+ }
1328
+ ]
1329
+ },
1330
+ {
1331
+ "type": "function",
1332
+ "name": "getVoteVoter",
1333
+ "constant": true,
1334
+ "stateMutability": "view",
1335
+ "payable": false,
1336
+
1337
+ "inputs": [
1338
+ {
1339
+ "type": "uint256",
1340
+ "name": "_claimId"
1341
+ },
1342
+ {
1343
+ "type": "uint256",
1344
+ "name": "_index"
1345
+ },
1346
+ {
1347
+ "type": "uint8",
1348
+ "name": "_ca"
1349
+ }
1350
+ ],
1351
+ "outputs": [
1352
+ {
1353
+ "type": "address",
1354
+ "name": "voter"
1355
+ }
1356
+ ]
1357
+ },
1358
+ {
1359
+ "type": "function",
1360
+ "name": "getVoterVote",
1361
+ "constant": true,
1362
+ "stateMutability": "view",
1363
+ "payable": false,
1364
+
1365
+ "inputs": [
1366
+ {
1367
+ "type": "uint256",
1368
+ "name": "_voteid"
1369
+ }
1370
+ ],
1371
+ "outputs": [
1372
+ {
1373
+ "type": "address",
1374
+ "name": "voter"
1375
+ }
1376
+ ]
1377
+ },
1378
+ {
1379
+ "type": "function",
1380
+ "name": "majorityConsensus",
1381
+ "constant": true,
1382
+ "stateMutability": "view",
1383
+ "payable": false,
1384
+
1385
+ "inputs": [],
1386
+ "outputs": [
1387
+ {
1388
+ "type": "uint256"
1389
+ }
1390
+ ]
1391
+ },
1392
+ {
1393
+ "type": "function",
1394
+ "name": "maxVoteThreshold",
1395
+ "constant": true,
1396
+ "stateMutability": "view",
1397
+ "payable": false,
1398
+
1399
+ "inputs": [],
1400
+ "outputs": [
1401
+ {
1402
+ "type": "uint256"
1403
+ }
1404
+ ]
1405
+ },
1406
+ {
1407
+ "type": "function",
1408
+ "name": "maxVotingTime",
1409
+ "constant": true,
1410
+ "stateMutability": "view",
1411
+ "payable": false,
1412
+
1413
+ "inputs": [],
1414
+ "outputs": [
1415
+ {
1416
+ "type": "uint256"
1417
+ }
1418
+ ]
1419
+ },
1420
+ {
1421
+ "type": "function",
1422
+ "name": "minVoteThreshold",
1423
+ "constant": true,
1424
+ "stateMutability": "view",
1425
+ "payable": false,
1426
+
1427
+ "inputs": [],
1428
+ "outputs": [
1429
+ {
1430
+ "type": "uint256"
1431
+ }
1432
+ ]
1433
+ },
1434
+ {
1435
+ "type": "function",
1436
+ "name": "minVotingTime",
1437
+ "constant": true,
1438
+ "stateMutability": "view",
1439
+ "payable": false,
1440
+
1441
+ "inputs": [],
1442
+ "outputs": [
1443
+ {
1444
+ "type": "uint256"
1445
+ }
1446
+ ]
1447
+ },
1448
+ {
1449
+ "type": "function",
1450
+ "name": "ms",
1451
+ "constant": true,
1452
+ "stateMutability": "view",
1453
+ "payable": false,
1454
+
1455
+ "inputs": [],
1456
+ "outputs": [
1457
+ {
1458
+ "type": "address"
1459
+ }
1460
+ ]
1461
+ },
1462
+ {
1463
+ "type": "function",
1464
+ "name": "nxMasterAddress",
1465
+ "constant": true,
1466
+ "stateMutability": "view",
1467
+ "payable": false,
1468
+
1469
+ "inputs": [],
1470
+ "outputs": [
1471
+ {
1472
+ "type": "address"
1473
+ }
1474
+ ]
1475
+ },
1476
+ {
1477
+ "type": "function",
1478
+ "name": "pauseDaysCA",
1479
+ "constant": true,
1480
+ "stateMutability": "view",
1481
+ "payable": false,
1482
+
1483
+ "inputs": [],
1484
+ "outputs": [
1485
+ {
1486
+ "type": "uint256"
1487
+ }
1488
+ ]
1489
+ },
1490
+ {
1491
+ "type": "function",
1492
+ "name": "payoutRetryTime",
1493
+ "constant": true,
1494
+ "stateMutability": "view",
1495
+ "payable": false,
1496
+
1497
+ "inputs": [],
1498
+ "outputs": [
1499
+ {
1500
+ "type": "uint256"
1501
+ }
1502
+ ]
1503
+ },
1504
+ {
1505
+ "type": "function",
1506
+ "name": "pendingClaimStart",
1507
+ "constant": true,
1508
+ "stateMutability": "view",
1509
+ "payable": false,
1510
+
1511
+ "inputs": [],
1512
+ "outputs": [
1513
+ {
1514
+ "type": "uint256"
1515
+ }
1516
+ ]
1517
+ },
1518
+ {
1519
+ "type": "function",
1520
+ "name": "setClaimAtEmergencyPause",
1521
+ "constant": false,
1522
+ "payable": false,
1523
+
1524
+ "inputs": [
1525
+ {
1526
+ "type": "uint256",
1527
+ "name": "_coverId"
1528
+ },
1529
+ {
1530
+ "type": "uint256",
1531
+ "name": "_dateUpd"
1532
+ },
1533
+ {
1534
+ "type": "bool",
1535
+ "name": "_submit"
1536
+ }
1537
+ ],
1538
+ "outputs": []
1539
+ },
1540
+ {
1541
+ "type": "function",
1542
+ "name": "setClaimRewardDetail",
1543
+ "constant": false,
1544
+ "payable": false,
1545
+
1546
+ "inputs": [
1547
+ {
1548
+ "type": "uint256",
1549
+ "name": "claimid"
1550
+ },
1551
+ {
1552
+ "type": "uint256",
1553
+ "name": "percCA"
1554
+ },
1555
+ {
1556
+ "type": "uint256",
1557
+ "name": "percMV"
1558
+ },
1559
+ {
1560
+ "type": "uint256",
1561
+ "name": "tokens"
1562
+ }
1563
+ ],
1564
+ "outputs": []
1565
+ },
1566
+ {
1567
+ "type": "function",
1568
+ "name": "setClaimStatus",
1569
+ "constant": false,
1570
+ "payable": false,
1571
+
1572
+ "inputs": [
1573
+ {
1574
+ "type": "uint256",
1575
+ "name": "_claimId"
1576
+ },
1577
+ {
1578
+ "type": "uint256",
1579
+ "name": "_stat"
1580
+ }
1581
+ ],
1582
+ "outputs": []
1583
+ },
1584
+ {
1585
+ "type": "function",
1586
+ "name": "setClaimSubmittedAtEPTrue",
1587
+ "constant": false,
1588
+ "payable": false,
1589
+
1590
+ "inputs": [
1591
+ {
1592
+ "type": "uint256",
1593
+ "name": "_index"
1594
+ },
1595
+ {
1596
+ "type": "bool",
1597
+ "name": "_submit"
1598
+ }
1599
+ ],
1600
+ "outputs": []
1601
+ },
1602
+ {
1603
+ "type": "function",
1604
+ "name": "setClaimTokensCA",
1605
+ "constant": false,
1606
+ "payable": false,
1607
+
1608
+ "inputs": [
1609
+ {
1610
+ "type": "uint256",
1611
+ "name": "_claimId"
1612
+ },
1613
+ {
1614
+ "type": "int8",
1615
+ "name": "_vote"
1616
+ },
1617
+ {
1618
+ "type": "uint256",
1619
+ "name": "_tokens"
1620
+ }
1621
+ ],
1622
+ "outputs": []
1623
+ },
1624
+ {
1625
+ "type": "function",
1626
+ "name": "setClaimTokensMV",
1627
+ "constant": false,
1628
+ "payable": false,
1629
+
1630
+ "inputs": [
1631
+ {
1632
+ "type": "uint256",
1633
+ "name": "_claimId"
1634
+ },
1635
+ {
1636
+ "type": "int8",
1637
+ "name": "_vote"
1638
+ },
1639
+ {
1640
+ "type": "uint256",
1641
+ "name": "_tokens"
1642
+ }
1643
+ ],
1644
+ "outputs": []
1645
+ },
1646
+ {
1647
+ "type": "function",
1648
+ "name": "setClaimdateUpd",
1649
+ "constant": false,
1650
+ "payable": false,
1651
+
1652
+ "inputs": [
1653
+ {
1654
+ "type": "uint256",
1655
+ "name": "_claimId"
1656
+ },
1657
+ {
1658
+ "type": "uint256",
1659
+ "name": "_dateUpd"
1660
+ }
1661
+ ],
1662
+ "outputs": []
1663
+ },
1664
+ {
1665
+ "type": "function",
1666
+ "name": "setFirstClaimIndexToStartVotingAfterEP",
1667
+ "constant": false,
1668
+ "payable": false,
1669
+
1670
+ "inputs": [
1671
+ {
1672
+ "type": "uint256",
1673
+ "name": "_claimStartVotingFirstIndex"
1674
+ }
1675
+ ],
1676
+ "outputs": []
1677
+ },
1678
+ {
1679
+ "type": "function",
1680
+ "name": "setFirstClaimIndexToSubmitAfterEP",
1681
+ "constant": false,
1682
+ "payable": false,
1683
+
1684
+ "inputs": [
1685
+ {
1686
+ "type": "uint256",
1687
+ "name": "_firstClaimIndexToSubmit"
1688
+ }
1689
+ ],
1690
+ "outputs": []
1691
+ },
1692
+ {
1693
+ "type": "function",
1694
+ "name": "setPendingClaimDetails",
1695
+ "constant": false,
1696
+ "payable": false,
1697
+
1698
+ "inputs": [
1699
+ {
1700
+ "type": "uint256",
1701
+ "name": "_claimId"
1702
+ },
1703
+ {
1704
+ "type": "uint256",
1705
+ "name": "_pendingTime"
1706
+ },
1707
+ {
1708
+ "type": "bool",
1709
+ "name": "_voting"
1710
+ }
1711
+ ],
1712
+ "outputs": []
1713
+ },
1714
+ {
1715
+ "type": "function",
1716
+ "name": "setPendingClaimVoteStatus",
1717
+ "constant": false,
1718
+ "payable": false,
1719
+
1720
+ "inputs": [
1721
+ {
1722
+ "type": "uint256",
1723
+ "name": "_claimId"
1724
+ },
1725
+ {
1726
+ "type": "bool",
1727
+ "name": "_vote"
1728
+ }
1729
+ ],
1730
+ "outputs": []
1731
+ },
1732
+ {
1733
+ "type": "function",
1734
+ "name": "setRewardClaimed",
1735
+ "constant": false,
1736
+ "payable": false,
1737
+
1738
+ "inputs": [
1739
+ {
1740
+ "type": "uint256",
1741
+ "name": "_voteid"
1742
+ },
1743
+ {
1744
+ "type": "bool",
1745
+ "name": "claimed"
1746
+ }
1747
+ ],
1748
+ "outputs": []
1749
+ },
1750
+ {
1751
+ "type": "function",
1752
+ "name": "setRewardDistributedIndexCA",
1753
+ "constant": false,
1754
+ "payable": false,
1755
+
1756
+ "inputs": [
1757
+ {
1758
+ "type": "address",
1759
+ "name": "_voter"
1760
+ },
1761
+ {
1762
+ "type": "uint256",
1763
+ "name": "caIndex"
1764
+ }
1765
+ ],
1766
+ "outputs": []
1767
+ },
1768
+ {
1769
+ "type": "function",
1770
+ "name": "setRewardDistributedIndexMV",
1771
+ "constant": false,
1772
+ "payable": false,
1773
+
1774
+ "inputs": [
1775
+ {
1776
+ "type": "address",
1777
+ "name": "_voter"
1778
+ },
1779
+ {
1780
+ "type": "uint256",
1781
+ "name": "mvIndex"
1782
+ }
1783
+ ],
1784
+ "outputs": []
1785
+ },
1786
+ {
1787
+ "type": "function",
1788
+ "name": "setUserClaimVoteCA",
1789
+ "constant": false,
1790
+ "payable": false,
1791
+
1792
+ "inputs": [
1793
+ {
1794
+ "type": "address",
1795
+ "name": "_from"
1796
+ },
1797
+ {
1798
+ "type": "uint256",
1799
+ "name": "_claimId"
1800
+ },
1801
+ {
1802
+ "type": "uint256",
1803
+ "name": "_voteid"
1804
+ }
1805
+ ],
1806
+ "outputs": []
1807
+ },
1808
+ {
1809
+ "type": "function",
1810
+ "name": "setUserClaimVoteMember",
1811
+ "constant": false,
1812
+ "payable": false,
1813
+
1814
+ "inputs": [
1815
+ {
1816
+ "type": "address",
1817
+ "name": "_from"
1818
+ },
1819
+ {
1820
+ "type": "uint256",
1821
+ "name": "_claimId"
1822
+ },
1823
+ {
1824
+ "type": "uint256",
1825
+ "name": "_voteid"
1826
+ }
1827
+ ],
1828
+ "outputs": []
1829
+ },
1830
+ {
1831
+ "type": "function",
1832
+ "name": "setUserClaimVotePausedOn",
1833
+ "constant": false,
1834
+ "payable": false,
1835
+
1836
+ "inputs": [
1837
+ {
1838
+ "type": "address",
1839
+ "name": "user"
1840
+ }
1841
+ ],
1842
+ "outputs": []
1843
+ },
1844
+ {
1845
+ "type": "function",
1846
+ "name": "setpendingClaimStart",
1847
+ "constant": false,
1848
+ "payable": false,
1849
+
1850
+ "inputs": [
1851
+ {
1852
+ "type": "uint256",
1853
+ "name": "_start"
1854
+ }
1855
+ ],
1856
+ "outputs": []
1857
+ },
1858
+ {
1859
+ "type": "function",
1860
+ "name": "updateState12Count",
1861
+ "constant": false,
1862
+ "payable": false,
1863
+
1864
+ "inputs": [
1865
+ {
1866
+ "type": "uint256",
1867
+ "name": "_claimId"
1868
+ },
1869
+ {
1870
+ "type": "uint256",
1871
+ "name": "_cnt"
1872
+ }
1873
+ ],
1874
+ "outputs": []
1875
+ },
1876
+ {
1877
+ "type": "function",
1878
+ "name": "updateUintParameters",
1879
+ "constant": false,
1880
+ "payable": false,
1881
+
1882
+ "inputs": [
1883
+ {
1884
+ "type": "bytes8",
1885
+ "name": "code"
1886
+ },
1887
+ {
1888
+ "type": "uint256",
1889
+ "name": "val"
1890
+ }
1891
+ ],
1892
+ "outputs": []
1893
+ },
1894
+ {
1895
+ "type": "function",
1896
+ "name": "userClaimVotePausedOn",
1897
+ "constant": true,
1898
+ "stateMutability": "view",
1899
+ "payable": false,
1900
+
1901
+ "inputs": [
1902
+ {
1903
+ "type": "address"
1904
+ }
1905
+ ],
1906
+ "outputs": [
1907
+ {
1908
+ "type": "uint256"
1909
+ }
1910
+ ]
1911
+ }
1912
+ ]