-
Notifications
You must be signed in to change notification settings - Fork 65
/
contract_function_parameters.go
1956 lines (1381 loc) · 54.4 KB
/
contract_function_parameters.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
package hedera
/*-
*
* Hedera Go SDK
*
* Copyright (C) 2020 - 2024 Hedera Hashgraph, LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
import (
"encoding/binary"
"encoding/hex"
"errors"
"fmt"
"math/big"
)
// ContractFunctionParameters is a struct which builds a solidity function call
// Use the builder methods `Add<Type>()` to add a parameter. Not all solidity types
// are supported out of the box, but the most common types are. The larger variants
// of number types require the parameter to be `[]byte`.
// ```
// AddUint88(math.PaddedBigBytes(n, 88 / 8))
// ```
// If you're using `Uint256` specifically you can opt into using
// ```
// AddUin256(math.PaddedBigBytes(math.U256(n), 32))
// ```
type ContractFunctionParameters struct {
function ContractFunctionSelector
arguments []Argument
}
type Argument struct {
value []byte
dynamic bool
}
// Builder for encoding parameters for a Solidity contract constructor/function call.
func NewContractFunctionParameters() *ContractFunctionParameters {
return &ContractFunctionParameters{
function: NewContractFunctionSelector(""),
arguments: []Argument{},
}
}
// AddBool adds a bool parameter to the function call
func (contract *ContractFunctionParameters) AddBool(value bool) *ContractFunctionParameters {
argument := _NewArgument()
if value {
argument.value[31] = 1
} else {
argument.value[31] = 0
}
contract.function.AddBool()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddFunction adds a Solidity function reference and a function selector.
func (contract *ContractFunctionParameters) AddFunction(address string, selector ContractFunctionSelector) (*ContractFunctionParameters, error) {
if len(address) != 40 {
return contract, errors.Unwrap(fmt.Errorf("address is required to be 40 characters"))
}
argument := _NewArgument()
argument.dynamic = false
addressBytes, err := hex.DecodeString(address)
if err != nil {
return contract, err
}
bytes := make([]byte, 12)
bytes = append(bytes, addressBytes[0:20]...)
function := selector._Build(nil)
bytes = append(bytes, function[0:4]...)
argument.value = bytes
contract.function.AddFunction()
contract.arguments = append(contract.arguments, argument)
return contract, nil
}
// AddInt8 adds an int8 parameter to the function call
func (contract *ContractFunctionParameters) AddInt8(value int8) *ContractFunctionParameters {
argument := _NewIntArgument(value)
argument.value[31] = uint8(value)
contract.function.AddInt8()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt16 adds an int16 parameter to the function call
func (contract *ContractFunctionParameters) AddInt16(value int16) *ContractFunctionParameters {
argument := _NewIntArgument(value)
binary.BigEndian.PutUint16(argument.value[30:32], uint16(value))
contract.function.AddInt16()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt24 adds an int24 parameter to the function call
func (contract *ContractFunctionParameters) AddInt24(value int32) *ContractFunctionParameters {
argument := _NewIntArgument(value)
binary.BigEndian.PutUint32(argument.value[28:32], uint32(value))
contract.function.AddInt24()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt32 adds an int32 parameter to the function call
func (contract *ContractFunctionParameters) AddInt32(value int32) *ContractFunctionParameters {
argument := _NewIntArgument(value)
binary.BigEndian.PutUint32(argument.value[28:32], uint32(value))
contract.function.AddInt32()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt40 adds an int40 parameter to the function call
func (contract *ContractFunctionParameters) AddInt40(value int64) *ContractFunctionParameters {
argument := _NewIntArgument(value)
binary.BigEndian.PutUint64(argument.value[24:32], uint64(value))
contract.function.AddInt40()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt48 adds an int48 parameter to the function call
func (contract *ContractFunctionParameters) AddInt48(value int64) *ContractFunctionParameters {
argument := _NewIntArgument(value)
binary.BigEndian.PutUint64(argument.value[24:32], uint64(value))
contract.function.AddInt48()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt56 adds an int56 parameter to the function call
func (contract *ContractFunctionParameters) AddInt56(value int64) *ContractFunctionParameters {
argument := _NewIntArgument(value)
binary.BigEndian.PutUint64(argument.value[24:32], uint64(value))
contract.function.AddInt56()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt64 adds an int64 parameter to the function call
func (contract *ContractFunctionParameters) AddInt64(value int64) *ContractFunctionParameters {
argument := _NewIntArgument(value)
binary.BigEndian.PutUint64(argument.value[24:32], uint64(value))
contract.function.AddInt64()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt72 adds an int72 parameter to the function call
func (contract *ContractFunctionParameters) AddInt72(value []byte) *ContractFunctionParameters {
argument := _NewArgument()
argument.value = value
contract.function.AddInt72()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt72BigInt adds an int72parameter to the function call
func (contract *ContractFunctionParameters) AddInt72BigInt(value *big.Int) *ContractFunctionParameters {
argument := _NewArgument()
valueCopy := new(big.Int).Set(value)
argument.value = To256BitBytes(valueCopy)
contract.function.AddInt72()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt80 adds an int80 parameter to the function call
func (contract *ContractFunctionParameters) AddInt80(value []byte) *ContractFunctionParameters {
argument := _NewArgument()
argument.value = value
contract.function.AddInt80()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt80igInt adds an int80parameter to the function call
func (contract *ContractFunctionParameters) AddInt80BigInt(value *big.Int) *ContractFunctionParameters {
argument := _NewArgument()
valueCopy := new(big.Int).Set(value)
argument.value = To256BitBytes(valueCopy)
contract.function.AddInt80()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt88 adds an int88 parameter to the function call
func (contract *ContractFunctionParameters) AddInt88(value []byte) *ContractFunctionParameters {
argument := _NewArgument()
argument.value = value
contract.function.AddInt88()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt88BigInt adds an int88parameter to the function call
func (contract *ContractFunctionParameters) AddIn88BigInt(value *big.Int) *ContractFunctionParameters {
argument := _NewArgument()
valueCopy := new(big.Int).Set(value)
argument.value = To256BitBytes(valueCopy)
contract.function.AddInt88()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt96 adds an int96 parameter to the function call
func (contract *ContractFunctionParameters) AddInt96(value []byte) *ContractFunctionParameters {
argument := _NewArgument()
argument.value = value
contract.function.AddInt96()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt96BigInt adds an int96parameter to the function call
func (contract *ContractFunctionParameters) AddInt96BigInt(value *big.Int) *ContractFunctionParameters {
argument := _NewArgument()
valueCopy := new(big.Int).Set(value)
argument.value = To256BitBytes(valueCopy)
contract.function.AddInt96()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt104 adds an int104 parameter to the function call
func (contract *ContractFunctionParameters) AddInt104(value []byte) *ContractFunctionParameters {
argument := _NewArgument()
argument.value = value
contract.function.AddInt104()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt104BigInt adds an int104 parameter to the function call
func (contract *ContractFunctionParameters) AddInt104BigInt(value *big.Int) *ContractFunctionParameters {
argument := _NewArgument()
valueCopy := new(big.Int).Set(value)
argument.value = To256BitBytes(valueCopy)
contract.function.AddInt104()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt112 adds an int112 parameter to the function call
func (contract *ContractFunctionParameters) AddInt112(value []byte) *ContractFunctionParameters {
argument := _NewArgument()
argument.value = value
contract.function.AddInt112()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt112BigInt adds an int112 parameter to the function call
func (contract *ContractFunctionParameters) AddInt112BigInt(value *big.Int) *ContractFunctionParameters {
argument := _NewArgument()
valueCopy := new(big.Int).Set(value)
argument.value = To256BitBytes(valueCopy)
contract.function.AddInt112()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt120 adds an int120 parameter to the function call
func (contract *ContractFunctionParameters) AddInt120(value []byte) *ContractFunctionParameters {
argument := _NewArgument()
argument.value = value
contract.function.AddInt120()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt120BigInt adds an int120parameter to the function call
func (contract *ContractFunctionParameters) AddInt120BigInt(value *big.Int) *ContractFunctionParameters {
argument := _NewArgument()
valueCopy := new(big.Int).Set(value)
argument.value = To256BitBytes(valueCopy)
contract.function.AddInt120()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt128 adds an int128 parameter to the function call
func (contract *ContractFunctionParameters) AddInt128(value []byte) *ContractFunctionParameters {
argument := _NewArgument()
argument.value = value
contract.function.AddInt128()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt128BigInt adds an int128parameter to the function call
func (contract *ContractFunctionParameters) AddInt128BigInt(value *big.Int) *ContractFunctionParameters {
argument := _NewArgument()
valueCopy := new(big.Int).Set(value)
argument.value = To256BitBytes(valueCopy)
contract.function.AddInt128()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt136 adds an int136 parameter to the function call
func (contract *ContractFunctionParameters) AddInt136(value []byte) *ContractFunctionParameters {
argument := _NewArgument()
argument.value = value
contract.function.AddInt136()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt136BigInt adds an int136 parameter to the function call
func (contract *ContractFunctionParameters) AddInt136BigInt(value *big.Int) *ContractFunctionParameters {
argument := _NewArgument()
valueCopy := new(big.Int).Set(value)
argument.value = To256BitBytes(valueCopy)
contract.function.AddInt136()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt144 adds an int144 parameter to the function call
func (contract *ContractFunctionParameters) AddInt144(value []byte) *ContractFunctionParameters {
argument := _NewArgument()
argument.value = value
contract.function.AddInt144()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt144BigInt adds an int144 parameter to the function call
func (contract *ContractFunctionParameters) AddInt144BigInt(value *big.Int) *ContractFunctionParameters {
argument := _NewArgument()
valueCopy := new(big.Int).Set(value)
argument.value = To256BitBytes(valueCopy)
contract.function.AddInt144()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt152 adds an int152 parameter to the function call
func (contract *ContractFunctionParameters) AddInt152(value []byte) *ContractFunctionParameters {
argument := _NewArgument()
argument.value = value
contract.function.AddInt152()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt152BigInt adds an int152 parameter to the function call
func (contract *ContractFunctionParameters) AddInt152BigInt(value *big.Int) *ContractFunctionParameters {
argument := _NewArgument()
valueCopy := new(big.Int).Set(value)
argument.value = To256BitBytes(valueCopy)
contract.function.AddInt152()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt160 adds an int160 parameter to the function call
func (contract *ContractFunctionParameters) AddInt160(value []byte) *ContractFunctionParameters {
argument := _NewArgument()
argument.value = value
contract.function.AddInt160()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt160BigInt adds an int160 parameter to the function call
func (contract *ContractFunctionParameters) AddInt160BigInt(value *big.Int) *ContractFunctionParameters {
argument := _NewArgument()
valueCopy := new(big.Int).Set(value)
argument.value = To256BitBytes(valueCopy)
contract.function.AddInt160()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt168 adds an int168 parameter to the function call
func (contract *ContractFunctionParameters) AddInt168(value []byte) *ContractFunctionParameters {
argument := _NewArgument()
argument.value = value
contract.function.AddInt168()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt168BigInt adds an int168 parameter to the function call
func (contract *ContractFunctionParameters) AddInt168BigInt(value *big.Int) *ContractFunctionParameters {
argument := _NewArgument()
valueCopy := new(big.Int).Set(value)
argument.value = To256BitBytes(valueCopy)
contract.function.AddInt168()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt176 adds an int176 parameter to the function call
func (contract *ContractFunctionParameters) AddInt176(value []byte) *ContractFunctionParameters {
argument := _NewArgument()
argument.value = value
contract.function.AddInt176()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt176BigInt adds an int176 parameter to the function call
func (contract *ContractFunctionParameters) AddInt176BigInt(value *big.Int) *ContractFunctionParameters {
argument := _NewArgument()
valueCopy := new(big.Int).Set(value)
argument.value = To256BitBytes(valueCopy)
contract.function.AddInt176()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt184 adds an int184 parameter to the function call
func (contract *ContractFunctionParameters) AddInt184(value []byte) *ContractFunctionParameters {
argument := _NewArgument()
argument.value = value
contract.function.AddInt184()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt184BigInt adds an int184 parameter to the function call
func (contract *ContractFunctionParameters) AddInt184BigInt(value *big.Int) *ContractFunctionParameters {
argument := _NewArgument()
valueCopy := new(big.Int).Set(value)
argument.value = To256BitBytes(valueCopy)
contract.function.AddInt184()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt192 adds an int192 parameter to the function call
func (contract *ContractFunctionParameters) AddInt192(value []byte) *ContractFunctionParameters {
argument := _NewArgument()
argument.value = value
contract.function.AddInt192()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt192BigInt adds an int192 parameter to the function call
func (contract *ContractFunctionParameters) AddInt192BigInt(value *big.Int) *ContractFunctionParameters {
argument := _NewArgument()
valueCopy := new(big.Int).Set(value)
argument.value = To256BitBytes(valueCopy)
contract.function.AddInt192()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt200 adds an int200 parameter to the function call
func (contract *ContractFunctionParameters) AddInt200(value []byte) *ContractFunctionParameters {
argument := _NewArgument()
argument.value = value
contract.function.AddInt200()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt200BigInt adds an int200 parameter to the function call
func (contract *ContractFunctionParameters) AddInt200BigInt(value *big.Int) *ContractFunctionParameters {
argument := _NewArgument()
valueCopy := new(big.Int).Set(value)
argument.value = To256BitBytes(valueCopy)
contract.function.AddInt200()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt208 adds an int208 parameter to the function call
func (contract *ContractFunctionParameters) AddInt208(value []byte) *ContractFunctionParameters {
argument := _NewArgument()
argument.value = value
contract.function.AddInt208()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt208BigInt adds an int208parameter to the function call
func (contract *ContractFunctionParameters) AddInt208BigInt(value *big.Int) *ContractFunctionParameters {
argument := _NewArgument()
valueCopy := new(big.Int).Set(value)
argument.value = To256BitBytes(valueCopy)
contract.function.AddInt208()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt216 adds an int216 parameter to the function call
func (contract *ContractFunctionParameters) AddInt216(value []byte) *ContractFunctionParameters {
argument := _NewArgument()
argument.value = value
contract.function.AddInt216()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt216BigInt adds an int216 parameter to the function call
func (contract *ContractFunctionParameters) AddInt216BigInt(value *big.Int) *ContractFunctionParameters {
argument := _NewArgument()
valueCopy := new(big.Int).Set(value)
argument.value = To256BitBytes(valueCopy)
contract.function.AddInt216()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt224 adds an int224 parameter to the function call
func (contract *ContractFunctionParameters) AddInt224(value []byte) *ContractFunctionParameters {
argument := _NewArgument()
argument.value = value
contract.function.AddInt224()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt224BigInt adds an int224 parameter to the function call
func (contract *ContractFunctionParameters) AddInt224BigInt(value *big.Int) *ContractFunctionParameters {
argument := _NewArgument()
valueCopy := new(big.Int).Set(value)
argument.value = To256BitBytes(valueCopy)
contract.function.AddInt224()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt232 adds an int232 parameter to the function call
func (contract *ContractFunctionParameters) AddInt232(value []byte) *ContractFunctionParameters {
argument := _NewArgument()
argument.value = value
contract.function.AddInt232()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt232BigInt adds an int232 parameter to the function call
func (contract *ContractFunctionParameters) AddInt232BigInt(value *big.Int) *ContractFunctionParameters {
argument := _NewArgument()
valueCopy := new(big.Int).Set(value)
argument.value = To256BitBytes(valueCopy)
contract.function.AddInt232()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt240 adds an int240 parameter to the function call
func (contract *ContractFunctionParameters) AddInt240(value []byte) *ContractFunctionParameters {
argument := _NewArgument()
argument.value = value
contract.function.AddInt240()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt240BigInt adds an int240 parameter to the function call
func (contract *ContractFunctionParameters) AddInt240BigInt(value *big.Int) *ContractFunctionParameters {
argument := _NewArgument()
valueCopy := new(big.Int).Set(value)
argument.value = To256BitBytes(valueCopy)
contract.function.AddInt240()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt248 adds an int248 parameter to the function call
func (contract *ContractFunctionParameters) AddInt248(value []byte) *ContractFunctionParameters {
argument := _NewArgument()
argument.value = value
contract.function.AddInt248()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt248BigInt adds an int248 parameter to the function call
func (contract *ContractFunctionParameters) AddInt248BigInt(value *big.Int) *ContractFunctionParameters {
argument := _NewArgument()
valueCopy := new(big.Int).Set(value)
argument.value = To256BitBytes(valueCopy)
contract.function.AddInt248()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt256 adds an int256 parameter to the function call
func (contract *ContractFunctionParameters) AddInt256(value []byte) *ContractFunctionParameters {
argument := _NewArgument()
argument.value = value
contract.function.AddInt256()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddInt256BigInt adds an int256 parameter to the function call
func (contract *ContractFunctionParameters) AddInt256BigInt(value *big.Int) *ContractFunctionParameters {
argument := _NewArgument()
valueCopy := new(big.Int).Set(value)
argument.value = To256BitBytes(valueCopy)
contract.function.AddInt256()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddUint8 adds a uint8 parameter to the function call
func (contract *ContractFunctionParameters) AddUint8(value uint8) *ContractFunctionParameters {
argument := _NewArgument()
argument.value[31] = value
contract.function.AddUint8()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddUint16 adds a uint16 parameter to the function call
func (contract *ContractFunctionParameters) AddUint16(value uint16) *ContractFunctionParameters {
argument := _NewArgument()
binary.BigEndian.PutUint16(argument.value[30:32], value)
contract.function.AddUint16()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddUint24 adds a uint24 parameter to the function call
func (contract *ContractFunctionParameters) AddUint24(value uint32) *ContractFunctionParameters {
argument := _NewArgument()
binary.BigEndian.PutUint32(argument.value[28:32], value)
contract.function.AddUint24()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddUint32 adds a uint32 parameter to the function call
func (contract *ContractFunctionParameters) AddUint32(value uint32) *ContractFunctionParameters {
argument := _NewArgument()
binary.BigEndian.PutUint32(argument.value[28:32], value)
contract.function.AddUint32()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddUint40 adds a uint40 parameter to the function call
func (contract *ContractFunctionParameters) AddUint40(value uint64) *ContractFunctionParameters {
argument := _NewArgument()
binary.BigEndian.PutUint64(argument.value[24:32], value)
contract.function.AddUint40()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddUint48 adds a uint48 parameter to the function call
func (contract *ContractFunctionParameters) AddUint48(value uint64) *ContractFunctionParameters {
argument := _NewArgument()
binary.BigEndian.PutUint64(argument.value[24:32], value)
contract.function.AddUint48()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddUint56 adds a uint56 parameter to the function call
func (contract *ContractFunctionParameters) AddUint56(value uint64) *ContractFunctionParameters {
argument := _NewArgument()
binary.BigEndian.PutUint64(argument.value[24:32], value)
contract.function.AddUint56()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddUint64 adds a uint64 parameter to the function call
func (contract *ContractFunctionParameters) AddUint64(value uint64) *ContractFunctionParameters {
argument := _NewArgument()
binary.BigEndian.PutUint64(argument.value[24:32], value)
contract.function.AddUint64()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddUint72 adds a uint72 parameter to the function call
func (contract *ContractFunctionParameters) AddUint72(value []byte) *ContractFunctionParameters {
argument := _NewArgument()
argument.value = value
contract.function.AddUint72()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddUint72BigInt adds a uint72 parameter to the function call
func (contract *ContractFunctionParameters) AddUint72BigInt(value *big.Int) *ContractFunctionParameters {
argument := _NewArgument()
valueCopy := new(big.Int).Set(value)
argument.value = To256BitBytes(valueCopy)
contract.function.AddUint72()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddUint80 adds a uint80 parameter to the function call
func (contract *ContractFunctionParameters) AddUint80(value []byte) *ContractFunctionParameters {
argument := _NewArgument()
argument.value = value
contract.function.AddUint80()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddUint80BigInt adds a uint80parameter to the function call
func (contract *ContractFunctionParameters) AddUint80BigInt(value *big.Int) *ContractFunctionParameters {
argument := _NewArgument()
valueCopy := new(big.Int).Set(value)
argument.value = To256BitBytes(valueCopy)
contract.function.AddUint80()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddUint88 adds a uint88 parameter to the function call
func (contract *ContractFunctionParameters) AddUint88(value []byte) *ContractFunctionParameters {
argument := _NewArgument()
argument.value = value
contract.function.AddUint88()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddUint88BigInt adds a uint88parameter to the function call
func (contract *ContractFunctionParameters) AddUint88BigInt(value *big.Int) *ContractFunctionParameters {
argument := _NewArgument()
valueCopy := new(big.Int).Set(value)
argument.value = To256BitBytes(valueCopy)
contract.function.AddUint88()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddUint96 adds a uint96 parameter to the function call
func (contract *ContractFunctionParameters) AddUint96(value []byte) *ContractFunctionParameters {
argument := _NewArgument()
argument.value = value
contract.function.AddUint96()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddUint96BigInt adds a uint96parameter to the function call
func (contract *ContractFunctionParameters) AddUint96BigInt(value *big.Int) *ContractFunctionParameters {
argument := _NewArgument()
valueCopy := new(big.Int).Set(value)
argument.value = To256BitBytes(valueCopy)
contract.function.AddUint96()
contract.arguments = append(contract.arguments, argument)
return contract
}
// AddUint104 adds a uint104 parameter to the function call
func (contract *ContractFunctionParameters) AddUint104(value []byte) *ContractFunctionParameters {
argument := _NewArgument()
argument.value = value
contract.function.AddUint104()