@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,975 @@
1
+ [
2
+ {
3
+ "type": "event",
4
+ "anonymous": false,
5
+ "name": "ActionFailed",
6
+ "inputs": [
7
+ {
8
+ "type": "uint256",
9
+ "name": "proposalId",
10
+ "indexed": false
11
+ }
12
+ ]
13
+ },
14
+ {
15
+ "type": "event",
16
+ "anonymous": false,
17
+ "name": "ActionRejected",
18
+ "inputs": [
19
+ {
20
+ "type": "uint256",
21
+ "name": "proposalId",
22
+ "indexed": true
23
+ },
24
+ {
25
+ "type": "address",
26
+ "name": "rejectedBy",
27
+ "indexed": false
28
+ }
29
+ ]
30
+ },
31
+ {
32
+ "type": "event",
33
+ "anonymous": false,
34
+ "name": "ActionSuccess",
35
+ "inputs": [
36
+ {
37
+ "type": "uint256",
38
+ "name": "proposalId",
39
+ "indexed": false
40
+ }
41
+ ]
42
+ },
43
+ {
44
+ "type": "event",
45
+ "anonymous": false,
46
+ "name": "CloseProposalOnTime",
47
+ "inputs": [
48
+ {
49
+ "type": "uint256",
50
+ "name": "proposalId",
51
+ "indexed": true
52
+ },
53
+ {
54
+ "type": "uint256",
55
+ "name": "time",
56
+ "indexed": false
57
+ }
58
+ ]
59
+ },
60
+ {
61
+ "type": "event",
62
+ "anonymous": false,
63
+ "name": "Proposal",
64
+ "inputs": [
65
+ {
66
+ "type": "address",
67
+ "name": "proposalOwner",
68
+ "indexed": true
69
+ },
70
+ {
71
+ "type": "uint256",
72
+ "name": "proposalId",
73
+ "indexed": true
74
+ },
75
+ {
76
+ "type": "uint256",
77
+ "name": "dateAdd",
78
+ "indexed": false
79
+ },
80
+ {
81
+ "type": "string",
82
+ "name": "proposalTitle",
83
+ "indexed": false
84
+ },
85
+ {
86
+ "type": "string",
87
+ "name": "proposalSD",
88
+ "indexed": false
89
+ },
90
+ {
91
+ "type": "string",
92
+ "name": "proposalDescHash",
93
+ "indexed": false
94
+ }
95
+ ]
96
+ },
97
+ {
98
+ "type": "event",
99
+ "anonymous": false,
100
+ "name": "ProposalAccepted",
101
+ "inputs": [
102
+ {
103
+ "type": "uint256",
104
+ "name": "proposalId",
105
+ "indexed": false
106
+ }
107
+ ]
108
+ },
109
+ {
110
+ "type": "event",
111
+ "anonymous": false,
112
+ "name": "ProposalCategorized",
113
+ "inputs": [
114
+ {
115
+ "type": "uint256",
116
+ "name": "proposalId",
117
+ "indexed": true
118
+ },
119
+ {
120
+ "type": "address",
121
+ "name": "categorizedBy",
122
+ "indexed": true
123
+ },
124
+ {
125
+ "type": "uint256",
126
+ "name": "categoryId",
127
+ "indexed": false
128
+ }
129
+ ]
130
+ },
131
+ {
132
+ "type": "event",
133
+ "anonymous": false,
134
+ "name": "RewardClaimed",
135
+ "inputs": [
136
+ {
137
+ "type": "address",
138
+ "name": "member",
139
+ "indexed": true
140
+ },
141
+ {
142
+ "type": "uint256",
143
+ "name": "gbtReward",
144
+ "indexed": false
145
+ }
146
+ ]
147
+ },
148
+ {
149
+ "type": "event",
150
+ "anonymous": false,
151
+ "name": "Solution",
152
+ "inputs": [
153
+ {
154
+ "type": "uint256",
155
+ "name": "proposalId",
156
+ "indexed": true
157
+ },
158
+ {
159
+ "type": "address",
160
+ "name": "solutionOwner",
161
+ "indexed": true
162
+ },
163
+ {
164
+ "type": "uint256",
165
+ "name": "solutionId",
166
+ "indexed": true
167
+ },
168
+ {
169
+ "type": "string",
170
+ "name": "solutionDescHash",
171
+ "indexed": false
172
+ },
173
+ {
174
+ "type": "uint256",
175
+ "name": "dateAdd",
176
+ "indexed": false
177
+ }
178
+ ]
179
+ },
180
+ {
181
+ "type": "event",
182
+ "anonymous": false,
183
+ "name": "Vote",
184
+ "inputs": [
185
+ {
186
+ "type": "address",
187
+ "name": "from",
188
+ "indexed": true
189
+ },
190
+ {
191
+ "type": "uint256",
192
+ "name": "proposalId",
193
+ "indexed": true
194
+ },
195
+ {
196
+ "type": "uint256",
197
+ "name": "voteId",
198
+ "indexed": true
199
+ },
200
+ {
201
+ "type": "uint256",
202
+ "name": "dateAdd",
203
+ "indexed": false
204
+ },
205
+ {
206
+ "type": "uint256",
207
+ "name": "solutionChosen",
208
+ "indexed": false
209
+ }
210
+ ]
211
+ },
212
+ {
213
+ "type": "event",
214
+ "anonymous": false,
215
+ "name": "VoteCast",
216
+ "inputs": [
217
+ {
218
+ "type": "uint256",
219
+ "name": "proposalId",
220
+ "indexed": false
221
+ }
222
+ ]
223
+ },
224
+ {
225
+ "type": "function",
226
+ "name": "allDelegation",
227
+ "constant": true,
228
+ "stateMutability": "view",
229
+ "payable": false,
230
+
231
+ "inputs": [
232
+ {
233
+ "type": "uint256"
234
+ }
235
+ ],
236
+ "outputs": [
237
+ {
238
+ "type": "address",
239
+ "name": "follower"
240
+ },
241
+ {
242
+ "type": "address",
243
+ "name": "leader"
244
+ },
245
+ {
246
+ "type": "uint256",
247
+ "name": "lastUpd"
248
+ }
249
+ ]
250
+ },
251
+ {
252
+ "type": "function",
253
+ "name": "allowedToCatgorize",
254
+ "constant": true,
255
+ "stateMutability": "view",
256
+ "payable": false,
257
+
258
+ "inputs": [],
259
+ "outputs": [
260
+ {
261
+ "type": "uint256",
262
+ "name": "roleId"
263
+ }
264
+ ]
265
+ },
266
+ {
267
+ "type": "function",
268
+ "name": "allowedToCreateProposal",
269
+ "constant": true,
270
+ "stateMutability": "view",
271
+ "payable": false,
272
+
273
+ "inputs": [
274
+ {
275
+ "type": "uint256",
276
+ "name": "category"
277
+ }
278
+ ],
279
+ "outputs": [
280
+ {
281
+ "type": "bool",
282
+ "name": "check"
283
+ }
284
+ ]
285
+ },
286
+ {
287
+ "type": "function",
288
+ "name": "canCloseProposal",
289
+ "constant": true,
290
+ "stateMutability": "view",
291
+ "payable": false,
292
+
293
+ "inputs": [
294
+ {
295
+ "type": "uint256",
296
+ "name": "_proposalId"
297
+ }
298
+ ],
299
+ "outputs": [
300
+ {
301
+ "type": "uint256"
302
+ }
303
+ ]
304
+ },
305
+ {
306
+ "type": "function",
307
+ "name": "categorizeProposal",
308
+ "constant": false,
309
+ "payable": false,
310
+
311
+ "inputs": [
312
+ {
313
+ "type": "uint256",
314
+ "name": "_proposalId"
315
+ },
316
+ {
317
+ "type": "uint256",
318
+ "name": "_categoryId"
319
+ },
320
+ {
321
+ "type": "uint256",
322
+ "name": "_incentive"
323
+ }
324
+ ],
325
+ "outputs": []
326
+ },
327
+ {
328
+ "type": "function",
329
+ "name": "changeDependentContractAddress",
330
+ "constant": false,
331
+ "payable": false,
332
+
333
+ "inputs": [],
334
+ "outputs": []
335
+ },
336
+ {
337
+ "type": "function",
338
+ "name": "changeMasterAddress",
339
+ "constant": false,
340
+ "payable": false,
341
+
342
+ "inputs": [
343
+ {
344
+ "type": "address",
345
+ "name": "_masterAddress"
346
+ }
347
+ ],
348
+ "outputs": []
349
+ },
350
+ {
351
+ "type": "function",
352
+ "name": "claimReward",
353
+ "constant": false,
354
+ "payable": false,
355
+
356
+ "inputs": [
357
+ {
358
+ "type": "address",
359
+ "name": "_memberAddress"
360
+ },
361
+ {
362
+ "type": "uint256",
363
+ "name": "_maxRecords"
364
+ }
365
+ ],
366
+ "outputs": [
367
+ {
368
+ "type": "uint256",
369
+ "name": "pendingDAppReward"
370
+ }
371
+ ]
372
+ },
373
+ {
374
+ "type": "function",
375
+ "name": "closeProposal",
376
+ "constant": false,
377
+ "payable": false,
378
+
379
+ "inputs": [
380
+ {
381
+ "type": "uint256",
382
+ "name": "_proposalId"
383
+ }
384
+ ],
385
+ "outputs": []
386
+ },
387
+ {
388
+ "type": "function",
389
+ "name": "createProposal",
390
+ "constant": false,
391
+ "payable": false,
392
+
393
+ "inputs": [
394
+ {
395
+ "type": "string",
396
+ "name": "_proposalTitle"
397
+ },
398
+ {
399
+ "type": "string",
400
+ "name": "_proposalSD"
401
+ },
402
+ {
403
+ "type": "string",
404
+ "name": "_proposalDescHash"
405
+ },
406
+ {
407
+ "type": "uint256",
408
+ "name": "_categoryId"
409
+ }
410
+ ],
411
+ "outputs": []
412
+ },
413
+ {
414
+ "type": "function",
415
+ "name": "createProposalwithSolution",
416
+ "constant": false,
417
+ "payable": false,
418
+
419
+ "inputs": [
420
+ {
421
+ "type": "string",
422
+ "name": "_proposalTitle"
423
+ },
424
+ {
425
+ "type": "string",
426
+ "name": "_proposalSD"
427
+ },
428
+ {
429
+ "type": "string",
430
+ "name": "_proposalDescHash"
431
+ },
432
+ {
433
+ "type": "uint256",
434
+ "name": "_categoryId"
435
+ },
436
+ {
437
+ "type": "string",
438
+ "name": "_solutionHash"
439
+ },
440
+ {
441
+ "type": "bytes",
442
+ "name": "_action"
443
+ }
444
+ ],
445
+ "outputs": []
446
+ },
447
+ {
448
+ "type": "function",
449
+ "name": "followerDelegation",
450
+ "constant": true,
451
+ "stateMutability": "view",
452
+ "payable": false,
453
+
454
+ "inputs": [
455
+ {
456
+ "type": "address"
457
+ }
458
+ ],
459
+ "outputs": [
460
+ {
461
+ "type": "uint256"
462
+ }
463
+ ]
464
+ },
465
+ {
466
+ "type": "function",
467
+ "name": "getFollowers",
468
+ "constant": true,
469
+ "stateMutability": "view",
470
+ "payable": false,
471
+
472
+ "inputs": [
473
+ {
474
+ "type": "address",
475
+ "name": "_add"
476
+ }
477
+ ],
478
+ "outputs": [
479
+ {
480
+ "type": "uint256[]"
481
+ }
482
+ ]
483
+ },
484
+ {
485
+ "type": "function",
486
+ "name": "getPendingReward",
487
+ "constant": true,
488
+ "stateMutability": "view",
489
+ "payable": false,
490
+
491
+ "inputs": [
492
+ {
493
+ "type": "address",
494
+ "name": "_memberAddress"
495
+ }
496
+ ],
497
+ "outputs": [
498
+ {
499
+ "type": "uint256",
500
+ "name": "pendingDAppReward"
501
+ }
502
+ ]
503
+ },
504
+ {
505
+ "type": "function",
506
+ "name": "getProposalLength",
507
+ "constant": true,
508
+ "stateMutability": "view",
509
+ "payable": false,
510
+
511
+ "inputs": [],
512
+ "outputs": [
513
+ {
514
+ "type": "uint256"
515
+ }
516
+ ]
517
+ },
518
+ {
519
+ "type": "function",
520
+ "name": "getSolutionAction",
521
+ "constant": true,
522
+ "stateMutability": "view",
523
+ "payable": false,
524
+
525
+ "inputs": [
526
+ {
527
+ "type": "uint256",
528
+ "name": "_proposalId"
529
+ },
530
+ {
531
+ "type": "uint256",
532
+ "name": "_solution"
533
+ }
534
+ ],
535
+ "outputs": [
536
+ {
537
+ "type": "uint256"
538
+ },
539
+ {
540
+ "type": "bytes"
541
+ }
542
+ ]
543
+ },
544
+ {
545
+ "type": "function",
546
+ "name": "getUintParameters",
547
+ "constant": true,
548
+ "stateMutability": "view",
549
+ "payable": false,
550
+
551
+ "inputs": [
552
+ {
553
+ "type": "bytes8",
554
+ "name": "code"
555
+ }
556
+ ],
557
+ "outputs": [
558
+ {
559
+ "type": "bytes8",
560
+ "name": "codeVal"
561
+ },
562
+ {
563
+ "type": "uint256",
564
+ "name": "val"
565
+ }
566
+ ]
567
+ },
568
+ {
569
+ "type": "function",
570
+ "name": "isOpenForDelegation",
571
+ "constant": true,
572
+ "stateMutability": "view",
573
+ "payable": false,
574
+
575
+ "inputs": [
576
+ {
577
+ "type": "address"
578
+ }
579
+ ],
580
+ "outputs": [
581
+ {
582
+ "type": "bool"
583
+ }
584
+ ]
585
+ },
586
+ {
587
+ "type": "function",
588
+ "name": "lastRewardClaimed",
589
+ "constant": true,
590
+ "stateMutability": "view",
591
+ "payable": false,
592
+
593
+ "inputs": [
594
+ {
595
+ "type": "address"
596
+ }
597
+ ],
598
+ "outputs": [
599
+ {
600
+ "type": "uint256"
601
+ }
602
+ ]
603
+ },
604
+ {
605
+ "type": "function",
606
+ "name": "memberProposalVote",
607
+ "constant": true,
608
+ "stateMutability": "view",
609
+ "payable": false,
610
+
611
+ "inputs": [
612
+ {
613
+ "type": "address"
614
+ },
615
+ {
616
+ "type": "uint256"
617
+ }
618
+ ],
619
+ "outputs": [
620
+ {
621
+ "type": "uint256"
622
+ }
623
+ ]
624
+ },
625
+ {
626
+ "type": "function",
627
+ "name": "ms",
628
+ "constant": true,
629
+ "stateMutability": "view",
630
+ "payable": false,
631
+
632
+ "inputs": [],
633
+ "outputs": [
634
+ {
635
+ "type": "address"
636
+ }
637
+ ]
638
+ },
639
+ {
640
+ "type": "function",
641
+ "name": "nxMasterAddress",
642
+ "constant": true,
643
+ "stateMutability": "view",
644
+ "payable": false,
645
+
646
+ "inputs": [],
647
+ "outputs": [
648
+ {
649
+ "type": "address"
650
+ }
651
+ ]
652
+ },
653
+ {
654
+ "type": "function",
655
+ "name": "proposal",
656
+ "constant": true,
657
+ "stateMutability": "view",
658
+ "payable": false,
659
+
660
+ "inputs": [
661
+ {
662
+ "type": "uint256",
663
+ "name": "_proposalId"
664
+ }
665
+ ],
666
+ "outputs": [
667
+ {
668
+ "type": "uint256",
669
+ "name": "proposalId"
670
+ },
671
+ {
672
+ "type": "uint256",
673
+ "name": "category"
674
+ },
675
+ {
676
+ "type": "uint256",
677
+ "name": "status"
678
+ },
679
+ {
680
+ "type": "uint256",
681
+ "name": "finalVerdict"
682
+ },
683
+ {
684
+ "type": "uint256",
685
+ "name": "totalReward"
686
+ }
687
+ ]
688
+ },
689
+ {
690
+ "type": "function",
691
+ "name": "proposalActionStatus",
692
+ "constant": true,
693
+ "stateMutability": "view",
694
+ "payable": false,
695
+
696
+ "inputs": [
697
+ {
698
+ "type": "uint256"
699
+ }
700
+ ],
701
+ "outputs": [
702
+ {
703
+ "type": "uint256"
704
+ }
705
+ ]
706
+ },
707
+ {
708
+ "type": "function",
709
+ "name": "proposalDetails",
710
+ "constant": true,
711
+ "stateMutability": "view",
712
+ "payable": false,
713
+
714
+ "inputs": [
715
+ {
716
+ "type": "uint256",
717
+ "name": "_proposalId"
718
+ }
719
+ ],
720
+ "outputs": [
721
+ {
722
+ "type": "uint256"
723
+ },
724
+ {
725
+ "type": "uint256"
726
+ },
727
+ {
728
+ "type": "uint256"
729
+ }
730
+ ]
731
+ },
732
+ {
733
+ "type": "function",
734
+ "name": "proposalRejectedByAB",
735
+ "constant": true,
736
+ "stateMutability": "view",
737
+ "payable": false,
738
+
739
+ "inputs": [
740
+ {
741
+ "type": "uint256"
742
+ },
743
+ {
744
+ "type": "address"
745
+ }
746
+ ],
747
+ "outputs": [
748
+ {
749
+ "type": "bool"
750
+ }
751
+ ]
752
+ },
753
+ {
754
+ "type": "function",
755
+ "name": "proposalVoteTally",
756
+ "constant": true,
757
+ "stateMutability": "view",
758
+ "payable": false,
759
+
760
+ "inputs": [
761
+ {
762
+ "type": "uint256"
763
+ }
764
+ ],
765
+ "outputs": [
766
+ {
767
+ "type": "uint256",
768
+ "name": "voters"
769
+ }
770
+ ]
771
+ },
772
+ {
773
+ "type": "function",
774
+ "name": "rejectAction",
775
+ "constant": false,
776
+ "payable": false,
777
+
778
+ "inputs": [
779
+ {
780
+ "type": "uint256",
781
+ "name": "_proposalId"
782
+ }
783
+ ],
784
+ "outputs": []
785
+ },
786
+ {
787
+ "type": "function",
788
+ "name": "rewardClaimed",
789
+ "constant": true,
790
+ "stateMutability": "view",
791
+ "payable": false,
792
+
793
+ "inputs": [
794
+ {
795
+ "type": "uint256"
796
+ },
797
+ {
798
+ "type": "address"
799
+ }
800
+ ],
801
+ "outputs": [
802
+ {
803
+ "type": "bool"
804
+ }
805
+ ]
806
+ },
807
+ {
808
+ "type": "function",
809
+ "name": "submitProposalWithSolution",
810
+ "constant": false,
811
+ "payable": false,
812
+
813
+ "inputs": [
814
+ {
815
+ "type": "uint256",
816
+ "name": "_proposalId"
817
+ },
818
+ {
819
+ "type": "string",
820
+ "name": "_solutionHash"
821
+ },
822
+ {
823
+ "type": "bytes",
824
+ "name": "_action"
825
+ }
826
+ ],
827
+ "outputs": []
828
+ },
829
+ {
830
+ "type": "function",
831
+ "name": "submitVote",
832
+ "constant": false,
833
+ "payable": false,
834
+
835
+ "inputs": [
836
+ {
837
+ "type": "uint256",
838
+ "name": "_proposalId"
839
+ },
840
+ {
841
+ "type": "uint256",
842
+ "name": "_solutionChosen"
843
+ }
844
+ ],
845
+ "outputs": []
846
+ },
847
+ {
848
+ "type": "function",
849
+ "name": "submitVoteWithoutDelegations",
850
+ "constant": false,
851
+ "payable": false,
852
+
853
+ "inputs": [
854
+ {
855
+ "type": "uint256",
856
+ "name": "_proposalId"
857
+ },
858
+ {
859
+ "type": "uint256",
860
+ "name": "_solutionChosen"
861
+ }
862
+ ],
863
+ "outputs": []
864
+ },
865
+ {
866
+ "type": "function",
867
+ "name": "tokenHoldingTime",
868
+ "constant": true,
869
+ "stateMutability": "view",
870
+ "payable": false,
871
+
872
+ "inputs": [],
873
+ "outputs": [
874
+ {
875
+ "type": "uint256"
876
+ }
877
+ ]
878
+ },
879
+ {
880
+ "type": "function",
881
+ "name": "triggerAction",
882
+ "constant": false,
883
+ "payable": false,
884
+
885
+ "inputs": [
886
+ {
887
+ "type": "uint256",
888
+ "name": "_proposalId"
889
+ }
890
+ ],
891
+ "outputs": []
892
+ },
893
+ {
894
+ "type": "function",
895
+ "name": "unDelegate",
896
+ "constant": false,
897
+ "payable": false,
898
+
899
+ "inputs": [],
900
+ "outputs": []
901
+ },
902
+ {
903
+ "type": "function",
904
+ "name": "updateProposal",
905
+ "constant": false,
906
+ "payable": false,
907
+
908
+ "inputs": [
909
+ {
910
+ "type": "uint256",
911
+ "name": "_proposalId"
912
+ },
913
+ {
914
+ "type": "string",
915
+ "name": "_proposalTitle"
916
+ },
917
+ {
918
+ "type": "string",
919
+ "name": "_proposalSD"
920
+ },
921
+ {
922
+ "type": "string",
923
+ "name": "_proposalDescHash"
924
+ }
925
+ ],
926
+ "outputs": []
927
+ },
928
+ {
929
+ "type": "function",
930
+ "name": "updateUintParameters",
931
+ "constant": false,
932
+ "payable": false,
933
+
934
+ "inputs": [
935
+ {
936
+ "type": "bytes8",
937
+ "name": "code"
938
+ },
939
+ {
940
+ "type": "uint256",
941
+ "name": "val"
942
+ }
943
+ ],
944
+ "outputs": []
945
+ },
946
+ {
947
+ "type": "function",
948
+ "name": "voteTallyData",
949
+ "constant": true,
950
+ "stateMutability": "view",
951
+ "payable": false,
952
+
953
+ "inputs": [
954
+ {
955
+ "type": "uint256",
956
+ "name": "_proposalId"
957
+ },
958
+ {
959
+ "type": "uint256",
960
+ "name": "_solution"
961
+ }
962
+ ],
963
+ "outputs": [
964
+ {
965
+ "type": "uint256"
966
+ },
967
+ {
968
+ "type": "uint256"
969
+ },
970
+ {
971
+ "type": "uint256"
972
+ }
973
+ ]
974
+ }
975
+ ]