forked from EOS-Mainnet/governance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eosio.system.abi
1081 lines (1081 loc) · 52.9 KB
/
eosio.system.abi
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
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"version": "eosio::abi/1.1",
"types": [],
"structs": [{
"name": "abi_hash",
"base": "",
"fields": [{
"name": "owner",
"type": "name"
},{
"name": "hash",
"type": "checksum256"
}
]
},{
"name": "authority",
"base": "",
"fields": [{
"name": "threshold",
"type": "uint32"
},{
"name": "keys",
"type": "key_weight[]"
},{
"name": "accounts",
"type": "permission_level_weight[]"
},{
"name": "waits",
"type": "wait_weight[]"
}
]
},{
"name": "bid_refund",
"base": "",
"fields": [{
"name": "bidder",
"type": "name"
},{
"name": "amount",
"type": "asset"
}
]
},{
"name": "bidname",
"base": "",
"fields": [{
"name": "bidder",
"type": "name"
},{
"name": "newname",
"type": "name"
},{
"name": "bid",
"type": "asset"
}
]
},{
"name": "bidrefund",
"base": "",
"fields": [{
"name": "bidder",
"type": "name"
},{
"name": "newname",
"type": "name"
}
]
},{
"name": "block_header",
"base": "",
"fields": [{
"name": "timestamp",
"type": "uint32"
},{
"name": "producer",
"type": "name"
},{
"name": "confirmed",
"type": "uint16"
},{
"name": "previous",
"type": "checksum256"
},{
"name": "transaction_mroot",
"type": "checksum256"
},{
"name": "action_mroot",
"type": "checksum256"
},{
"name": "schedule_version",
"type": "uint32"
},{
"name": "new_producers",
"type": "producer_schedule?"
}
]
},{
"name": "blockchain_parameters",
"base": "",
"fields": [{
"name": "max_block_net_usage",
"type": "uint64"
},{
"name": "target_block_net_usage_pct",
"type": "uint32"
},{
"name": "max_transaction_net_usage",
"type": "uint32"
},{
"name": "base_per_transaction_net_usage",
"type": "uint32"
},{
"name": "net_usage_leeway",
"type": "uint32"
},{
"name": "context_free_discount_net_usage_num",
"type": "uint32"
},{
"name": "context_free_discount_net_usage_den",
"type": "uint32"
},{
"name": "max_block_cpu_usage",
"type": "uint32"
},{
"name": "target_block_cpu_usage_pct",
"type": "uint32"
},{
"name": "max_transaction_cpu_usage",
"type": "uint32"
},{
"name": "min_transaction_cpu_usage",
"type": "uint32"
},{
"name": "max_transaction_lifetime",
"type": "uint32"
},{
"name": "deferred_trx_expiration_window",
"type": "uint32"
},{
"name": "max_transaction_delay",
"type": "uint32"
},{
"name": "max_inline_action_size",
"type": "uint32"
},{
"name": "max_inline_action_depth",
"type": "uint16"
},{
"name": "max_authority_depth",
"type": "uint16"
}
]
},{
"name": "buyram",
"base": "",
"fields": [{
"name": "payer",
"type": "name"
},{
"name": "receiver",
"type": "name"
},{
"name": "quant",
"type": "asset"
}
]
},{
"name": "buyrambytes",
"base": "",
"fields": [{
"name": "payer",
"type": "name"
},{
"name": "receiver",
"type": "name"
},{
"name": "bytes",
"type": "uint32"
}
]
},{
"name": "canceldelay",
"base": "",
"fields": [{
"name": "canceling_auth",
"type": "permission_level"
},{
"name": "trx_id",
"type": "checksum256"
}
]
},{
"name": "claimrewards",
"base": "",
"fields": [{
"name": "owner",
"type": "name"
}
]
},{
"name": "connector",
"base": "",
"fields": [{
"name": "balance",
"type": "asset"
},{
"name": "weight",
"type": "float64"
}
]
},{
"name": "delegatebw",
"base": "",
"fields": [{
"name": "from",
"type": "name"
},{
"name": "receiver",
"type": "name"
},{
"name": "stake_net_quantity",
"type": "asset"
},{
"name": "stake_cpu_quantity",
"type": "asset"
},{
"name": "transfer",
"type": "bool"
}
]
},{
"name": "delegated_bandwidth",
"base": "",
"fields": [{
"name": "from",
"type": "name"
},{
"name": "to",
"type": "name"
},{
"name": "net_weight",
"type": "asset"
},{
"name": "cpu_weight",
"type": "asset"
}
]
},{
"name": "deleteauth",
"base": "",
"fields": [{
"name": "account",
"type": "name"
},{
"name": "permission",
"type": "name"
}
]
},{
"name": "eosio_global_state",
"base": "blockchain_parameters",
"fields": [{
"name": "max_ram_size",
"type": "uint64"
},{
"name": "total_ram_bytes_reserved",
"type": "uint64"
},{
"name": "total_ram_stake",
"type": "int64"
},{
"name": "last_producer_schedule_update",
"type": "block_timestamp_type"
},{
"name": "last_pervote_bucket_fill",
"type": "time_point"
},{
"name": "pervote_bucket",
"type": "int64"
},{
"name": "perblock_bucket",
"type": "int64"
},{
"name": "total_unpaid_blocks",
"type": "uint32"
},{
"name": "total_activated_stake",
"type": "int64"
},{
"name": "thresh_activated_stake_time",
"type": "time_point"
},{
"name": "last_producer_schedule_size",
"type": "uint16"
},{
"name": "total_producer_vote_weight",
"type": "float64"
},{
"name": "last_name_close",
"type": "block_timestamp_type"
}
]
},{
"name": "eosio_global_state2",
"base": "",
"fields": [{
"name": "new_ram_per_block",
"type": "uint16"
},{
"name": "last_ram_increase",
"type": "block_timestamp_type"
},{
"name": "last_block_num",
"type": "block_timestamp_type"
},{
"name": "total_producer_votepay_share",
"type": "float64"
},{
"name": "revision",
"type": "uint8"
}
]
},{
"name": "eosio_global_state3",
"base": "",
"fields": [{
"name": "last_vpay_state_update",
"type": "time_point"
},{
"name": "total_vpay_share_change_rate",
"type": "float64"
}
]
},{
"name": "exchange_state",
"base": "",
"fields": [{
"name": "supply",
"type": "asset"
},{
"name": "base",
"type": "connector"
},{
"name": "quote",
"type": "connector"
}
]
},{
"name": "init",
"base": "",
"fields": [{
"name": "version",
"type": "varuint32"
},{
"name": "core",
"type": "symbol"
}
]
},{
"name": "key_weight",
"base": "",
"fields": [{
"name": "key",
"type": "public_key"
},{
"name": "weight",
"type": "uint16"
}
]
},{
"name": "linkauth",
"base": "",
"fields": [{
"name": "account",
"type": "name"
},{
"name": "code",
"type": "name"
},{
"name": "type",
"type": "name"
},{
"name": "requirement",
"type": "name"
}
]
},{
"name": "name_bid",
"base": "",
"fields": [{
"name": "newname",
"type": "name"
},{
"name": "high_bidder",
"type": "name"
},{
"name": "high_bid",
"type": "int64"
},{
"name": "last_bid_time",
"type": "time_point"
}
]
},{
"name": "newaccount",
"base": "",
"fields": [{
"name": "creator",
"type": "name"
},{
"name": "name",
"type": "name"
},{
"name": "owner",
"type": "authority"
},{
"name": "active",
"type": "authority"
}
]
},{
"name": "onblock",
"base": "",
"fields": [{
"name": "header",
"type": "block_header"
}
]
},{
"name": "onerror",
"base": "",
"fields": [{
"name": "sender_id",
"type": "uint128"
},{
"name": "sent_trx",
"type": "bytes"
}
]
},{
"name": "permission_level",
"base": "",
"fields": [{
"name": "actor",
"type": "name"
},{
"name": "permission",
"type": "name"
}
]
},{
"name": "permission_level_weight",
"base": "",
"fields": [{
"name": "permission",
"type": "permission_level"
},{
"name": "weight",
"type": "uint16"
}
]
},{
"name": "producer_info",
"base": "",
"fields": [{
"name": "owner",
"type": "name"
},{
"name": "total_votes",
"type": "float64"
},{
"name": "producer_key",
"type": "public_key"
},{
"name": "is_active",
"type": "bool"
},{
"name": "url",
"type": "string"
},{
"name": "unpaid_blocks",
"type": "uint32"
},{
"name": "last_claim_time",
"type": "time_point"
},{
"name": "location",
"type": "uint16"
}
]
},{
"name": "producer_info2",
"base": "",
"fields": [{
"name": "owner",
"type": "name"
},{
"name": "votepay_share",
"type": "float64"
},{
"name": "last_votepay_share_update",
"type": "time_point"
}
]
},{
"name": "producer_key",
"base": "",
"fields": [{
"name": "producer_name",
"type": "name"
},{
"name": "block_signing_key",
"type": "public_key"
}
]
},{
"name": "producer_schedule",
"base": "",
"fields": [{
"name": "version",
"type": "uint32"
},{
"name": "producers",
"type": "producer_key[]"
}
]
},{
"name": "refund",
"base": "",
"fields": [{
"name": "owner",
"type": "name"
}
]
},{
"name": "refund_request",
"base": "",
"fields": [{
"name": "owner",
"type": "name"
},{
"name": "request_time",
"type": "time_point_sec"
},{
"name": "net_amount",
"type": "asset"
},{
"name": "cpu_amount",
"type": "asset"
}
]
},{
"name": "regproducer",
"base": "",
"fields": [{
"name": "producer",
"type": "name"
},{
"name": "producer_key",
"type": "public_key"
},{
"name": "url",
"type": "string"
},{
"name": "location",
"type": "uint16"
}
]
},{
"name": "regproxy",
"base": "",
"fields": [{
"name": "proxy",
"type": "name"
},{
"name": "isproxy",
"type": "bool"
}
]
},{
"name": "rmvproducer",
"base": "",
"fields": [{
"name": "producer",
"type": "name"
}
]
},{
"name": "sellram",
"base": "",
"fields": [{
"name": "account",
"type": "name"
},{
"name": "bytes",
"type": "int64"
}
]
},{
"name": "setabi",
"base": "",
"fields": [{
"name": "account",
"type": "name"
},{
"name": "abi",
"type": "bytes"
}
]
},{
"name": "setacctcpu",
"base": "",
"fields": [{
"name": "account",
"type": "name"
},{
"name": "cpu_weight",
"type": "int64?"
}
]
},{
"name": "setacctnet",
"base": "",
"fields": [{
"name": "account",
"type": "name"
},{
"name": "net_weight",
"type": "int64?"
}
]
},{
"name": "setacctram",
"base": "",
"fields": [{
"name": "account",
"type": "name"
},{
"name": "ram_bytes",
"type": "int64?"
}
]
},{
"name": "setalimits",
"base": "",
"fields": [{
"name": "account",
"type": "name"
},{
"name": "ram_bytes",
"type": "int64"
},{
"name": "net_weight",
"type": "int64"
},{
"name": "cpu_weight",
"type": "int64"
}
]
},{
"name": "setcode",
"base": "",
"fields": [{
"name": "account",
"type": "name"
},{
"name": "vmtype",
"type": "uint8"
},{
"name": "vmversion",
"type": "uint8"
},{
"name": "code",
"type": "bytes"
}
]
},{
"name": "setparams",
"base": "",
"fields": [{
"name": "params",
"type": "blockchain_parameters"
}
]
},{
"name": "setpriv",
"base": "",
"fields": [{
"name": "account",
"type": "name"
},{
"name": "is_priv",
"type": "uint8"
}
]
},{
"name": "setram",
"base": "",
"fields": [{
"name": "max_ram_size",
"type": "uint64"
}
]
},{
"name": "setramrate",
"base": "",
"fields": [{
"name": "bytes_per_block",
"type": "uint16"
}
]
},{
"name": "undelegatebw",
"base": "",
"fields": [{
"name": "from",
"type": "name"
},{
"name": "receiver",
"type": "name"
},{
"name": "unstake_net_quantity",
"type": "asset"
},{
"name": "unstake_cpu_quantity",
"type": "asset"
}
]
},{
"name": "unlinkauth",
"base": "",
"fields": [{
"name": "account",
"type": "name"
},{
"name": "code",
"type": "name"
},{
"name": "type",
"type": "name"
}
]
},{
"name": "unregprod",
"base": "",
"fields": [{
"name": "producer",
"type": "name"
}
]
},{
"name": "updateauth",
"base": "",
"fields": [{
"name": "account",
"type": "name"
},{
"name": "permission",
"type": "name"
},{
"name": "parent",
"type": "name"
},{
"name": "auth",
"type": "authority"
}
]
},{
"name": "updtrevision",
"base": "",
"fields": [{
"name": "revision",
"type": "uint8"
}
]
},{
"name": "user_resources",
"base": "",
"fields": [{
"name": "owner",
"type": "name"
},{
"name": "net_weight",
"type": "asset"
},{
"name": "cpu_weight",
"type": "asset"
},{
"name": "ram_bytes",
"type": "int64"
}
]
},{
"name": "voteproducer",
"base": "",
"fields": [{
"name": "voter",
"type": "name"
},{
"name": "proxy",
"type": "name"
},{
"name": "producers",
"type": "name[]"
}
]
},{
"name": "voter_info",
"base": "",
"fields": [{
"name": "owner",
"type": "name"
},{
"name": "proxy",
"type": "name"
},{
"name": "producers",
"type": "name[]"
},{
"name": "staked",
"type": "int64"
},{
"name": "last_vote_weight",
"type": "float64"
},{
"name": "proxied_vote_weight",
"type": "float64"
},{
"name": "is_proxy",
"type": "bool"
},{
"name": "flags1",
"type": "uint32"
},{
"name": "reserved2",
"type": "uint32"
},{
"name": "reserved3",
"type": "asset"
}
]
},{
"name": "wait_weight",
"base": "",
"fields": [{
"name": "wait_sec",
"type": "uint32"
},{
"name": "weight",
"type": "uint16"
}
]
}
],
"actions": [{
"name": "bidname",
"type": "bidname",
"ricardian_contract": "# Action - `{{ bidname }}`\n\n## Description\n\nThe `{{ bidname }}` action places a bid on a premium account name, in the knowledge that the high bid will purchase the name.\n\nAs an authorized party I {{ signer }} wish to bid on behalf of {{ bidder }} the amount of {{ bid }} toward purchase of the account name {{ newname }}.\n"
},{
"name": "bidrefund",
"type": "bidrefund",
"ricardian_contract": ""
},{
"name": "buyram",
"type": "buyram",
"ricardian_contract": "# Action - `{{ buyram }}`\n\n### Description\n\nThis action will attempt to reserve about {{quant}} worth of RAM on behalf of {{receiver}}. \n\n{{buyer}} authorizes this contract to transfer {{quant}} to buy RAM based upon the current price as determined by the market maker algorithm.\n\n{{buyer}} accepts that a 0.5% fee will be charged on the amount spent and that the actual RAM received may be slightly less than expected due to the approximations necessary to enable this service.\n{{buyer}} accepts that a 0.5% fee will be charged if and when they sell the RAM received.\n{{buyer}} accepts that rounding errors resulting from limits of computational precision may result in less RAM being allocated.\n{{buyer}} acknowledges that the supply of RAM may be increased at any time up to the limits of off-the-shelf computer equipment and that this may result in RAM selling for less than purchase price.\n{{buyer}} acknowledges that the price of RAM may increase or decrease over time according to supply and demand.\n{{buyer}} acknowledges that RAM is non-transferrable. \n{{buyer}} acknowledges RAM currently in use by their account cannot be sold until it is freed and that freeing RAM may be subject to terms of other contracts.\n\n"
},{
"name": "buyrambytes",
"type": "buyrambytes",
"ricardian_contract": "# Action - `{{ buyrambytes }}`\n\n### Description\n\nThis action will attempt to reserve about {{bytes}} bytes of RAM on behalf of {{receiver}}. \n\n{{buyer}} authorizes this contract to transfer sufficient EOS tokens to buy the RAM based upon the current price as determined by the market maker algorithm.\n\n{{buyer}} accepts that a 0.5% fee will be charged on the EOS spent and that the actual RAM received may be slightly less than requested due to the approximations necessary to enable this service.\n{{buyer}} accepts that a 0.5% fee will be charged if and when they sell the RAM received.\n{{buyer}} accepts that rounding errors resulting from limits of computational precision may result in less RAM being allocated.\n{{buyer}} acknowledges that the supply of RAM may be increased at any time up to the limits of off-the-shelf computer equipment and that this may result in RAM selling for less than purchase price.\n{{buyer}} acknowledges that the price of RAM may increase or decrease over time according to supply and demand.\n{{buyer}} acknowledges that RAM is non-transferable. \n{{buyer}} acknowledges RAM currently in use by their account cannot be sold until it is freed and that freeing RAM may be subject to terms of other contracts.\n\n"
},{
"name": "canceldelay",
"type": "canceldelay",
"ricardian_contract": "# Action - `{{ canceldelay }}`\n\n### Description\n\nThe `{{ canceldelay }}` action cancels an existing delayed transaction.\n\nAs an authorized party I {{ signer }} wish to invoke the authority of {{ canceling_auth }} to cancel the transaction with ID {{ trx_id }}.\n"
},{
"name": "claimrewards",
"type": "claimrewards",
"ricardian_contract": "# Action - `{{ claimrewards }}`\n\n## Description\n\nThe `{{ claimrewards }}` action allows a block producer (active or standby) to claim the system rewards due them for producing blocks and receiving votes.\n\nAs an authorized party I {{ signer }} wish to have the rewards earned by {{ owner }} deposited into the {{ owner }} account.\n"
},{
"name": "delegatebw",
"type": "delegatebw",
"ricardian_contract": "# Action - `{{ delegatebw }}`\n\n## Description\n\nThe intent of the `{{ delegatebw }}` action is to stake tokens for bandwidth and/or CPU and optionally transfer ownership.\n\nAs an authorized party I {{ signer }} wish to stake {{ stake_cpu_quantity }} for CPU and {{ stake_net_quantity }} for bandwidth from the liquid tokens of {{ from }} for the use of delegatee {{ to }}. \n \n {{if transfer }}\n \nIt is {{ transfer }} that I wish these tokens to become immediately owned by the delegatee.\n \n {{/if}}\n\nAs signer I stipulate that, if I am not the beneficial owner of these tokens, I have proof that Iu2019ve been authorized to take this action by their beneficial owner(s). \n"
},{
"name": "deleteauth",
"type": "deleteauth",
"ricardian_contract": ""
},{
"name": "init",
"type": "init",
"ricardian_contract": ""
},{
"name": "linkauth",
"type": "linkauth",
"ricardian_contract": ""
},{
"name": "newaccount",
"type": "newaccount",
"ricardian_contract": "# Action - `{{ newaccount }}`\n\n### Description\n\nThe `{{ newaccount }}` action creates a new account.\n\nAs an authorized party I {{ signer }} wish to exercise the authority of {{ creator }} to create a new account on this system named {{ name }} such that the new account's owner public key shall be {{ owner }} and the active public key shall be {{ active }}.\n"
},{
"name": "onblock",
"type": "onblock",
"ricardian_contract": ""
},{
"name": "onerror",
"type": "onerror",
"ricardian_contract": ""
},{
"name": "refund",
"type": "refund",
"ricardian_contract": "# Action - `{{ refund }}`\n\n### Description\n\nThe intent of the `{{ refund }}` action is to return previously unstaked tokens to an account after the unstaking period has elapsed. \n\nAs an authorized party I {{ signer }} wish to have the unstaked tokens of {{ owner }} returned.\n"
},{
"name": "regproducer",
"type": "regproducer",
"ricardian_contract": "# Action - `{{ regproducer }}`\n\n## Description\n\nThe intent of the `{{ regproducer }}` action is to register an account as a BP candidate.\n\nI, {{producer}}, hereby nominate myself for consideration as an elected block producer.\n\nIf {{producer}} is selected to produce blocks by the eosio contract, I will sign blocks with {{producer_key}} and I hereby attest that I will keep this key secret and secure.\n\nIf {{producer}} is unable to perform obligations under this contract I will resign my position by resubmitting this contract with the null producer key.\n\nI acknowledge that a block is 'objectively valid' if it conforms to the deterministic blockchain rules in force at the time of its creation, and is 'objectively invalid' if it fails to conform to those rules.\n\n{{producer}} hereby agrees to only use {{producer_key}} to sign messages under the following scenarios:\nproposing an objectively valid block at the time appointed by the block scheduling algorithm\npre-confirming a block produced by another producer in the schedule when I find said block objectively valid\nconfirming a block for which {{producer}} has received 2/3+ pre-confirmation messages from other producers\n\nI hereby accept liability for any and all provable damages that result from my:\nsigning two different block proposals with the same timestamp with {{producer_key}}\nsigning two different block proposals with the same block number with {{producer_key}}\nsigning any block proposal which builds off of an objectively invalid block\nsigning a pre-confirmation for an objectively invalid block\nsigning a confirmation for a block for which I do not possess pre-confirmation messages from 2/3+ other producers\n\nI hereby agree that double-signing for a timestamp or block number in concert with 2 or more other producers shall automatically be deemed malicious and subject to a fine equal to the past year of compensation received and imediate disqualification from being a producer, and other damages. An exception may be made if {{producer}} can demonstrate that the double-signing occured due to a bug in the reference software; the burden of proof is on {{producer}}.\n\nI hereby agree not to interfere with the producer election process. I agree to process all producer election transactions that occur in blocks I create, to sign all objectively valid blocks I create that contain election transactions, and to sign all pre-confirmations and confirmations necessary to facilitate transfer of control to the next set of producers as determined by the system contract.\n\nI hereby acknowledge that 2/3+ other elected producers may vote to disqualify {{producer}} in the event {{producer}} is unable to produce blocks or is unable to be reached, according to criteria agreed to among producers.\n\nIf {{producer}} qualifies for and chooses to collect compensation due to votes received, {{producer}} will provide a public endpoint allowing at least 100 peers to maintain synchronization with the blockchain and/or submit transactions to be included. {{producer}} shall maintain at least 1 validating node with full state and signature checking and shall report any objectively invalid blocks produced by the active block producers. Reporting shall be via a method to be agreed to among producers, said method and reports to be made public.\n\nThe community agrees to allow {{producer}} to authenticate peers as necessary to prevent abuse and denial of service attacks; however, {{producer}} agrees not to discriminate against non-abusive peers.\n\nI agree to process transactions on a FIFO best-effort basis and to honestly bill transactions for measured execution time.\n\nI {{producer}} agree not to manipulate the contents of blocks in order to derive profit from:\nthe order in which transactions are included\nthe hash of the block that is produced\n\nI, {{producer}}, hereby agree to disclose and attest under penalty of perjury all ultimate beneficial owners of my company who own more than 10% and all direct shareholders.\n\nI, {{producer}}, hereby agree to cooperate with other block producers to carry out our respective and mutual obligations under this agreement, including but not limited to maintaining network stability and a valid blockchain.\n\nI, {{producer}}, agree to maintain a website hosted at {{url}} which contains up-to-date information on all disclosures required by this contract.\n\nI, {{producer}}, agree to set {{location}} such that {{producer}} is scheduled with minimal latency between my previous and next peer.\n\nI, {{producer}}, agree to maintain time synchronization within 10 ms of global atomic clock time, using a method agreed to among producers.\n\nI, {{producer}}, agree not to produce blocks before my scheduled time unless I have received all blocks produced by the prior producer.\n\nI, {{producer}}, agree not to publish blocks with timestamps more than 500ms in the future unless the prior block is more than 75% full by either CPU or network bandwidth metrics.\n\nI, {{producer}}, agree not to set the RAM supply to more RAM than my nodes contain and to resign if I am unable to provide the RAM approved by 2/3+ producers, as shown in the system parameters.\n"
},{
"name": "regproxy",
"type": "regproxy",
"ricardian_contract": ""
},{
"name": "rmvproducer",
"type": "rmvproducer",
"ricardian_contract": ""
},{
"name": "sellram",
"type": "sellram",
"ricardian_contract": "# Action - `{{ sellram }}`\n\n## Description\n\nThe `{{ sellram }}` action sells unused RAM for tokens.\n\nAs an authorized party I {{ signer }} wish to sell {{ bytes }} of unused RAM from account {{ account }}. \n"
},{
"name": "setabi",
"type": "setabi",
"ricardian_contract": ""
},{
"name": "setacctcpu",
"type": "setacctcpu",
"ricardian_contract": ""
},{
"name": "setacctnet",
"type": "setacctnet",
"ricardian_contract": ""
},{
"name": "setacctram",
"type": "setacctram",
"ricardian_contract": ""
},{
"name": "setalimits",
"type": "setalimits",
"ricardian_contract": ""
},{
"name": "setcode",
"type": "setcode",
"ricardian_contract": ""
},{
"name": "setparams",
"type": "setparams",
"ricardian_contract": ""
},{
"name": "setpriv",
"type": "setpriv",
"ricardian_contract": ""
},{
"name": "setram",
"type": "setram",
"ricardian_contract": ""
},{
"name": "setramrate",
"type": "setramrate",
"ricardian_contract": ""
},{
"name": "undelegatebw",
"type": "undelegatebw",
"ricardian_contract": "# Action - `{{ undelegatebw }}`\n\n## Description\n\nThe intent of the `{{ undelegatebw }}` action is to unstake tokens from CPU and/or bandwidth. \n\nAs an authorized party I {{ signer }} wish to unstake {{ unstake_cpu_quantity }} from CPU and {{ unstake_net_quantity }} from bandwidth from the tokens owned by {{ from }} previously delegated for the use of delegatee {{ to }}. \n\nIf I as signer am not the beneficial owner of these tokens I stipulate I have proof that Iu2019ve been authorized to take this action by their beneficial owner(s). \n"
},{
"name": "unlinkauth",
"type": "unlinkauth",
"ricardian_contract": ""
},{
"name": "unregprod",
"type": "unregprod",
"ricardian_contract": "# Action - `{{ unregprod }}`\n\n## Description\n\nThe `{{ unregprod }}` action unregisters a previously registered block producer candidate.\n\nAs an authorized party I {{ signer }} wish to unregister the block producer candidate {{ producer }}, rendering that candidate no longer able to receive votes.\n"
},{
"name": "updateauth",
"type": "updateauth",
"ricardian_contract": ""
},{
"name": "updtrevision",
"type": "updtrevision",
"ricardian_contract": ""
},{
"name": "voteproducer",
"type": "voteproducer",
"ricardian_contract": "# Action - `{{ voteproducer }}`\n\n## Description\n\nThe intent of the `{{ voteproducer }}` action is to cast a valid vote for up to 30 BP candidates. \n\nAs an authorized party I {{ signer }} wish to vote on behalf of {{ voter }} in favor of the block producer candidates {{ producers }} with a voting weight equal to all tokens currently owned by {{ voter }} and staked for CPU or bandwidth. \n\nIf I am not the beneficial owner of these shares I stipulate I have proof that Iu2019ve been authorized to vote these shares by their beneficial owner(s). \n\nI stipulate I have not and will not accept anything of value in exchange for these votes, on penalty of confiscation of these tokens, and other penalties. \n\nI acknowledge that using any system of automatic voting, re-voting, or vote refreshing, or allowing such a system to be used on my behalf or on behalf of another, is forbidden and doing so violates this contract.\n"
}
],
"tables": [{
"name": "abihash",
"index_type": "i64",
"key_names": [],
"key_types": [],
"type": "abi_hash"
},{
"name": "bidrefunds",