-
Notifications
You must be signed in to change notification settings - Fork 241
Expand file tree
/
Copy pathfee_disburser.go
More file actions
916 lines (773 loc) · 37 KB
/
Copy pathfee_disburser.go
File metadata and controls
916 lines (773 loc) · 37 KB
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
// Code generated - DO NOT EDIT.
// This file is a generated binding and any manual changes will be lost.
package bindings
import (
"errors"
"math/big"
"strings"
ethereum "github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/accounts/abi"
"github.com/ethereum/go-ethereum/accounts/abi/bind"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/event"
)
// Reference imports to suppress errors if they are not otherwise used.
var (
_ = errors.New
_ = big.NewInt
_ = strings.NewReader
_ = ethereum.NotFound
_ = bind.Bind
_ = common.Big1
_ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType
)
// FeeDisburserMetaData contains all meta data concerning the FeeDisburser contract.
var FeeDisburserMetaData = &bind.MetaData{
ABI: "[{\"type\":\"constructor\",\"inputs\":[{\"name\":\"_optimismWallet\",\"type\":\"address\",\"internalType\":\"addresspayable\"},{\"name\":\"_l1Wallet\",\"type\":\"address\",\"internalType\":\"address\"},{\"name\":\"_feeDisbursementInterval\",\"type\":\"uint256\",\"internalType\":\"uint256\"}],\"stateMutability\":\"nonpayable\"},{\"type\":\"receive\",\"stateMutability\":\"payable\"},{\"type\":\"function\",\"name\":\"BASIS_POINT_SCALE\",\"inputs\":[],\"outputs\":[{\"name\":\"\",\"type\":\"uint32\",\"internalType\":\"uint32\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"FEE_DISBURSEMENT_INTERVAL\",\"inputs\":[],\"outputs\":[{\"name\":\"\",\"type\":\"uint256\",\"internalType\":\"uint256\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"L1_WALLET\",\"inputs\":[],\"outputs\":[{\"name\":\"\",\"type\":\"address\",\"internalType\":\"address\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"OPTIMISM_GROSS_REVENUE_SHARE_BASIS_POINTS\",\"inputs\":[],\"outputs\":[{\"name\":\"\",\"type\":\"uint256\",\"internalType\":\"uint256\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"OPTIMISM_NET_REVENUE_SHARE_BASIS_POINTS\",\"inputs\":[],\"outputs\":[{\"name\":\"\",\"type\":\"uint256\",\"internalType\":\"uint256\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"OPTIMISM_WALLET\",\"inputs\":[],\"outputs\":[{\"name\":\"\",\"type\":\"address\",\"internalType\":\"addresspayable\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"WITHDRAWAL_MIN_GAS\",\"inputs\":[],\"outputs\":[{\"name\":\"\",\"type\":\"uint32\",\"internalType\":\"uint32\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"disburseFees\",\"inputs\":[],\"outputs\":[],\"stateMutability\":\"nonpayable\"},{\"type\":\"function\",\"name\":\"lastDisbursementTime\",\"inputs\":[],\"outputs\":[{\"name\":\"\",\"type\":\"uint256\",\"internalType\":\"uint256\"}],\"stateMutability\":\"view\"},{\"type\":\"function\",\"name\":\"netFeeRevenue\",\"inputs\":[],\"outputs\":[{\"name\":\"\",\"type\":\"uint256\",\"internalType\":\"uint256\"}],\"stateMutability\":\"view\"},{\"type\":\"event\",\"name\":\"FeesDisbursed\",\"inputs\":[{\"name\":\"_disbursementTime\",\"type\":\"uint256\",\"indexed\":false,\"internalType\":\"uint256\"},{\"name\":\"_paidToOptimism\",\"type\":\"uint256\",\"indexed\":false,\"internalType\":\"uint256\"},{\"name\":\"_totalFeesDisbursed\",\"type\":\"uint256\",\"indexed\":false,\"internalType\":\"uint256\"}],\"anonymous\":false},{\"type\":\"event\",\"name\":\"FeesReceived\",\"inputs\":[{\"name\":\"_sender\",\"type\":\"address\",\"indexed\":true,\"internalType\":\"address\"},{\"name\":\"_amount\",\"type\":\"uint256\",\"indexed\":false,\"internalType\":\"uint256\"}],\"anonymous\":false},{\"type\":\"event\",\"name\":\"NoFeesCollected\",\"inputs\":[],\"anonymous\":false}]",
}
// FeeDisburserABI is the input ABI used to generate the binding from.
// Deprecated: Use FeeDisburserMetaData.ABI instead.
var FeeDisburserABI = FeeDisburserMetaData.ABI
// FeeDisburser is an auto generated Go binding around an Ethereum contract.
type FeeDisburser struct {
FeeDisburserCaller // Read-only binding to the contract
FeeDisburserTransactor // Write-only binding to the contract
FeeDisburserFilterer // Log filterer for contract events
}
// FeeDisburserCaller is an auto generated read-only Go binding around an Ethereum contract.
type FeeDisburserCaller struct {
contract *bind.BoundContract // Generic contract wrapper for the low level calls
}
// FeeDisburserTransactor is an auto generated write-only Go binding around an Ethereum contract.
type FeeDisburserTransactor struct {
contract *bind.BoundContract // Generic contract wrapper for the low level calls
}
// FeeDisburserFilterer is an auto generated log filtering Go binding around an Ethereum contract events.
type FeeDisburserFilterer struct {
contract *bind.BoundContract // Generic contract wrapper for the low level calls
}
// FeeDisburserSession is an auto generated Go binding around an Ethereum contract,
// with pre-set call and transact options.
type FeeDisburserSession struct {
Contract *FeeDisburser // Generic contract binding to set the session for
CallOpts bind.CallOpts // Call options to use throughout this session
TransactOpts bind.TransactOpts // Transaction auth options to use throughout this session
}
// FeeDisburserCallerSession is an auto generated read-only Go binding around an Ethereum contract,
// with pre-set call options.
type FeeDisburserCallerSession struct {
Contract *FeeDisburserCaller // Generic contract caller binding to set the session for
CallOpts bind.CallOpts // Call options to use throughout this session
}
// FeeDisburserTransactorSession is an auto generated write-only Go binding around an Ethereum contract,
// with pre-set transact options.
type FeeDisburserTransactorSession struct {
Contract *FeeDisburserTransactor // Generic contract transactor binding to set the session for
TransactOpts bind.TransactOpts // Transaction auth options to use throughout this session
}
// FeeDisburserRaw is an auto generated low-level Go binding around an Ethereum contract.
type FeeDisburserRaw struct {
Contract *FeeDisburser // Generic contract binding to access the raw methods on
}
// FeeDisburserCallerRaw is an auto generated low-level read-only Go binding around an Ethereum contract.
type FeeDisburserCallerRaw struct {
Contract *FeeDisburserCaller // Generic read-only contract binding to access the raw methods on
}
// FeeDisburserTransactorRaw is an auto generated low-level write-only Go binding around an Ethereum contract.
type FeeDisburserTransactorRaw struct {
Contract *FeeDisburserTransactor // Generic write-only contract binding to access the raw methods on
}
// NewFeeDisburser creates a new instance of FeeDisburser, bound to a specific deployed contract.
func NewFeeDisburser(address common.Address, backend bind.ContractBackend) (*FeeDisburser, error) {
contract, err := bindFeeDisburser(address, backend, backend, backend)
if err != nil {
return nil, err
}
return &FeeDisburser{FeeDisburserCaller: FeeDisburserCaller{contract: contract}, FeeDisburserTransactor: FeeDisburserTransactor{contract: contract}, FeeDisburserFilterer: FeeDisburserFilterer{contract: contract}}, nil
}
// NewFeeDisburserCaller creates a new read-only instance of FeeDisburser, bound to a specific deployed contract.
func NewFeeDisburserCaller(address common.Address, caller bind.ContractCaller) (*FeeDisburserCaller, error) {
contract, err := bindFeeDisburser(address, caller, nil, nil)
if err != nil {
return nil, err
}
return &FeeDisburserCaller{contract: contract}, nil
}
// NewFeeDisburserTransactor creates a new write-only instance of FeeDisburser, bound to a specific deployed contract.
func NewFeeDisburserTransactor(address common.Address, transactor bind.ContractTransactor) (*FeeDisburserTransactor, error) {
contract, err := bindFeeDisburser(address, nil, transactor, nil)
if err != nil {
return nil, err
}
return &FeeDisburserTransactor{contract: contract}, nil
}
// NewFeeDisburserFilterer creates a new log filterer instance of FeeDisburser, bound to a specific deployed contract.
func NewFeeDisburserFilterer(address common.Address, filterer bind.ContractFilterer) (*FeeDisburserFilterer, error) {
contract, err := bindFeeDisburser(address, nil, nil, filterer)
if err != nil {
return nil, err
}
return &FeeDisburserFilterer{contract: contract}, nil
}
// bindFeeDisburser binds a generic wrapper to an already deployed contract.
func bindFeeDisburser(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := FeeDisburserMetaData.GetAbi()
if err != nil {
return nil, err
}
return bind.NewBoundContract(address, *parsed, caller, transactor, filterer), nil
}
// Call invokes the (constant) contract method with params as input values and
// sets the output to result. The result type might be a single field for simple
// returns, a slice of interfaces for anonymous returns and a struct for named
// returns.
func (_FeeDisburser *FeeDisburserRaw) Call(opts *bind.CallOpts, result *[]interface{}, method string, params ...interface{}) error {
return _FeeDisburser.Contract.FeeDisburserCaller.contract.Call(opts, result, method, params...)
}
// Transfer initiates a plain transaction to move funds to the contract, calling
// its default method if one is available.
func (_FeeDisburser *FeeDisburserRaw) Transfer(opts *bind.TransactOpts) (*types.Transaction, error) {
return _FeeDisburser.Contract.FeeDisburserTransactor.contract.Transfer(opts)
}
// Transact invokes the (paid) contract method with params as input values.
func (_FeeDisburser *FeeDisburserRaw) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (*types.Transaction, error) {
return _FeeDisburser.Contract.FeeDisburserTransactor.contract.Transact(opts, method, params...)
}
// Call invokes the (constant) contract method with params as input values and
// sets the output to result. The result type might be a single field for simple
// returns, a slice of interfaces for anonymous returns and a struct for named
// returns.
func (_FeeDisburser *FeeDisburserCallerRaw) Call(opts *bind.CallOpts, result *[]interface{}, method string, params ...interface{}) error {
return _FeeDisburser.Contract.contract.Call(opts, result, method, params...)
}
// Transfer initiates a plain transaction to move funds to the contract, calling
// its default method if one is available.
func (_FeeDisburser *FeeDisburserTransactorRaw) Transfer(opts *bind.TransactOpts) (*types.Transaction, error) {
return _FeeDisburser.Contract.contract.Transfer(opts)
}
// Transact invokes the (paid) contract method with params as input values.
func (_FeeDisburser *FeeDisburserTransactorRaw) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (*types.Transaction, error) {
return _FeeDisburser.Contract.contract.Transact(opts, method, params...)
}
// BASISPOINTSCALE is a free data retrieval call binding the contract method 0x5b201d83.
//
// Solidity: function BASIS_POINT_SCALE() view returns(uint32)
func (_FeeDisburser *FeeDisburserCaller) BASISPOINTSCALE(opts *bind.CallOpts) (uint32, error) {
var out []interface{}
err := _FeeDisburser.contract.Call(opts, &out, "BASIS_POINT_SCALE")
if err != nil {
return *new(uint32), err
}
out0 := *abi.ConvertType(out[0], new(uint32)).(*uint32)
return out0, err
}
// BASISPOINTSCALE is a free data retrieval call binding the contract method 0x5b201d83.
//
// Solidity: function BASIS_POINT_SCALE() view returns(uint32)
func (_FeeDisburser *FeeDisburserSession) BASISPOINTSCALE() (uint32, error) {
return _FeeDisburser.Contract.BASISPOINTSCALE(&_FeeDisburser.CallOpts)
}
// BASISPOINTSCALE is a free data retrieval call binding the contract method 0x5b201d83.
//
// Solidity: function BASIS_POINT_SCALE() view returns(uint32)
func (_FeeDisburser *FeeDisburserCallerSession) BASISPOINTSCALE() (uint32, error) {
return _FeeDisburser.Contract.BASISPOINTSCALE(&_FeeDisburser.CallOpts)
}
// FEEDISBURSEMENTINTERVAL is a free data retrieval call binding the contract method 0x54664de5.
//
// Solidity: function FEE_DISBURSEMENT_INTERVAL() view returns(uint256)
func (_FeeDisburser *FeeDisburserCaller) FEEDISBURSEMENTINTERVAL(opts *bind.CallOpts) (*big.Int, error) {
var out []interface{}
err := _FeeDisburser.contract.Call(opts, &out, "FEE_DISBURSEMENT_INTERVAL")
if err != nil {
return *new(*big.Int), err
}
out0 := *abi.ConvertType(out[0], new(*big.Int)).(**big.Int)
return out0, err
}
// FEEDISBURSEMENTINTERVAL is a free data retrieval call binding the contract method 0x54664de5.
//
// Solidity: function FEE_DISBURSEMENT_INTERVAL() view returns(uint256)
func (_FeeDisburser *FeeDisburserSession) FEEDISBURSEMENTINTERVAL() (*big.Int, error) {
return _FeeDisburser.Contract.FEEDISBURSEMENTINTERVAL(&_FeeDisburser.CallOpts)
}
// FEEDISBURSEMENTINTERVAL is a free data retrieval call binding the contract method 0x54664de5.
//
// Solidity: function FEE_DISBURSEMENT_INTERVAL() view returns(uint256)
func (_FeeDisburser *FeeDisburserCallerSession) FEEDISBURSEMENTINTERVAL() (*big.Int, error) {
return _FeeDisburser.Contract.FEEDISBURSEMENTINTERVAL(&_FeeDisburser.CallOpts)
}
// L1WALLET is a free data retrieval call binding the contract method 0x36f1a6e5.
//
// Solidity: function L1_WALLET() view returns(address)
func (_FeeDisburser *FeeDisburserCaller) L1WALLET(opts *bind.CallOpts) (common.Address, error) {
var out []interface{}
err := _FeeDisburser.contract.Call(opts, &out, "L1_WALLET")
if err != nil {
return *new(common.Address), err
}
out0 := *abi.ConvertType(out[0], new(common.Address)).(*common.Address)
return out0, err
}
// L1WALLET is a free data retrieval call binding the contract method 0x36f1a6e5.
//
// Solidity: function L1_WALLET() view returns(address)
func (_FeeDisburser *FeeDisburserSession) L1WALLET() (common.Address, error) {
return _FeeDisburser.Contract.L1WALLET(&_FeeDisburser.CallOpts)
}
// L1WALLET is a free data retrieval call binding the contract method 0x36f1a6e5.
//
// Solidity: function L1_WALLET() view returns(address)
func (_FeeDisburser *FeeDisburserCallerSession) L1WALLET() (common.Address, error) {
return _FeeDisburser.Contract.L1WALLET(&_FeeDisburser.CallOpts)
}
// OPTIMISMGROSSREVENUESHAREBASISPOINTS is a free data retrieval call binding the contract method 0x235d506d.
//
// Solidity: function OPTIMISM_GROSS_REVENUE_SHARE_BASIS_POINTS() view returns(uint256)
func (_FeeDisburser *FeeDisburserCaller) OPTIMISMGROSSREVENUESHAREBASISPOINTS(opts *bind.CallOpts) (*big.Int, error) {
var out []interface{}
err := _FeeDisburser.contract.Call(opts, &out, "OPTIMISM_GROSS_REVENUE_SHARE_BASIS_POINTS")
if err != nil {
return *new(*big.Int), err
}
out0 := *abi.ConvertType(out[0], new(*big.Int)).(**big.Int)
return out0, err
}
// OPTIMISMGROSSREVENUESHAREBASISPOINTS is a free data retrieval call binding the contract method 0x235d506d.
//
// Solidity: function OPTIMISM_GROSS_REVENUE_SHARE_BASIS_POINTS() view returns(uint256)
func (_FeeDisburser *FeeDisburserSession) OPTIMISMGROSSREVENUESHAREBASISPOINTS() (*big.Int, error) {
return _FeeDisburser.Contract.OPTIMISMGROSSREVENUESHAREBASISPOINTS(&_FeeDisburser.CallOpts)
}
// OPTIMISMGROSSREVENUESHAREBASISPOINTS is a free data retrieval call binding the contract method 0x235d506d.
//
// Solidity: function OPTIMISM_GROSS_REVENUE_SHARE_BASIS_POINTS() view returns(uint256)
func (_FeeDisburser *FeeDisburserCallerSession) OPTIMISMGROSSREVENUESHAREBASISPOINTS() (*big.Int, error) {
return _FeeDisburser.Contract.OPTIMISMGROSSREVENUESHAREBASISPOINTS(&_FeeDisburser.CallOpts)
}
// OPTIMISMNETREVENUESHAREBASISPOINTS is a free data retrieval call binding the contract method 0x93819a3f.
//
// Solidity: function OPTIMISM_NET_REVENUE_SHARE_BASIS_POINTS() view returns(uint256)
func (_FeeDisburser *FeeDisburserCaller) OPTIMISMNETREVENUESHAREBASISPOINTS(opts *bind.CallOpts) (*big.Int, error) {
var out []interface{}
err := _FeeDisburser.contract.Call(opts, &out, "OPTIMISM_NET_REVENUE_SHARE_BASIS_POINTS")
if err != nil {
return *new(*big.Int), err
}
out0 := *abi.ConvertType(out[0], new(*big.Int)).(**big.Int)
return out0, err
}
// OPTIMISMNETREVENUESHAREBASISPOINTS is a free data retrieval call binding the contract method 0x93819a3f.
//
// Solidity: function OPTIMISM_NET_REVENUE_SHARE_BASIS_POINTS() view returns(uint256)
func (_FeeDisburser *FeeDisburserSession) OPTIMISMNETREVENUESHAREBASISPOINTS() (*big.Int, error) {
return _FeeDisburser.Contract.OPTIMISMNETREVENUESHAREBASISPOINTS(&_FeeDisburser.CallOpts)
}
// OPTIMISMNETREVENUESHAREBASISPOINTS is a free data retrieval call binding the contract method 0x93819a3f.
//
// Solidity: function OPTIMISM_NET_REVENUE_SHARE_BASIS_POINTS() view returns(uint256)
func (_FeeDisburser *FeeDisburserCallerSession) OPTIMISMNETREVENUESHAREBASISPOINTS() (*big.Int, error) {
return _FeeDisburser.Contract.OPTIMISMNETREVENUESHAREBASISPOINTS(&_FeeDisburser.CallOpts)
}
// OPTIMISMWALLET is a free data retrieval call binding the contract method 0x0c8cd070.
//
// Solidity: function OPTIMISM_WALLET() view returns(address)
func (_FeeDisburser *FeeDisburserCaller) OPTIMISMWALLET(opts *bind.CallOpts) (common.Address, error) {
var out []interface{}
err := _FeeDisburser.contract.Call(opts, &out, "OPTIMISM_WALLET")
if err != nil {
return *new(common.Address), err
}
out0 := *abi.ConvertType(out[0], new(common.Address)).(*common.Address)
return out0, err
}
// OPTIMISMWALLET is a free data retrieval call binding the contract method 0x0c8cd070.
//
// Solidity: function OPTIMISM_WALLET() view returns(address)
func (_FeeDisburser *FeeDisburserSession) OPTIMISMWALLET() (common.Address, error) {
return _FeeDisburser.Contract.OPTIMISMWALLET(&_FeeDisburser.CallOpts)
}
// OPTIMISMWALLET is a free data retrieval call binding the contract method 0x0c8cd070.
//
// Solidity: function OPTIMISM_WALLET() view returns(address)
func (_FeeDisburser *FeeDisburserCallerSession) OPTIMISMWALLET() (common.Address, error) {
return _FeeDisburser.Contract.OPTIMISMWALLET(&_FeeDisburser.CallOpts)
}
// WITHDRAWALMINGAS is a free data retrieval call binding the contract method 0xad41d09c.
//
// Solidity: function WITHDRAWAL_MIN_GAS() view returns(uint32)
func (_FeeDisburser *FeeDisburserCaller) WITHDRAWALMINGAS(opts *bind.CallOpts) (uint32, error) {
var out []interface{}
err := _FeeDisburser.contract.Call(opts, &out, "WITHDRAWAL_MIN_GAS")
if err != nil {
return *new(uint32), err
}
out0 := *abi.ConvertType(out[0], new(uint32)).(*uint32)
return out0, err
}
// WITHDRAWALMINGAS is a free data retrieval call binding the contract method 0xad41d09c.
//
// Solidity: function WITHDRAWAL_MIN_GAS() view returns(uint32)
func (_FeeDisburser *FeeDisburserSession) WITHDRAWALMINGAS() (uint32, error) {
return _FeeDisburser.Contract.WITHDRAWALMINGAS(&_FeeDisburser.CallOpts)
}
// WITHDRAWALMINGAS is a free data retrieval call binding the contract method 0xad41d09c.
//
// Solidity: function WITHDRAWAL_MIN_GAS() view returns(uint32)
func (_FeeDisburser *FeeDisburserCallerSession) WITHDRAWALMINGAS() (uint32, error) {
return _FeeDisburser.Contract.WITHDRAWALMINGAS(&_FeeDisburser.CallOpts)
}
// LastDisbursementTime is a free data retrieval call binding the contract method 0x394d2731.
//
// Solidity: function lastDisbursementTime() view returns(uint256)
func (_FeeDisburser *FeeDisburserCaller) LastDisbursementTime(opts *bind.CallOpts) (*big.Int, error) {
var out []interface{}
err := _FeeDisburser.contract.Call(opts, &out, "lastDisbursementTime")
if err != nil {
return *new(*big.Int), err
}
out0 := *abi.ConvertType(out[0], new(*big.Int)).(**big.Int)
return out0, err
}
// LastDisbursementTime is a free data retrieval call binding the contract method 0x394d2731.
//
// Solidity: function lastDisbursementTime() view returns(uint256)
func (_FeeDisburser *FeeDisburserSession) LastDisbursementTime() (*big.Int, error) {
return _FeeDisburser.Contract.LastDisbursementTime(&_FeeDisburser.CallOpts)
}
// LastDisbursementTime is a free data retrieval call binding the contract method 0x394d2731.
//
// Solidity: function lastDisbursementTime() view returns(uint256)
func (_FeeDisburser *FeeDisburserCallerSession) LastDisbursementTime() (*big.Int, error) {
return _FeeDisburser.Contract.LastDisbursementTime(&_FeeDisburser.CallOpts)
}
// NetFeeRevenue is a free data retrieval call binding the contract method 0x447eb5ac.
//
// Solidity: function netFeeRevenue() view returns(uint256)
func (_FeeDisburser *FeeDisburserCaller) NetFeeRevenue(opts *bind.CallOpts) (*big.Int, error) {
var out []interface{}
err := _FeeDisburser.contract.Call(opts, &out, "netFeeRevenue")
if err != nil {
return *new(*big.Int), err
}
out0 := *abi.ConvertType(out[0], new(*big.Int)).(**big.Int)
return out0, err
}
// NetFeeRevenue is a free data retrieval call binding the contract method 0x447eb5ac.
//
// Solidity: function netFeeRevenue() view returns(uint256)
func (_FeeDisburser *FeeDisburserSession) NetFeeRevenue() (*big.Int, error) {
return _FeeDisburser.Contract.NetFeeRevenue(&_FeeDisburser.CallOpts)
}
// NetFeeRevenue is a free data retrieval call binding the contract method 0x447eb5ac.
//
// Solidity: function netFeeRevenue() view returns(uint256)
func (_FeeDisburser *FeeDisburserCallerSession) NetFeeRevenue() (*big.Int, error) {
return _FeeDisburser.Contract.NetFeeRevenue(&_FeeDisburser.CallOpts)
}
// DisburseFees is a paid mutator transaction binding the contract method 0xb87ea8d4.
//
// Solidity: function disburseFees() returns()
func (_FeeDisburser *FeeDisburserTransactor) DisburseFees(opts *bind.TransactOpts) (*types.Transaction, error) {
return _FeeDisburser.contract.Transact(opts, "disburseFees")
}
// DisburseFees is a paid mutator transaction binding the contract method 0xb87ea8d4.
//
// Solidity: function disburseFees() returns()
func (_FeeDisburser *FeeDisburserSession) DisburseFees() (*types.Transaction, error) {
return _FeeDisburser.Contract.DisburseFees(&_FeeDisburser.TransactOpts)
}
// DisburseFees is a paid mutator transaction binding the contract method 0xb87ea8d4.
//
// Solidity: function disburseFees() returns()
func (_FeeDisburser *FeeDisburserTransactorSession) DisburseFees() (*types.Transaction, error) {
return _FeeDisburser.Contract.DisburseFees(&_FeeDisburser.TransactOpts)
}
// Receive is a paid mutator transaction binding the contract receive function.
//
// Solidity: receive() payable returns()
func (_FeeDisburser *FeeDisburserTransactor) Receive(opts *bind.TransactOpts) (*types.Transaction, error) {
return _FeeDisburser.contract.RawTransact(opts, nil) // calldata is disallowed for receive function
}
// Receive is a paid mutator transaction binding the contract receive function.
//
// Solidity: receive() payable returns()
func (_FeeDisburser *FeeDisburserSession) Receive() (*types.Transaction, error) {
return _FeeDisburser.Contract.Receive(&_FeeDisburser.TransactOpts)
}
// Receive is a paid mutator transaction binding the contract receive function.
//
// Solidity: receive() payable returns()
func (_FeeDisburser *FeeDisburserTransactorSession) Receive() (*types.Transaction, error) {
return _FeeDisburser.Contract.Receive(&_FeeDisburser.TransactOpts)
}
// FeeDisburserFeesDisbursedIterator is returned from FilterFeesDisbursed and is used to iterate over the raw logs and unpacked data for FeesDisbursed events raised by the FeeDisburser contract.
type FeeDisburserFeesDisbursedIterator struct {
Event *FeeDisburserFeesDisbursed // Event containing the contract specifics and raw log
contract *bind.BoundContract // Generic contract to use for unpacking event data
event string // Event name to use for unpacking event data
logs chan types.Log // Log channel receiving the found contract events
sub ethereum.Subscription // Subscription for errors, completion and termination
done bool // Whether the subscription completed delivering logs
fail error // Occurred error to stop iteration
}
// Next advances the iterator to the subsequent event, returning whether there
// are any more events found. In case of a retrieval or parsing error, false is
// returned and Error() can be queried for the exact failure.
func (it *FeeDisburserFeesDisbursedIterator) Next() bool {
// If the iterator failed, stop iterating
if it.fail != nil {
return false
}
// If the iterator completed, deliver directly whatever's available
if it.done {
select {
case log := <-it.logs:
it.Event = new(FeeDisburserFeesDisbursed)
if err := it.contract.UnpackLog(it.Event, it.event, log); err != nil {
it.fail = err
return false
}
it.Event.Raw = log
return true
default:
return false
}
}
// Iterator still in progress, wait for either a data or an error event
select {
case log := <-it.logs:
it.Event = new(FeeDisburserFeesDisbursed)
if err := it.contract.UnpackLog(it.Event, it.event, log); err != nil {
it.fail = err
return false
}
it.Event.Raw = log
return true
case err := <-it.sub.Err():
it.done = true
it.fail = err
return it.Next()
}
}
// Error returns any retrieval or parsing error occurred during filtering.
func (it *FeeDisburserFeesDisbursedIterator) Error() error {
return it.fail
}
// Close terminates the iteration process, releasing any pending underlying
// resources.
func (it *FeeDisburserFeesDisbursedIterator) Close() error {
it.sub.Unsubscribe()
return nil
}
// FeeDisburserFeesDisbursed represents a FeesDisbursed event raised by the FeeDisburser contract.
type FeeDisburserFeesDisbursed struct {
DisbursementTime *big.Int
PaidToOptimism *big.Int
TotalFeesDisbursed *big.Int
Raw types.Log // Blockchain specific contextual infos
}
// FilterFeesDisbursed is a free log retrieval operation binding the contract event 0xe155e054cfe69655d6d2f8bbfb856aa8cdf49ecbea6557901533364539caad94.
//
// Solidity: event FeesDisbursed(uint256 _disbursementTime, uint256 _paidToOptimism, uint256 _totalFeesDisbursed)
func (_FeeDisburser *FeeDisburserFilterer) FilterFeesDisbursed(opts *bind.FilterOpts) (*FeeDisburserFeesDisbursedIterator, error) {
logs, sub, err := _FeeDisburser.contract.FilterLogs(opts, "FeesDisbursed")
if err != nil {
return nil, err
}
return &FeeDisburserFeesDisbursedIterator{contract: _FeeDisburser.contract, event: "FeesDisbursed", logs: logs, sub: sub}, nil
}
// WatchFeesDisbursed is a free log subscription operation binding the contract event 0xe155e054cfe69655d6d2f8bbfb856aa8cdf49ecbea6557901533364539caad94.
//
// Solidity: event FeesDisbursed(uint256 _disbursementTime, uint256 _paidToOptimism, uint256 _totalFeesDisbursed)
func (_FeeDisburser *FeeDisburserFilterer) WatchFeesDisbursed(opts *bind.WatchOpts, sink chan<- *FeeDisburserFeesDisbursed) (event.Subscription, error) {
logs, sub, err := _FeeDisburser.contract.WatchLogs(opts, "FeesDisbursed")
if err != nil {
return nil, err
}
return event.NewSubscription(func(quit <-chan struct{}) error {
defer sub.Unsubscribe()
for {
select {
case log := <-logs:
// New log arrived, parse the event and forward to the user
event := new(FeeDisburserFeesDisbursed)
if err := _FeeDisburser.contract.UnpackLog(event, "FeesDisbursed", log); err != nil {
return err
}
event.Raw = log
select {
case sink <- event:
case err := <-sub.Err():
return err
case <-quit:
return nil
}
case err := <-sub.Err():
return err
case <-quit:
return nil
}
}
}), nil
}
// ParseFeesDisbursed is a log parse operation binding the contract event 0xe155e054cfe69655d6d2f8bbfb856aa8cdf49ecbea6557901533364539caad94.
//
// Solidity: event FeesDisbursed(uint256 _disbursementTime, uint256 _paidToOptimism, uint256 _totalFeesDisbursed)
func (_FeeDisburser *FeeDisburserFilterer) ParseFeesDisbursed(log types.Log) (*FeeDisburserFeesDisbursed, error) {
event := new(FeeDisburserFeesDisbursed)
if err := _FeeDisburser.contract.UnpackLog(event, "FeesDisbursed", log); err != nil {
return nil, err
}
event.Raw = log
return event, nil
}
// FeeDisburserFeesReceivedIterator is returned from FilterFeesReceived and is used to iterate over the raw logs and unpacked data for FeesReceived events raised by the FeeDisburser contract.
type FeeDisburserFeesReceivedIterator struct {
Event *FeeDisburserFeesReceived // Event containing the contract specifics and raw log
contract *bind.BoundContract // Generic contract to use for unpacking event data
event string // Event name to use for unpacking event data
logs chan types.Log // Log channel receiving the found contract events
sub ethereum.Subscription // Subscription for errors, completion and termination
done bool // Whether the subscription completed delivering logs
fail error // Occurred error to stop iteration
}
// Next advances the iterator to the subsequent event, returning whether there
// are any more events found. In case of a retrieval or parsing error, false is
// returned and Error() can be queried for the exact failure.
func (it *FeeDisburserFeesReceivedIterator) Next() bool {
// If the iterator failed, stop iterating
if it.fail != nil {
return false
}
// If the iterator completed, deliver directly whatever's available
if it.done {
select {
case log := <-it.logs:
it.Event = new(FeeDisburserFeesReceived)
if err := it.contract.UnpackLog(it.Event, it.event, log); err != nil {
it.fail = err
return false
}
it.Event.Raw = log
return true
default:
return false
}
}
// Iterator still in progress, wait for either a data or an error event
select {
case log := <-it.logs:
it.Event = new(FeeDisburserFeesReceived)
if err := it.contract.UnpackLog(it.Event, it.event, log); err != nil {
it.fail = err
return false
}
it.Event.Raw = log
return true
case err := <-it.sub.Err():
it.done = true
it.fail = err
return it.Next()
}
}
// Error returns any retrieval or parsing error occurred during filtering.
func (it *FeeDisburserFeesReceivedIterator) Error() error {
return it.fail
}
// Close terminates the iteration process, releasing any pending underlying
// resources.
func (it *FeeDisburserFeesReceivedIterator) Close() error {
it.sub.Unsubscribe()
return nil
}
// FeeDisburserFeesReceived represents a FeesReceived event raised by the FeeDisburser contract.
type FeeDisburserFeesReceived struct {
Sender common.Address
Amount *big.Int
Raw types.Log // Blockchain specific contextual infos
}
// FilterFeesReceived is a free log retrieval operation binding the contract event 0x2ccfc58c2cef4ee590b5f16be0548cc54afc12e1c66a67b362b7d640fd16bb2d.
//
// Solidity: event FeesReceived(address indexed _sender, uint256 _amount)
func (_FeeDisburser *FeeDisburserFilterer) FilterFeesReceived(opts *bind.FilterOpts, _sender []common.Address) (*FeeDisburserFeesReceivedIterator, error) {
var _senderRule []interface{}
for _, _senderItem := range _sender {
_senderRule = append(_senderRule, _senderItem)
}
logs, sub, err := _FeeDisburser.contract.FilterLogs(opts, "FeesReceived", _senderRule)
if err != nil {
return nil, err
}
return &FeeDisburserFeesReceivedIterator{contract: _FeeDisburser.contract, event: "FeesReceived", logs: logs, sub: sub}, nil
}
// WatchFeesReceived is a free log subscription operation binding the contract event 0x2ccfc58c2cef4ee590b5f16be0548cc54afc12e1c66a67b362b7d640fd16bb2d.
//
// Solidity: event FeesReceived(address indexed _sender, uint256 _amount)
func (_FeeDisburser *FeeDisburserFilterer) WatchFeesReceived(opts *bind.WatchOpts, sink chan<- *FeeDisburserFeesReceived, _sender []common.Address) (event.Subscription, error) {
var _senderRule []interface{}
for _, _senderItem := range _sender {
_senderRule = append(_senderRule, _senderItem)
}
logs, sub, err := _FeeDisburser.contract.WatchLogs(opts, "FeesReceived", _senderRule)
if err != nil {
return nil, err
}
return event.NewSubscription(func(quit <-chan struct{}) error {
defer sub.Unsubscribe()
for {
select {
case log := <-logs:
// New log arrived, parse the event and forward to the user
event := new(FeeDisburserFeesReceived)
if err := _FeeDisburser.contract.UnpackLog(event, "FeesReceived", log); err != nil {
return err
}
event.Raw = log
select {
case sink <- event:
case err := <-sub.Err():
return err
case <-quit:
return nil
}
case err := <-sub.Err():
return err
case <-quit:
return nil
}
}
}), nil
}
// ParseFeesReceived is a log parse operation binding the contract event 0x2ccfc58c2cef4ee590b5f16be0548cc54afc12e1c66a67b362b7d640fd16bb2d.
//
// Solidity: event FeesReceived(address indexed _sender, uint256 _amount)
func (_FeeDisburser *FeeDisburserFilterer) ParseFeesReceived(log types.Log) (*FeeDisburserFeesReceived, error) {
event := new(FeeDisburserFeesReceived)
if err := _FeeDisburser.contract.UnpackLog(event, "FeesReceived", log); err != nil {
return nil, err
}
event.Raw = log
return event, nil
}
// FeeDisburserNoFeesCollectedIterator is returned from FilterNoFeesCollected and is used to iterate over the raw logs and unpacked data for NoFeesCollected events raised by the FeeDisburser contract.
type FeeDisburserNoFeesCollectedIterator struct {
Event *FeeDisburserNoFeesCollected // Event containing the contract specifics and raw log
contract *bind.BoundContract // Generic contract to use for unpacking event data
event string // Event name to use for unpacking event data
logs chan types.Log // Log channel receiving the found contract events
sub ethereum.Subscription // Subscription for errors, completion and termination
done bool // Whether the subscription completed delivering logs
fail error // Occurred error to stop iteration
}
// Next advances the iterator to the subsequent event, returning whether there
// are any more events found. In case of a retrieval or parsing error, false is
// returned and Error() can be queried for the exact failure.
func (it *FeeDisburserNoFeesCollectedIterator) Next() bool {
// If the iterator failed, stop iterating
if it.fail != nil {
return false
}
// If the iterator completed, deliver directly whatever's available
if it.done {
select {
case log := <-it.logs:
it.Event = new(FeeDisburserNoFeesCollected)
if err := it.contract.UnpackLog(it.Event, it.event, log); err != nil {
it.fail = err
return false
}
it.Event.Raw = log
return true
default:
return false
}
}
// Iterator still in progress, wait for either a data or an error event
select {
case log := <-it.logs:
it.Event = new(FeeDisburserNoFeesCollected)
if err := it.contract.UnpackLog(it.Event, it.event, log); err != nil {
it.fail = err
return false
}
it.Event.Raw = log
return true
case err := <-it.sub.Err():
it.done = true
it.fail = err
return it.Next()
}
}
// Error returns any retrieval or parsing error occurred during filtering.
func (it *FeeDisburserNoFeesCollectedIterator) Error() error {
return it.fail
}
// Close terminates the iteration process, releasing any pending underlying
// resources.
func (it *FeeDisburserNoFeesCollectedIterator) Close() error {
it.sub.Unsubscribe()
return nil
}
// FeeDisburserNoFeesCollected represents a NoFeesCollected event raised by the FeeDisburser contract.
type FeeDisburserNoFeesCollected struct {
Raw types.Log // Blockchain specific contextual infos
}
// FilterNoFeesCollected is a free log retrieval operation binding the contract event 0x8c887b1215d5e6b119c1c1008fe1d0919b4c438301d5a0357362a13fb56f6a40.
//
// Solidity: event NoFeesCollected()
func (_FeeDisburser *FeeDisburserFilterer) FilterNoFeesCollected(opts *bind.FilterOpts) (*FeeDisburserNoFeesCollectedIterator, error) {
logs, sub, err := _FeeDisburser.contract.FilterLogs(opts, "NoFeesCollected")
if err != nil {
return nil, err
}
return &FeeDisburserNoFeesCollectedIterator{contract: _FeeDisburser.contract, event: "NoFeesCollected", logs: logs, sub: sub}, nil
}
// WatchNoFeesCollected is a free log subscription operation binding the contract event 0x8c887b1215d5e6b119c1c1008fe1d0919b4c438301d5a0357362a13fb56f6a40.
//
// Solidity: event NoFeesCollected()
func (_FeeDisburser *FeeDisburserFilterer) WatchNoFeesCollected(opts *bind.WatchOpts, sink chan<- *FeeDisburserNoFeesCollected) (event.Subscription, error) {
logs, sub, err := _FeeDisburser.contract.WatchLogs(opts, "NoFeesCollected")
if err != nil {
return nil, err
}
return event.NewSubscription(func(quit <-chan struct{}) error {
defer sub.Unsubscribe()
for {
select {
case log := <-logs:
// New log arrived, parse the event and forward to the user
event := new(FeeDisburserNoFeesCollected)
if err := _FeeDisburser.contract.UnpackLog(event, "NoFeesCollected", log); err != nil {
return err
}
event.Raw = log
select {
case sink <- event:
case err := <-sub.Err():
return err
case <-quit:
return nil
}
case err := <-sub.Err():
return err
case <-quit:
return nil
}
}
}), nil
}
// ParseNoFeesCollected is a log parse operation binding the contract event 0x8c887b1215d5e6b119c1c1008fe1d0919b4c438301d5a0357362a13fb56f6a40.
//
// Solidity: event NoFeesCollected()
func (_FeeDisburser *FeeDisburserFilterer) ParseNoFeesCollected(log types.Log) (*FeeDisburserNoFeesCollected, error) {
event := new(FeeDisburserNoFeesCollected)
if err := _FeeDisburser.contract.UnpackLog(event, "NoFeesCollected", log); err != nil {
return nil, err
}
event.Raw = log
return event, nil
}