@cityofzion/bs-neox 1.4.7 → 1.5.0

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