-
Notifications
You must be signed in to change notification settings - Fork 3
/
pvm.pb.go
3668 lines (3565 loc) · 90.7 KB
/
pvm.pb.go
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
// Code generated by protoc-gen-gogo. DO NOT EDIT.
// source: ethermint/evm/v1/pvm.proto
package pvm
import (
"fmt"
_ "github.com/gogo/protobuf/gogoproto"
"github.com/gogo/protobuf/proto"
github_com_oracleNetworkProtocol_plugchain_sdk_go_types "github.com/oracleNetworkProtocol/plugchain-sdk-go/types"
"io"
"math"
math_bits "math/bits"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package
// Params defines the EVM module parameters
type Params struct {
// evm denom represents the token denomination used to run the EVM state
// transitions.
EvmDenom string `protobuf:"bytes,1,opt,name=evm_denom,json=evmDenom,proto3" json:"evm_denom,omitempty" yaml:"evm_denom"`
// enable create toggles state transitions that use the vm.Create function
EnableCreate bool `protobuf:"varint,2,opt,name=enable_create,json=enableCreate,proto3" json:"enable_create,omitempty" yaml:"enable_create"`
// enable call toggles state transitions that use the vm.Call function
EnableCall bool `protobuf:"varint,3,opt,name=enable_call,json=enableCall,proto3" json:"enable_call,omitempty" yaml:"enable_call"`
// extra eips defines the additional EIPs for the vm.Config
ExtraEIPs []int64 `protobuf:"varint,4,rep,packed,name=extra_eips,json=extraEips,proto3" json:"extra_eips,omitempty" yaml:"extra_eips"`
// chain config defines the EVM chain configuration parameters
ChainConfig ChainConfig `protobuf:"bytes,5,opt,name=chain_config,json=chainConfig,proto3" json:"chain_config" yaml:"chain_config"`
}
func (m *Params) Reset() { *m = Params{} }
func (m *Params) String() string { return proto.CompactTextString(m) }
func (*Params) ProtoMessage() {}
func (*Params) Descriptor() ([]byte, []int) {
return fileDescriptor_96fc4c7db2ea00d5, []int{0}
}
func (m *Params) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *Params) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_Params.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *Params) XXX_Merge(src proto.Message) {
xxx_messageInfo_Params.Merge(m, src)
}
func (m *Params) XXX_Size() int {
return m.Size()
}
func (m *Params) XXX_DiscardUnknown() {
xxx_messageInfo_Params.DiscardUnknown(m)
}
var xxx_messageInfo_Params proto.InternalMessageInfo
func (m *Params) GetEvmDenom() string {
if m != nil {
return m.EvmDenom
}
return ""
}
func (m *Params) GetEnableCreate() bool {
if m != nil {
return m.EnableCreate
}
return false
}
func (m *Params) GetEnableCall() bool {
if m != nil {
return m.EnableCall
}
return false
}
func (m *Params) GetExtraEIPs() []int64 {
if m != nil {
return m.ExtraEIPs
}
return nil
}
func (m *Params) GetChainConfig() ChainConfig {
if m != nil {
return m.ChainConfig
}
return ChainConfig{}
}
// ChainConfig defines the Ethereum ChainConfig parameters using *sdk.Int values
// instead of *big.Int.
type ChainConfig struct {
// Homestead switch block (nil no fork, 0 = already homestead)
HomesteadBlock *github_com_oracleNetworkProtocol_plugchain_sdk_go_types.Int `protobuf:"bytes,1,opt,name=homestead_block,json=homesteadBlock,proto3,customtype=github.com/oracleNetworkProtocol/plugchain-sdk-go/types.Int" json:"homestead_block,omitempty" yaml:"homestead_block"`
// TheDAO hard-fork switch block (nil no fork)
DAOForkBlock *github_com_oracleNetworkProtocol_plugchain_sdk_go_types.Int `protobuf:"bytes,2,opt,name=dao_fork_block,json=daoForkBlock,proto3,customtype=github.com/oracleNetworkProtocol/plugchain-sdk-go/types.Int" json:"dao_fork_block,omitempty" yaml:"dao_fork_block"`
// Whether the nodes supports or opposes the DAO hard-fork
DAOForkSupport bool `protobuf:"varint,3,opt,name=dao_fork_support,json=daoForkSupport,proto3" json:"dao_fork_support,omitempty" yaml:"dao_fork_support"`
// EIP150 implements the Gas price changes
// (https://github.com/ethereum/EIPs/issues/150) EIP150 HF block (nil no fork)
EIP150Block *github_com_oracleNetworkProtocol_plugchain_sdk_go_types.Int `protobuf:"bytes,4,opt,name=eip150_block,json=eip150Block,proto3,customtype=github.com/oracleNetworkProtocol/plugchain-sdk-go/types.Int" json:"eip150_block,omitempty" yaml:"eip150_block"`
// EIP150 HF hash (needed for header only clients as only gas pricing changed)
EIP150Hash string `protobuf:"bytes,5,opt,name=eip150_hash,json=eip150Hash,proto3" json:"eip150_hash,omitempty" yaml:"byzantium_block"`
// EIP155Block HF block
EIP155Block *github_com_oracleNetworkProtocol_plugchain_sdk_go_types.Int `protobuf:"bytes,6,opt,name=eip155_block,json=eip155Block,proto3,customtype=github.com/oracleNetworkProtocol/plugchain-sdk-go/types.Int" json:"eip155_block,omitempty" yaml:"eip155_block"`
// EIP158 HF block
EIP158Block *github_com_oracleNetworkProtocol_plugchain_sdk_go_types.Int `protobuf:"bytes,7,opt,name=eip158_block,json=eip158Block,proto3,customtype=github.com/oracleNetworkProtocol/plugchain-sdk-go/types.Int" json:"eip158_block,omitempty" yaml:"eip158_block"`
// Byzantium switch block (nil no fork, 0 = already on byzantium)
ByzantiumBlock *github_com_oracleNetworkProtocol_plugchain_sdk_go_types.Int `protobuf:"bytes,8,opt,name=byzantium_block,json=byzantiumBlock,proto3,customtype=github.com/oracleNetworkProtocol/plugchain-sdk-go/types.Int" json:"byzantium_block,omitempty" yaml:"byzantium_block"`
// Constantinople switch block (nil no fork, 0 = already activated)
ConstantinopleBlock *github_com_oracleNetworkProtocol_plugchain_sdk_go_types.Int `protobuf:"bytes,9,opt,name=constantinople_block,json=constantinopleBlock,proto3,customtype=github.com/oracleNetworkProtocol/plugchain-sdk-go/types.Int" json:"constantinople_block,omitempty" yaml:"constantinople_block"`
// Petersburg switch block (nil same as Constantinople)
PetersburgBlock *github_com_oracleNetworkProtocol_plugchain_sdk_go_types.Int `protobuf:"bytes,10,opt,name=petersburg_block,json=petersburgBlock,proto3,customtype=github.com/oracleNetworkProtocol/plugchain-sdk-go/types.Int" json:"petersburg_block,omitempty" yaml:"petersburg_block"`
// Istanbul switch block (nil no fork, 0 = already on istanbul)
IstanbulBlock *github_com_oracleNetworkProtocol_plugchain_sdk_go_types.Int `protobuf:"bytes,11,opt,name=istanbul_block,json=istanbulBlock,proto3,customtype=github.com/oracleNetworkProtocol/plugchain-sdk-go/types.Int" json:"istanbul_block,omitempty" yaml:"istanbul_block"`
// Eip-2384 (bomb delay) switch block (nil no fork, 0 = already activated)
MuirGlacierBlock *github_com_oracleNetworkProtocol_plugchain_sdk_go_types.Int `protobuf:"bytes,12,opt,name=muir_glacier_block,json=muirGlacierBlock,proto3,customtype=github.com/oracleNetworkProtocol/plugchain-sdk-go/types.Int" json:"muir_glacier_block,omitempty" yaml:"muir_glacier_block"`
// Berlin switch block (nil = no fork, 0 = already on berlin)
BerlinBlock *github_com_oracleNetworkProtocol_plugchain_sdk_go_types.Int `protobuf:"bytes,13,opt,name=berlin_block,json=berlinBlock,proto3,customtype=github.com/oracleNetworkProtocol/plugchain-sdk-go/types.Int" json:"berlin_block,omitempty" yaml:"berlin_block"`
// London switch block (nil = no fork, 0 = already on london)
LondonBlock *github_com_oracleNetworkProtocol_plugchain_sdk_go_types.Int `protobuf:"bytes,17,opt,name=london_block,json=londonBlock,proto3,customtype=github.com/oracleNetworkProtocol/plugchain-sdk-go/types.Int" json:"london_block,omitempty" yaml:"london_block"`
}
func (m *ChainConfig) Reset() { *m = ChainConfig{} }
func (m *ChainConfig) String() string { return proto.CompactTextString(m) }
func (*ChainConfig) ProtoMessage() {}
func (*ChainConfig) Descriptor() ([]byte, []int) {
return fileDescriptor_96fc4c7db2ea00d5, []int{1}
}
func (m *ChainConfig) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *ChainConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_ChainConfig.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *ChainConfig) XXX_Merge(src proto.Message) {
xxx_messageInfo_ChainConfig.Merge(m, src)
}
func (m *ChainConfig) XXX_Size() int {
return m.Size()
}
func (m *ChainConfig) XXX_DiscardUnknown() {
xxx_messageInfo_ChainConfig.DiscardUnknown(m)
}
var xxx_messageInfo_ChainConfig proto.InternalMessageInfo
func (m *ChainConfig) GetDAOForkSupport() bool {
if m != nil {
return m.DAOForkSupport
}
return false
}
func (m *ChainConfig) GetEIP150Hash() string {
if m != nil {
return m.EIP150Hash
}
return ""
}
// State represents a single Storage key value pair item.
type State struct {
Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
}
func (m *State) Reset() { *m = State{} }
func (m *State) String() string { return proto.CompactTextString(m) }
func (*State) ProtoMessage() {}
func (*State) Descriptor() ([]byte, []int) {
return fileDescriptor_96fc4c7db2ea00d5, []int{2}
}
func (m *State) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *State) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_State.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *State) XXX_Merge(src proto.Message) {
xxx_messageInfo_State.Merge(m, src)
}
func (m *State) XXX_Size() int {
return m.Size()
}
func (m *State) XXX_DiscardUnknown() {
xxx_messageInfo_State.DiscardUnknown(m)
}
var xxx_messageInfo_State proto.InternalMessageInfo
func (m *State) GetKey() string {
if m != nil {
return m.Key
}
return ""
}
func (m *State) GetValue() string {
if m != nil {
return m.Value
}
return ""
}
// TransactionLogs define the logs generated from a transaction execution
// with a given hash. It it used for import/export data as transactions are not
// persisted on blockchain state after an upgrade.
type TransactionLogs struct {
Hash string `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
Logs []*Log `protobuf:"bytes,2,rep,name=logs,proto3" json:"logs,omitempty"`
}
func (m *TransactionLogs) Reset() { *m = TransactionLogs{} }
func (m *TransactionLogs) String() string { return proto.CompactTextString(m) }
func (*TransactionLogs) ProtoMessage() {}
func (*TransactionLogs) Descriptor() ([]byte, []int) {
return fileDescriptor_96fc4c7db2ea00d5, []int{3}
}
func (m *TransactionLogs) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *TransactionLogs) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_TransactionLogs.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *TransactionLogs) XXX_Merge(src proto.Message) {
xxx_messageInfo_TransactionLogs.Merge(m, src)
}
func (m *TransactionLogs) XXX_Size() int {
return m.Size()
}
func (m *TransactionLogs) XXX_DiscardUnknown() {
xxx_messageInfo_TransactionLogs.DiscardUnknown(m)
}
var xxx_messageInfo_TransactionLogs proto.InternalMessageInfo
func (m *TransactionLogs) GetHash() string {
if m != nil {
return m.Hash
}
return ""
}
func (m *TransactionLogs) GetLogs() []*Log {
if m != nil {
return m.Logs
}
return nil
}
// Log represents an protobuf compatible Ethereum Log that defines a contract
// log event. These events are generated by the LOG opcode and stored/indexed by
// the node.
type Log struct {
// address of the contract that generated the event
Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
// list of topics provided by the contract.
Topics []string `protobuf:"bytes,2,rep,name=topics,proto3" json:"topics,omitempty"`
// supplied by the contract, usually ABI-encoded
Data []byte `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
// block in which the transaction was included
BlockNumber uint64 `protobuf:"varint,4,opt,name=block_number,json=blockNumber,proto3" json:"blockNumber"`
// hash of the transaction
TxHash string `protobuf:"bytes,5,opt,name=tx_hash,json=txHash,proto3" json:"transactionHash"`
// index of the transaction in the block
TxIndex uint64 `protobuf:"varint,6,opt,name=tx_index,json=txIndex,proto3" json:"transactionIndex"`
// hash of the block in which the transaction was included
BlockHash string `protobuf:"bytes,7,opt,name=block_hash,json=blockHash,proto3" json:"blockHash"`
// index of the log in the block
Index uint64 `protobuf:"varint,8,opt,name=index,proto3" json:"logIndex"`
// The Removed field is true if this log was reverted due to a chain
// reorganisation. You must pay attention to this field if you receive logs
// through a filter query.
Removed bool `protobuf:"varint,9,opt,name=removed,proto3" json:"removed,omitempty"`
}
func (m *Log) Reset() { *m = Log{} }
func (m *Log) String() string { return proto.CompactTextString(m) }
func (*Log) ProtoMessage() {}
func (*Log) Descriptor() ([]byte, []int) {
return fileDescriptor_96fc4c7db2ea00d5, []int{4}
}
func (m *Log) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *Log) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_Log.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *Log) XXX_Merge(src proto.Message) {
xxx_messageInfo_Log.Merge(m, src)
}
func (m *Log) XXX_Size() int {
return m.Size()
}
func (m *Log) XXX_DiscardUnknown() {
xxx_messageInfo_Log.DiscardUnknown(m)
}
var xxx_messageInfo_Log proto.InternalMessageInfo
func (m *Log) GetAddress() string {
if m != nil {
return m.Address
}
return ""
}
func (m *Log) GetTopics() []string {
if m != nil {
return m.Topics
}
return nil
}
func (m *Log) GetData() []byte {
if m != nil {
return m.Data
}
return nil
}
func (m *Log) GetBlockNumber() uint64 {
if m != nil {
return m.BlockNumber
}
return 0
}
func (m *Log) GetTxHash() string {
if m != nil {
return m.TxHash
}
return ""
}
func (m *Log) GetTxIndex() uint64 {
if m != nil {
return m.TxIndex
}
return 0
}
func (m *Log) GetBlockHash() string {
if m != nil {
return m.BlockHash
}
return ""
}
func (m *Log) GetIndex() uint64 {
if m != nil {
return m.Index
}
return 0
}
func (m *Log) GetRemoved() bool {
if m != nil {
return m.Removed
}
return false
}
// TxResult stores results of Tx execution.
type TxResult struct {
// contract_address contains the ethereum address of the created contract (if
// any). If the state transition is an evm.Call, the contract address will be
// empty.
ContractAddress string `protobuf:"bytes,1,opt,name=contract_address,json=contractAddress,proto3" json:"contract_address,omitempty" yaml:"contract_address"`
// bloom represents the bloom filter bytes
Bloom []byte `protobuf:"bytes,2,opt,name=bloom,proto3" json:"bloom,omitempty"`
// tx_logs contains the transaction hash and the proto-compatible ethereum
// logs.
TxLogs TransactionLogs `protobuf:"bytes,3,opt,name=tx_logs,json=txLogs,proto3" json:"tx_logs" yaml:"tx_logs"`
// ret defines the bytes from the execution.
Ret []byte `protobuf:"bytes,4,opt,name=ret,proto3" json:"ret,omitempty"`
// reverted flag is set to true when the call has been reverted
Reverted bool `protobuf:"varint,5,opt,name=reverted,proto3" json:"reverted,omitempty"`
// gas_used notes the amount of gas consumed while execution
GasUsed uint64 `protobuf:"varint,6,opt,name=gas_used,json=gasUsed,proto3" json:"gas_used,omitempty"`
}
func (m *TxResult) Reset() { *m = TxResult{} }
func (m *TxResult) String() string { return proto.CompactTextString(m) }
func (*TxResult) ProtoMessage() {}
func (*TxResult) Descriptor() ([]byte, []int) {
return fileDescriptor_96fc4c7db2ea00d5, []int{5}
}
func (m *TxResult) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *TxResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_TxResult.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *TxResult) XXX_Merge(src proto.Message) {
xxx_messageInfo_TxResult.Merge(m, src)
}
func (m *TxResult) XXX_Size() int {
return m.Size()
}
func (m *TxResult) XXX_DiscardUnknown() {
xxx_messageInfo_TxResult.DiscardUnknown(m)
}
var xxx_messageInfo_TxResult proto.InternalMessageInfo
// AccessTuple is the element type of an access list.
type AccessTuple struct {
// hex formatted ethereum address
Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
// hex formatted hashes of the storage keys
StorageKeys []string `protobuf:"bytes,2,rep,name=storage_keys,json=storageKeys,proto3" json:"storageKeys"`
}
func (m *AccessTuple) Reset() { *m = AccessTuple{} }
func (m *AccessTuple) String() string { return proto.CompactTextString(m) }
func (*AccessTuple) ProtoMessage() {}
func (*AccessTuple) Descriptor() ([]byte, []int) {
return fileDescriptor_96fc4c7db2ea00d5, []int{6}
}
func (m *AccessTuple) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *AccessTuple) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_AccessTuple.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *AccessTuple) XXX_Merge(src proto.Message) {
xxx_messageInfo_AccessTuple.Merge(m, src)
}
func (m *AccessTuple) XXX_Size() int {
return m.Size()
}
func (m *AccessTuple) XXX_DiscardUnknown() {
xxx_messageInfo_AccessTuple.DiscardUnknown(m)
}
var xxx_messageInfo_AccessTuple proto.InternalMessageInfo
// TraceConfig holds extra parameters to trace functions.
type TraceConfig struct {
// custom javascript tracer
Tracer string `protobuf:"bytes,1,opt,name=tracer,proto3" json:"tracer,omitempty"`
// overrides the default timeout of 5 seconds for JavaScript-based tracing
// calls
Timeout string `protobuf:"bytes,2,opt,name=timeout,proto3" json:"timeout,omitempty"`
// number of blocks the tracer is willing to go back
Reexec uint64 `protobuf:"varint,3,opt,name=reexec,proto3" json:"reexec,omitempty"`
// disable stack capture
DisableStack bool `protobuf:"varint,5,opt,name=disable_stack,json=disableStack,proto3" json:"disableStack"`
// disable storage capture
DisableStorage bool `protobuf:"varint,6,opt,name=disable_storage,json=disableStorage,proto3" json:"disableStorage"`
// print output during capture end
Debug bool `protobuf:"varint,8,opt,name=debug,proto3" json:"debug,omitempty"`
// maximum length of output, but zero means unlimited
Limit int32 `protobuf:"varint,9,opt,name=limit,proto3" json:"limit,omitempty"`
// Chain overrides, can be used to execute a trace using future fork rules
Overrides *ChainConfig `protobuf:"bytes,10,opt,name=overrides,proto3" json:"overrides,omitempty"`
// enable memory capture
EnableMemory bool `protobuf:"varint,11,opt,name=enable_memory,json=enableMemory,proto3" json:"enableMemory"`
// enable return data capture
EnableReturnData bool `protobuf:"varint,12,opt,name=enable_return_data,json=enableReturnData,proto3" json:"enableReturnData"`
}
func (m *TraceConfig) Reset() { *m = TraceConfig{} }
func (m *TraceConfig) String() string { return proto.CompactTextString(m) }
func (*TraceConfig) ProtoMessage() {}
func (*TraceConfig) Descriptor() ([]byte, []int) {
return fileDescriptor_96fc4c7db2ea00d5, []int{7}
}
func (m *TraceConfig) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *TraceConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_TraceConfig.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *TraceConfig) XXX_Merge(src proto.Message) {
xxx_messageInfo_TraceConfig.Merge(m, src)
}
func (m *TraceConfig) XXX_Size() int {
return m.Size()
}
func (m *TraceConfig) XXX_DiscardUnknown() {
xxx_messageInfo_TraceConfig.DiscardUnknown(m)
}
var xxx_messageInfo_TraceConfig proto.InternalMessageInfo
func (m *TraceConfig) GetTracer() string {
if m != nil {
return m.Tracer
}
return ""
}
func (m *TraceConfig) GetTimeout() string {
if m != nil {
return m.Timeout
}
return ""
}
func (m *TraceConfig) GetReexec() uint64 {
if m != nil {
return m.Reexec
}
return 0
}
func (m *TraceConfig) GetDisableStack() bool {
if m != nil {
return m.DisableStack
}
return false
}
func (m *TraceConfig) GetDisableStorage() bool {
if m != nil {
return m.DisableStorage
}
return false
}
func (m *TraceConfig) GetDebug() bool {
if m != nil {
return m.Debug
}
return false
}
func (m *TraceConfig) GetLimit() int32 {
if m != nil {
return m.Limit
}
return 0
}
func (m *TraceConfig) GetOverrides() *ChainConfig {
if m != nil {
return m.Overrides
}
return nil
}
func (m *TraceConfig) GetEnableMemory() bool {
if m != nil {
return m.EnableMemory
}
return false
}
func (m *TraceConfig) GetEnableReturnData() bool {
if m != nil {
return m.EnableReturnData
}
return false
}
func init() {
proto.RegisterType((*Params)(nil), "ethermint.evm.v1.Params")
proto.RegisterType((*ChainConfig)(nil), "ethermint.evm.v1.ChainConfig")
proto.RegisterType((*State)(nil), "ethermint.evm.v1.State")
proto.RegisterType((*TransactionLogs)(nil), "ethermint.evm.v1.TransactionLogs")
proto.RegisterType((*Log)(nil), "ethermint.evm.v1.Log")
proto.RegisterType((*TxResult)(nil), "ethermint.evm.v1.TxResult")
proto.RegisterType((*AccessTuple)(nil), "ethermint.evm.v1.AccessTuple")
proto.RegisterType((*TraceConfig)(nil), "ethermint.evm.v1.TraceConfig")
}
func init() { proto.RegisterFile("ethermint/evm/v1/pvm.proto", fileDescriptor_96fc4c7db2ea00d5) }
var fileDescriptor_96fc4c7db2ea00d5 = []byte{
// 1460 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0x4f, 0x6f, 0xdb, 0x36,
0x1b, 0x8f, 0x63, 0x27, 0x91, 0x69, 0xc7, 0x56, 0x99, 0x34, 0xaf, 0xdb, 0xe2, 0x8d, 0xf2, 0xea,
0x94, 0x17, 0x68, 0xe3, 0x26, 0x45, 0xb0, 0xa2, 0x45, 0x0f, 0x71, 0x9b, 0x6e, 0xc9, 0xba, 0x2e,
0x60, 0xb3, 0x75, 0x2b, 0xb6, 0x09, 0xb4, 0xc4, 0xca, 0x82, 0x25, 0xd1, 0x20, 0x29, 0xd7, 0xde,
0x65, 0xc0, 0x80, 0x01, 0xc5, 0x06, 0x0c, 0xdb, 0x37, 0xd8, 0xc7, 0x29, 0xb6, 0x4b, 0x2f, 0x03,
0x86, 0x1d, 0x84, 0x22, 0xbd, 0xe5, 0xe8, 0x4f, 0x30, 0x88, 0xa4, 0xff, 0xa6, 0xd8, 0x30, 0x24,
0x37, 0xfe, 0x9e, 0xbf, 0xbf, 0x87, 0x7c, 0xa8, 0x87, 0x02, 0x57, 0x89, 0x68, 0x11, 0x16, 0x05,
0xb1, 0xa8, 0x93, 0x6e, 0x54, 0xef, 0x6e, 0xd7, 0x3b, 0xdd, 0x68, 0xab, 0xc3, 0xa8, 0xa0, 0xd0,
0x1c, 0xe9, 0xb6, 0x48, 0x37, 0xda, 0xea, 0x6e, 0x5f, 0x5d, 0xf5, 0xa9, 0x4f, 0xa5, 0xb2, 0x9e,
0xad, 0x94, 0x9d, 0xfd, 0xfb, 0x3c, 0x58, 0x3c, 0xc2, 0x0c, 0x47, 0x1c, 0x6e, 0x83, 0x22, 0xe9,
0x46, 0x8e, 0x47, 0x62, 0x1a, 0xd5, 0x72, 0x1b, 0xb9, 0xcd, 0x62, 0x63, 0x75, 0x90, 0x5a, 0x66,
0x1f, 0x47, 0xe1, 0x1d, 0x7b, 0xa4, 0xb2, 0x91, 0x41, 0xba, 0xd1, 0x83, 0x6c, 0x09, 0xef, 0x81,
0x65, 0x12, 0xe3, 0x66, 0x48, 0x1c, 0x97, 0x11, 0x2c, 0x48, 0x6d, 0x7e, 0x23, 0xb7, 0x69, 0x34,
0x6a, 0x83, 0xd4, 0x5a, 0xd5, 0x6e, 0x93, 0x6a, 0x1b, 0x95, 0x15, 0xbe, 0x2f, 0x21, 0x7c, 0x0f,
0x94, 0x86, 0x7a, 0x1c, 0x86, 0xb5, 0xbc, 0x74, 0x5e, 0x1b, 0xa4, 0x16, 0x9c, 0x76, 0xc6, 0x61,
0x68, 0x23, 0xa0, 0x5d, 0x71, 0x18, 0xc2, 0x3d, 0x00, 0x48, 0x4f, 0x30, 0xec, 0x90, 0xa0, 0xc3,
0x6b, 0x85, 0x8d, 0xfc, 0x66, 0xbe, 0x61, 0x9f, 0xa4, 0x56, 0x71, 0x3f, 0x93, 0xee, 0x1f, 0x1c,
0xf1, 0x41, 0x6a, 0x5d, 0xd2, 0x41, 0x46, 0x86, 0x36, 0x2a, 0x4a, 0xb0, 0x1f, 0x74, 0x38, 0xfc,
0x12, 0x94, 0xdd, 0x16, 0x0e, 0x62, 0xc7, 0xa5, 0xf1, 0xf3, 0xc0, 0xaf, 0x2d, 0x6c, 0xe4, 0x36,
0x4b, 0x3b, 0xff, 0xdd, 0x9a, 0xdd, 0xb7, 0xad, 0xfb, 0x99, 0xd5, 0x7d, 0x69, 0xd4, 0xb8, 0xf6,
0x2a, 0xb5, 0xe6, 0x06, 0xa9, 0xb5, 0xa2, 0x42, 0x4f, 0x06, 0xb0, 0x51, 0xc9, 0x1d, 0x5b, 0xda,
0xbf, 0x55, 0x40, 0x69, 0xc2, 0x13, 0x7e, 0x9b, 0x03, 0xd5, 0x16, 0x8d, 0x08, 0x17, 0x04, 0x7b,
0x4e, 0x33, 0xa4, 0x6e, 0x5b, 0xef, 0xf1, 0xe7, 0x7f, 0xa6, 0xd6, 0x5d, 0x3f, 0x10, 0xad, 0xa4,
0xb9, 0xe5, 0xd2, 0xa8, 0x4e, 0x19, 0x76, 0x43, 0xf2, 0x98, 0x88, 0x17, 0x94, 0xb5, 0x8f, 0xb2,
0x43, 0x72, 0x69, 0x58, 0xef, 0x84, 0x89, 0x2f, 0xe3, 0xdf, 0xe0, 0x5e, 0xfb, 0x86, 0x4f, 0xeb,
0xa2, 0xdf, 0x21, 0x7c, 0xeb, 0x20, 0x16, 0x83, 0xd4, 0x5a, 0x53, 0x74, 0x66, 0xe2, 0xdb, 0xa8,
0x32, 0x92, 0x34, 0x32, 0x01, 0xfc, 0x31, 0x07, 0x2a, 0x1e, 0xa6, 0xce, 0x73, 0xca, 0xda, 0x9a,
0xc3, 0xbc, 0xe4, 0xd0, 0x3a, 0x27, 0x87, 0x93, 0xd4, 0x2a, 0x3f, 0xd8, 0xfb, 0xf8, 0x21, 0x65,
0x6d, 0x99, 0x69, 0x90, 0x5a, 0x97, 0x15, 0xa7, 0xe9, 0x74, 0x36, 0x2a, 0x7b, 0x98, 0x8e, 0xcc,
0xe0, 0x53, 0x60, 0x8e, 0x0c, 0x78, 0xd2, 0xe9, 0x50, 0x26, 0x74, 0x17, 0xdc, 0x38, 0x49, 0xad,
0x8a, 0x0e, 0xf9, 0x44, 0x69, 0x06, 0xa9, 0xf5, 0x9f, 0x99, 0xa0, 0xda, 0xc7, 0x46, 0x15, 0x1d,
0x56, 0x9b, 0xc2, 0x97, 0x39, 0x50, 0x26, 0x41, 0x67, 0x7b, 0xf7, 0xa6, 0xae, 0xb3, 0x20, 0xeb,
0x24, 0xe7, 0xaf, 0xb3, 0xb4, 0x7f, 0x70, 0xb4, 0xbd, 0x7b, 0x73, 0x58, 0xa6, 0xee, 0x84, 0xc9,
0x5c, 0x36, 0x2a, 0x29, 0xa8, 0x6a, 0x3c, 0x00, 0x1a, 0x3a, 0x2d, 0xcc, 0x5b, 0xb2, 0xcf, 0x8a,
0x8d, 0xcd, 0x93, 0xd4, 0x02, 0x2a, 0xd2, 0x07, 0x98, 0xb7, 0xc6, 0x67, 0xd8, 0xec, 0x7f, 0x8d,
0x63, 0x11, 0x24, 0xd1, 0x30, 0x16, 0x50, 0xce, 0x99, 0xd5, 0xb8, 0xaa, 0x5d, 0x5d, 0xd5, 0xe2,
0xc5, 0x56, 0xb5, 0xfb, 0xae, 0xaa, 0x76, 0xa7, 0xab, 0x52, 0x36, 0x63, 0x2a, 0xb7, 0x35, 0x95,
0xa5, 0x8b, 0xa5, 0x72, 0xfb, 0x5d, 0x54, 0x6e, 0x4f, 0x53, 0x51, 0x36, 0xf2, 0x6a, 0xcd, 0x6c,
0x5b, 0xcd, 0xb8, 0xe0, 0xab, 0x75, 0xe6, 0x58, 0x2a, 0x23, 0x89, 0x22, 0xf1, 0x73, 0x0e, 0xac,
0xba, 0x34, 0xe6, 0x22, 0x13, 0xc6, 0xb4, 0x13, 0x12, 0xcd, 0xa4, 0x28, 0x99, 0x7c, 0x75, 0x7e,
0x26, 0xd7, 0xf4, 0x37, 0xe7, 0x1d, 0x49, 0x6c, 0xb4, 0x32, 0x2d, 0x56, 0x9c, 0xbe, 0xcb, 0x01,
0xb3, 0x43, 0x04, 0x61, 0xbc, 0x99, 0x30, 0x5f, 0xf3, 0x01, 0x92, 0xcf, 0xb3, 0xf3, 0xf3, 0xd1,
0x77, 0x71, 0x36, 0x81, 0x8d, 0xaa, 0x63, 0x91, 0xe2, 0xf1, 0x0d, 0xa8, 0x04, 0x19, 0xb9, 0x66,
0x12, 0x6a, 0x12, 0x25, 0x49, 0xe2, 0xb3, 0xf3, 0x93, 0xd0, 0x5f, 0x99, 0xe9, 0xf0, 0x36, 0x5a,
0x1e, 0x0a, 0x14, 0x81, 0xef, 0x73, 0x00, 0x46, 0x49, 0xc0, 0x1c, 0x3f, 0xc4, 0x6e, 0x40, 0x98,
0x66, 0x51, 0x96, 0x2c, 0xbe, 0x38, 0x3f, 0x8b, 0x2b, 0x8a, 0xc5, 0xd9, 0x14, 0x36, 0x32, 0x33,
0xe1, 0xfb, 0x4a, 0xa6, 0xc8, 0xf4, 0x41, 0xb9, 0x49, 0x58, 0x18, 0xc4, 0x9a, 0xc5, 0xb2, 0x64,
0xf1, 0xe9, 0xf9, 0x59, 0xe8, 0x9b, 0x32, 0x19, 0xdc, 0x46, 0x25, 0x05, 0x47, 0xa9, 0x43, 0x1a,
0x7b, 0x74, 0x98, 0xfa, 0xd2, 0x05, 0xa7, 0x9e, 0x0c, 0x6e, 0xa3, 0x92, 0x82, 0x32, 0xf5, 0x61,
0xc1, 0xa8, 0x98, 0xd5, 0xc3, 0x82, 0x51, 0x35, 0xcd, 0xc3, 0x82, 0x61, 0x9a, 0x97, 0xd0, 0x72,
0x9f, 0x86, 0xd4, 0xe9, 0xde, 0x52, 0xe6, 0xa8, 0x44, 0x5e, 0x60, 0xae, 0xaf, 0x17, 0xaa, 0xb8,
0x58, 0xe0, 0xb0, 0xcf, 0x85, 0x8e, 0x55, 0x07, 0x0b, 0x4f, 0x44, 0xf6, 0x62, 0x30, 0x41, 0xbe,
0x4d, 0xfa, 0x6a, 0x72, 0xa2, 0x6c, 0x09, 0x57, 0xc1, 0x42, 0x17, 0x87, 0x89, 0x7a, 0x7a, 0x14,
0x91, 0x02, 0xf6, 0x11, 0xa8, 0x1e, 0x33, 0x1c, 0x73, 0xec, 0x8a, 0x80, 0xc6, 0x8f, 0xa8, 0xcf,
0x21, 0x04, 0x05, 0xf9, 0x01, 0x56, 0xbe, 0x72, 0x0d, 0xff, 0x0f, 0x0a, 0x21, 0xf5, 0x79, 0x6d,
0x7e, 0x23, 0xbf, 0x59, 0xda, 0xb9, 0x7c, 0x76, 0xf8, 0x3f, 0xa2, 0x3e, 0x92, 0x26, 0xf6, 0xaf,
0xf3, 0x20, 0xff, 0x88, 0xfa, 0xb0, 0x06, 0x96, 0xb0, 0xe7, 0x31, 0xc2, 0xb9, 0x8e, 0x34, 0x84,
0x70, 0x0d, 0x2c, 0x0a, 0xda, 0x09, 0x5c, 0x15, 0xae, 0x88, 0x34, 0xca, 0x12, 0x7b, 0x58, 0x60,
0x39, 0xd8, 0xca, 0x48, 0xae, 0xe1, 0x0e, 0x28, 0xcb, 0xca, 0x9c, 0x38, 0x89, 0x9a, 0x84, 0xc9,
0xf1, 0x54, 0x68, 0x54, 0x4f, 0x53, 0xab, 0x24, 0xe5, 0x8f, 0xa5, 0x18, 0x4d, 0x02, 0x78, 0x1d,
0x2c, 0x89, 0xde, 0xe4, 0x10, 0x59, 0x39, 0x4d, 0xad, 0xaa, 0x18, 0x97, 0x99, 0xcd, 0x08, 0xb4,
0x28, 0x7a, 0x72, 0x56, 0xd4, 0x81, 0x21, 0x7a, 0x4e, 0x10, 0x7b, 0xa4, 0x27, 0xc7, 0x44, 0xa1,
0xb1, 0x7a, 0x9a, 0x5a, 0xe6, 0x84, 0xf9, 0x41, 0xa6, 0x43, 0x4b, 0xa2, 0x27, 0x17, 0xf0, 0x3a,
0x00, 0x8a, 0x92, 0xcc, 0xa0, 0x3e, 0xe7, 0xcb, 0xa7, 0xa9, 0x55, 0x94, 0x52, 0x19, 0x7b, 0xbc,
0x84, 0x36, 0x58, 0x50, 0xb1, 0x0d, 0x19, 0xbb, 0x7c, 0x9a, 0x5a, 0x46, 0x48, 0x7d, 0x15, 0x53,
0xa9, 0xb2, 0xad, 0x62, 0x24, 0xa2, 0x5d, 0xe2, 0xc9, 0xaf, 0xa0, 0x81, 0x86, 0xd0, 0xfe, 0x61,
0x1e, 0x18, 0xc7, 0x3d, 0x44, 0x78, 0x12, 0x0a, 0xf8, 0x10, 0x98, 0x2e, 0x8d, 0x05, 0xc3, 0xae,
0x70, 0xa6, 0xb6, 0xb6, 0x71, 0x6d, 0xfc, 0x99, 0x99, 0xb5, 0xb0, 0x51, 0x75, 0x28, 0xda, 0xd3,
0xfb, 0xbf, 0x0a, 0x16, 0x9a, 0x21, 0xa5, 0x91, 0xec, 0x84, 0x32, 0x52, 0x00, 0x22, 0xb9, 0x6b,
0xf2, 0x94, 0xf3, 0xf2, 0x89, 0xf7, 0xbf, 0xb3, 0xa7, 0x3c, 0xd3, 0x2a, 0x8d, 0x35, 0xfd, 0xcc,
0xab, 0xa8, 0xdc, 0xda, 0xdf, 0xce, 0xf6, 0x56, 0xb6, 0x92, 0x09, 0xf2, 0x8c, 0x08, 0x79, 0x68,
0x65, 0x94, 0x2d, 0xe1, 0x55, 0x60, 0x30, 0xd2, 0x25, 0x4c, 0x10, 0x4f, 0x1e, 0x8e, 0x81, 0x46,
0x18, 0x5e, 0x01, 0x86, 0x8f, 0xb9, 0x93, 0x70, 0xe2, 0xa9, 0x93, 0x40, 0x4b, 0x3e, 0xe6, 0x9f,
0x70, 0xe2, 0xdd, 0x29, 0xbc, 0xfc, 0xc5, 0x9a, 0xb3, 0x31, 0x28, 0xed, 0xb9, 0x2e, 0xe1, 0xfc,
0x38, 0xe9, 0x84, 0xe4, 0x6f, 0x3a, 0x6c, 0x07, 0x94, 0xb9, 0xa0, 0x0c, 0xfb, 0xc4, 0x69, 0x93,
0xbe, 0xee, 0x33, 0xd5, 0x35, 0x5a, 0xfe, 0x21, 0xe9, 0x73, 0x34, 0x09, 0x74, 0x8a, 0x37, 0x79,
0x50, 0x3a, 0x66, 0xd8, 0x25, 0xfa, 0x39, 0x9a, 0xf5, 0x6a, 0x06, 0x99, 0x4e, 0xa1, 0x51, 0x96,
0x5b, 0x04, 0x11, 0xa1, 0x89, 0xd0, 0xf7, 0x69, 0x08, 0x33, 0x0f, 0x46, 0x48, 0x8f, 0xb8, 0x72,
0x1b, 0x0b, 0x48, 0x23, 0xb8, 0x0b, 0x96, 0xbd, 0x80, 0xcb, 0x77, 0x3a, 0x17, 0xd8, 0x6d, 0xab,
0xf2, 0x1b, 0xe6, 0x69, 0x6a, 0x95, 0xb5, 0xe2, 0x49, 0x26, 0x47, 0x53, 0x08, 0xde, 0x05, 0xd5,
0xb1, 0x9b, 0x64, 0x2b, 0xf7, 0xc6, 0x68, 0xc0, 0xd3, 0xd4, 0xaa, 0x8c, 0x4c, 0xa5, 0x06, 0xcd,
0xe0, 0xec, 0xa4, 0x3d, 0xd2, 0x4c, 0x7c, 0xd9, 0x7c, 0x06, 0x52, 0x20, 0x93, 0x86, 0x41, 0x14,
0x08, 0xd9, 0x6c, 0x0b, 0x48, 0x01, 0x78, 0x17, 0x14, 0x69, 0x97, 0x30, 0x16, 0x78, 0x84, 0xcb,
0xe1, 0xf7, 0x4f, 0x8f, 0x7c, 0x34, 0xb6, 0xcf, 0x8a, 0xd3, 0xff, 0x20, 0x11, 0x89, 0x28, 0xeb,
0xcb, 0xc1, 0xa5, 0x8b, 0x53, 0x8a, 0x8f, 0xa4, 0x1c, 0x4d, 0x21, 0xd8, 0x00, 0x50, 0xbb, 0x31,
0x22, 0x12, 0x16, 0x3b, 0xf2, 0xfe, 0x97, 0xa5, 0xaf, 0xbc, 0x85, 0x4a, 0x8b, 0xa4, 0xf2, 0x01,
0x16, 0x18, 0x9d, 0x91, 0x1c, 0x16, 0x8c, 0x82, 0xb9, 0x70, 0x58, 0x30, 0x96, 0x4c, 0x63, 0x54,
0xbf, 0x66, 0x81, 0x56, 0x86, 0x78, 0x22, 0x7c, 0xe3, 0xe9, 0xab, 0x93, 0xf5, 0xdc, 0xeb, 0x93,
0xf5, 0xdc, 0x9b, 0x93, 0xf5, 0xdc, 0x4f, 0x6f, 0xd7, 0xe7, 0x5e, 0xbf, 0x5d, 0x9f, 0xfb, 0xe3,
0xed, 0xfa, 0xdc, 0xb3, 0x7b, 0xff, 0xfe, 0xe3, 0x1e, 0x51, 0x2f, 0x09, 0x09, 0xcf, 0x7e, 0x28,
0x9b, 0x8b, 0xf2, 0x4f, 0xf1, 0xd6, 0x5f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x0e, 0x6b, 0x29, 0x24,
0x6f, 0x0e, 0x00, 0x00,
}
func (m *Params) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalToSizedBuffer(dAtA[:size])
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *Params) MarshalTo(dAtA []byte) (int, error) {
size := m.Size()
return m.MarshalToSizedBuffer(dAtA[:size])
}
func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i := len(dAtA)
_ = i
var l int
_ = l
{
size, err := m.ChainConfig.MarshalToSizedBuffer(dAtA[:i])
if err != nil {
return 0, err
}
i -= size
i = encodeVarintPvm(dAtA, i, uint64(size))
}
i--
dAtA[i] = 0x2a
if len(m.ExtraEIPs) > 0 {
dAtA3 := make([]byte, len(m.ExtraEIPs)*10)
var j2 int
for _, num1 := range m.ExtraEIPs {
num := uint64(num1)
for num >= 1<<7 {
dAtA3[j2] = uint8(uint64(num)&0x7f | 0x80)
num >>= 7
j2++
}
dAtA3[j2] = uint8(num)
j2++
}
i -= j2
copy(dAtA[i:], dAtA3[:j2])
i = encodeVarintPvm(dAtA, i, uint64(j2))
i--
dAtA[i] = 0x22
}
if m.EnableCall {
i--
if m.EnableCall {
dAtA[i] = 1
} else {
dAtA[i] = 0
}
i--
dAtA[i] = 0x18
}
if m.EnableCreate {
i--
if m.EnableCreate {
dAtA[i] = 1
} else {
dAtA[i] = 0
}
i--
dAtA[i] = 0x10
}
if len(m.EvmDenom) > 0 {
i -= len(m.EvmDenom)
copy(dAtA[i:], m.EvmDenom)
i = encodeVarintPvm(dAtA, i, uint64(len(m.EvmDenom)))
i--
dAtA[i] = 0xa
}
return len(dAtA) - i, nil
}
func (m *ChainConfig) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalToSizedBuffer(dAtA[:size])
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *ChainConfig) MarshalTo(dAtA []byte) (int, error) {
size := m.Size()
return m.MarshalToSizedBuffer(dAtA[:size])
}
func (m *ChainConfig) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i := len(dAtA)
_ = i
var l int
_ = l
if m.LondonBlock != nil {
{
size := m.LondonBlock.Size()
i -= size
if _, err := m.LondonBlock.MarshalTo(dAtA[i:]); err != nil {
return 0, err
}
i = encodeVarintPvm(dAtA, i, uint64(size))
}
i--
dAtA[i] = 0x1
i--
dAtA[i] = 0x8a
}
if m.BerlinBlock != nil {
{
size := m.BerlinBlock.Size()
i -= size
if _, err := m.BerlinBlock.MarshalTo(dAtA[i:]); err != nil {
return 0, err
}
i = encodeVarintPvm(dAtA, i, uint64(size))
}
i--
dAtA[i] = 0x6a
}
if m.MuirGlacierBlock != nil {
{
size := m.MuirGlacierBlock.Size()
i -= size
if _, err := m.MuirGlacierBlock.MarshalTo(dAtA[i:]); err != nil {
return 0, err
}
i = encodeVarintPvm(dAtA, i, uint64(size))
}
i--
dAtA[i] = 0x62
}
if m.IstanbulBlock != nil {
{
size := m.IstanbulBlock.Size()
i -= size
if _, err := m.IstanbulBlock.MarshalTo(dAtA[i:]); err != nil {
return 0, err
}
i = encodeVarintPvm(dAtA, i, uint64(size))
}
i--
dAtA[i] = 0x5a
}
if m.PetersburgBlock != nil {
{
size := m.PetersburgBlock.Size()
i -= size
if _, err := m.PetersburgBlock.MarshalTo(dAtA[i:]); err != nil {
return 0, err
}
i = encodeVarintPvm(dAtA, i, uint64(size))
}
i--
dAtA[i] = 0x52
}
if m.ConstantinopleBlock != nil {
{
size := m.ConstantinopleBlock.Size()
i -= size
if _, err := m.ConstantinopleBlock.MarshalTo(dAtA[i:]); err != nil {
return 0, err
}
i = encodeVarintPvm(dAtA, i, uint64(size))
}
i--
dAtA[i] = 0x4a
}
if m.ByzantiumBlock != nil {
{
size := m.ByzantiumBlock.Size()
i -= size
if _, err := m.ByzantiumBlock.MarshalTo(dAtA[i:]); err != nil {
return 0, err
}
i = encodeVarintPvm(dAtA, i, uint64(size))
}
i--
dAtA[i] = 0x42
}
if m.EIP158Block != nil {
{
size := m.EIP158Block.Size()
i -= size
if _, err := m.EIP158Block.MarshalTo(dAtA[i:]); err != nil {
return 0, err
}
i = encodeVarintPvm(dAtA, i, uint64(size))
}
i--
dAtA[i] = 0x3a
}
if m.EIP155Block != nil {
{
size := m.EIP155Block.Size()
i -= size
if _, err := m.EIP155Block.MarshalTo(dAtA[i:]); err != nil {
return 0, err
}
i = encodeVarintPvm(dAtA, i, uint64(size))
}
i--
dAtA[i] = 0x32
}
if len(m.EIP150Hash) > 0 {
i -= len(m.EIP150Hash)
copy(dAtA[i:], m.EIP150Hash)
i = encodeVarintPvm(dAtA, i, uint64(len(m.EIP150Hash)))
i--
dAtA[i] = 0x2a
}
if m.EIP150Block != nil {
{
size := m.EIP150Block.Size()
i -= size
if _, err := m.EIP150Block.MarshalTo(dAtA[i:]); err != nil {
return 0, err
}
i = encodeVarintPvm(dAtA, i, uint64(size))
}
i--
dAtA[i] = 0x22
}
if m.DAOForkSupport {
i--
if m.DAOForkSupport {
dAtA[i] = 1
} else {
dAtA[i] = 0
}
i--
dAtA[i] = 0x18
}
if m.DAOForkBlock != nil {
{
size := m.DAOForkBlock.Size()
i -= size
if _, err := m.DAOForkBlock.MarshalTo(dAtA[i:]); err != nil {
return 0, err
}
i = encodeVarintPvm(dAtA, i, uint64(size))
}
i--
dAtA[i] = 0x12
}