-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbindings.go
1577 lines (1352 loc) · 68.1 KB
/
bindings.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 - DO NOT EDIT.
// This file is a generated binding and any manual changes will be lost.
package router_registry
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
)
// IRouterRegistryRouter is an auto generated low-level Go binding around an user-defined struct.
type IRouterRegistryRouter struct {
Id [32]byte
Owner common.Address
Netid *big.Int
Prefix uint32
Mask uint8
FrequencyPlan uint8
Endpoint string
}
// RouterRegistryMetaData contains all meta data concerning the RouterRegistry contract.
var RouterRegistryMetaData = &bind.MetaData{
ABI: "[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"manager\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"previousAdminRole\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"newAdminRole\",\"type\":\"bytes32\"}],\"name\":\"RoleAdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleGranted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleRevoked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"RouterRegistered\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"RouterRemoved\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"RouterUpdated\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"DEFAULT_ADMIN_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"ROUTER_REGISTERER_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"ROUTER_REMOVER_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"ROUTER_UPDATE_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"TRUSTED_FORWARDER_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"}],\"name\":\"getRoleAdmin\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"grantRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasRole\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint24\",\"name\":\"netid\",\"type\":\"uint24\"},{\"internalType\":\"uint32\",\"name\":\"prefix\",\"type\":\"uint32\"},{\"internalType\":\"uint8\",\"name\":\"mask\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"frequencyPlan\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"endpoint\",\"type\":\"string\"}],\"name\":\"register\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"remove\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"renounceRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"revokeRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"routerCount\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"routers\",\"outputs\":[{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint24\",\"name\":\"netid\",\"type\":\"uint24\"},{\"internalType\":\"uint32\",\"name\":\"prefix\",\"type\":\"uint32\"},{\"internalType\":\"uint8\",\"name\":\"mask\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"frequencyPlan\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"endpoint\",\"type\":\"string\"}],\"internalType\":\"structIRouterRegistry.Router\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"start\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"end\",\"type\":\"uint256\"}],\"name\":\"routersPaged\",\"outputs\":[{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint24\",\"name\":\"netid\",\"type\":\"uint24\"},{\"internalType\":\"uint32\",\"name\":\"prefix\",\"type\":\"uint32\"},{\"internalType\":\"uint8\",\"name\":\"mask\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"frequencyPlan\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"endpoint\",\"type\":\"string\"}],\"internalType\":\"structIRouterRegistry.Router[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint24\",\"name\":\"netid\",\"type\":\"uint24\"},{\"internalType\":\"uint32\",\"name\":\"prefix\",\"type\":\"uint32\"},{\"internalType\":\"uint8\",\"name\":\"mask\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"frequencyPlan\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"endpoint\",\"type\":\"string\"}],\"name\":\"update\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}]",
}
// RouterRegistryABI is the input ABI used to generate the binding from.
// Deprecated: Use RouterRegistryMetaData.ABI instead.
var RouterRegistryABI = RouterRegistryMetaData.ABI
// RouterRegistry is an auto generated Go binding around an Ethereum contract.
type RouterRegistry struct {
RouterRegistryCaller // Read-only binding to the contract
RouterRegistryTransactor // Write-only binding to the contract
RouterRegistryFilterer // Log filterer for contract events
}
// RouterRegistryCaller is an auto generated read-only Go binding around an Ethereum contract.
type RouterRegistryCaller struct {
contract *bind.BoundContract // Generic contract wrapper for the low level calls
}
// RouterRegistryTransactor is an auto generated write-only Go binding around an Ethereum contract.
type RouterRegistryTransactor struct {
contract *bind.BoundContract // Generic contract wrapper for the low level calls
}
// RouterRegistryFilterer is an auto generated log filtering Go binding around an Ethereum contract events.
type RouterRegistryFilterer struct {
contract *bind.BoundContract // Generic contract wrapper for the low level calls
}
// RouterRegistrySession is an auto generated Go binding around an Ethereum contract,
// with pre-set call and transact options.
type RouterRegistrySession struct {
Contract *RouterRegistry // 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
}
// RouterRegistryCallerSession is an auto generated read-only Go binding around an Ethereum contract,
// with pre-set call options.
type RouterRegistryCallerSession struct {
Contract *RouterRegistryCaller // Generic contract caller binding to set the session for
CallOpts bind.CallOpts // Call options to use throughout this session
}
// RouterRegistryTransactorSession is an auto generated write-only Go binding around an Ethereum contract,
// with pre-set transact options.
type RouterRegistryTransactorSession struct {
Contract *RouterRegistryTransactor // Generic contract transactor binding to set the session for
TransactOpts bind.TransactOpts // Transaction auth options to use throughout this session
}
// RouterRegistryRaw is an auto generated low-level Go binding around an Ethereum contract.
type RouterRegistryRaw struct {
Contract *RouterRegistry // Generic contract binding to access the raw methods on
}
// RouterRegistryCallerRaw is an auto generated low-level read-only Go binding around an Ethereum contract.
type RouterRegistryCallerRaw struct {
Contract *RouterRegistryCaller // Generic read-only contract binding to access the raw methods on
}
// RouterRegistryTransactorRaw is an auto generated low-level write-only Go binding around an Ethereum contract.
type RouterRegistryTransactorRaw struct {
Contract *RouterRegistryTransactor // Generic write-only contract binding to access the raw methods on
}
// NewRouterRegistry creates a new instance of RouterRegistry, bound to a specific deployed contract.
func NewRouterRegistry(address common.Address, backend bind.ContractBackend) (*RouterRegistry, error) {
contract, err := bindRouterRegistry(address, backend, backend, backend)
if err != nil {
return nil, err
}
return &RouterRegistry{RouterRegistryCaller: RouterRegistryCaller{contract: contract}, RouterRegistryTransactor: RouterRegistryTransactor{contract: contract}, RouterRegistryFilterer: RouterRegistryFilterer{contract: contract}}, nil
}
// NewRouterRegistryCaller creates a new read-only instance of RouterRegistry, bound to a specific deployed contract.
func NewRouterRegistryCaller(address common.Address, caller bind.ContractCaller) (*RouterRegistryCaller, error) {
contract, err := bindRouterRegistry(address, caller, nil, nil)
if err != nil {
return nil, err
}
return &RouterRegistryCaller{contract: contract}, nil
}
// NewRouterRegistryTransactor creates a new write-only instance of RouterRegistry, bound to a specific deployed contract.
func NewRouterRegistryTransactor(address common.Address, transactor bind.ContractTransactor) (*RouterRegistryTransactor, error) {
contract, err := bindRouterRegistry(address, nil, transactor, nil)
if err != nil {
return nil, err
}
return &RouterRegistryTransactor{contract: contract}, nil
}
// NewRouterRegistryFilterer creates a new log filterer instance of RouterRegistry, bound to a specific deployed contract.
func NewRouterRegistryFilterer(address common.Address, filterer bind.ContractFilterer) (*RouterRegistryFilterer, error) {
contract, err := bindRouterRegistry(address, nil, nil, filterer)
if err != nil {
return nil, err
}
return &RouterRegistryFilterer{contract: contract}, nil
}
// bindRouterRegistry binds a generic wrapper to an already deployed contract.
func bindRouterRegistry(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) {
parsed, err := RouterRegistryMetaData.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 (_RouterRegistry *RouterRegistryRaw) Call(opts *bind.CallOpts, result *[]interface{}, method string, params ...interface{}) error {
return _RouterRegistry.Contract.RouterRegistryCaller.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 (_RouterRegistry *RouterRegistryRaw) Transfer(opts *bind.TransactOpts) (*types.Transaction, error) {
return _RouterRegistry.Contract.RouterRegistryTransactor.contract.Transfer(opts)
}
// Transact invokes the (paid) contract method with params as input values.
func (_RouterRegistry *RouterRegistryRaw) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (*types.Transaction, error) {
return _RouterRegistry.Contract.RouterRegistryTransactor.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 (_RouterRegistry *RouterRegistryCallerRaw) Call(opts *bind.CallOpts, result *[]interface{}, method string, params ...interface{}) error {
return _RouterRegistry.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 (_RouterRegistry *RouterRegistryTransactorRaw) Transfer(opts *bind.TransactOpts) (*types.Transaction, error) {
return _RouterRegistry.Contract.contract.Transfer(opts)
}
// Transact invokes the (paid) contract method with params as input values.
func (_RouterRegistry *RouterRegistryTransactorRaw) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (*types.Transaction, error) {
return _RouterRegistry.Contract.contract.Transact(opts, method, params...)
}
// DEFAULTADMINROLE is a free data retrieval call binding the contract method 0xa217fddf.
//
// Solidity: function DEFAULT_ADMIN_ROLE() view returns(bytes32)
func (_RouterRegistry *RouterRegistryCaller) DEFAULTADMINROLE(opts *bind.CallOpts) ([32]byte, error) {
var out []interface{}
err := _RouterRegistry.contract.Call(opts, &out, "DEFAULT_ADMIN_ROLE")
if err != nil {
return *new([32]byte), err
}
out0 := *abi.ConvertType(out[0], new([32]byte)).(*[32]byte)
return out0, err
}
// DEFAULTADMINROLE is a free data retrieval call binding the contract method 0xa217fddf.
//
// Solidity: function DEFAULT_ADMIN_ROLE() view returns(bytes32)
func (_RouterRegistry *RouterRegistrySession) DEFAULTADMINROLE() ([32]byte, error) {
return _RouterRegistry.Contract.DEFAULTADMINROLE(&_RouterRegistry.CallOpts)
}
// DEFAULTADMINROLE is a free data retrieval call binding the contract method 0xa217fddf.
//
// Solidity: function DEFAULT_ADMIN_ROLE() view returns(bytes32)
func (_RouterRegistry *RouterRegistryCallerSession) DEFAULTADMINROLE() ([32]byte, error) {
return _RouterRegistry.Contract.DEFAULTADMINROLE(&_RouterRegistry.CallOpts)
}
// ROUTERREGISTERERROLE is a free data retrieval call binding the contract method 0x1916b5f7.
//
// Solidity: function ROUTER_REGISTERER_ROLE() view returns(bytes32)
func (_RouterRegistry *RouterRegistryCaller) ROUTERREGISTERERROLE(opts *bind.CallOpts) ([32]byte, error) {
var out []interface{}
err := _RouterRegistry.contract.Call(opts, &out, "ROUTER_REGISTERER_ROLE")
if err != nil {
return *new([32]byte), err
}
out0 := *abi.ConvertType(out[0], new([32]byte)).(*[32]byte)
return out0, err
}
// ROUTERREGISTERERROLE is a free data retrieval call binding the contract method 0x1916b5f7.
//
// Solidity: function ROUTER_REGISTERER_ROLE() view returns(bytes32)
func (_RouterRegistry *RouterRegistrySession) ROUTERREGISTERERROLE() ([32]byte, error) {
return _RouterRegistry.Contract.ROUTERREGISTERERROLE(&_RouterRegistry.CallOpts)
}
// ROUTERREGISTERERROLE is a free data retrieval call binding the contract method 0x1916b5f7.
//
// Solidity: function ROUTER_REGISTERER_ROLE() view returns(bytes32)
func (_RouterRegistry *RouterRegistryCallerSession) ROUTERREGISTERERROLE() ([32]byte, error) {
return _RouterRegistry.Contract.ROUTERREGISTERERROLE(&_RouterRegistry.CallOpts)
}
// ROUTERREMOVERROLE is a free data retrieval call binding the contract method 0x7a97d02d.
//
// Solidity: function ROUTER_REMOVER_ROLE() view returns(bytes32)
func (_RouterRegistry *RouterRegistryCaller) ROUTERREMOVERROLE(opts *bind.CallOpts) ([32]byte, error) {
var out []interface{}
err := _RouterRegistry.contract.Call(opts, &out, "ROUTER_REMOVER_ROLE")
if err != nil {
return *new([32]byte), err
}
out0 := *abi.ConvertType(out[0], new([32]byte)).(*[32]byte)
return out0, err
}
// ROUTERREMOVERROLE is a free data retrieval call binding the contract method 0x7a97d02d.
//
// Solidity: function ROUTER_REMOVER_ROLE() view returns(bytes32)
func (_RouterRegistry *RouterRegistrySession) ROUTERREMOVERROLE() ([32]byte, error) {
return _RouterRegistry.Contract.ROUTERREMOVERROLE(&_RouterRegistry.CallOpts)
}
// ROUTERREMOVERROLE is a free data retrieval call binding the contract method 0x7a97d02d.
//
// Solidity: function ROUTER_REMOVER_ROLE() view returns(bytes32)
func (_RouterRegistry *RouterRegistryCallerSession) ROUTERREMOVERROLE() ([32]byte, error) {
return _RouterRegistry.Contract.ROUTERREMOVERROLE(&_RouterRegistry.CallOpts)
}
// ROUTERUPDATEROLE is a free data retrieval call binding the contract method 0x5487d3ce.
//
// Solidity: function ROUTER_UPDATE_ROLE() view returns(bytes32)
func (_RouterRegistry *RouterRegistryCaller) ROUTERUPDATEROLE(opts *bind.CallOpts) ([32]byte, error) {
var out []interface{}
err := _RouterRegistry.contract.Call(opts, &out, "ROUTER_UPDATE_ROLE")
if err != nil {
return *new([32]byte), err
}
out0 := *abi.ConvertType(out[0], new([32]byte)).(*[32]byte)
return out0, err
}
// ROUTERUPDATEROLE is a free data retrieval call binding the contract method 0x5487d3ce.
//
// Solidity: function ROUTER_UPDATE_ROLE() view returns(bytes32)
func (_RouterRegistry *RouterRegistrySession) ROUTERUPDATEROLE() ([32]byte, error) {
return _RouterRegistry.Contract.ROUTERUPDATEROLE(&_RouterRegistry.CallOpts)
}
// ROUTERUPDATEROLE is a free data retrieval call binding the contract method 0x5487d3ce.
//
// Solidity: function ROUTER_UPDATE_ROLE() view returns(bytes32)
func (_RouterRegistry *RouterRegistryCallerSession) ROUTERUPDATEROLE() ([32]byte, error) {
return _RouterRegistry.Contract.ROUTERUPDATEROLE(&_RouterRegistry.CallOpts)
}
// TRUSTEDFORWARDERROLE is a free data retrieval call binding the contract method 0x00cba943.
//
// Solidity: function TRUSTED_FORWARDER_ROLE() view returns(bytes32)
func (_RouterRegistry *RouterRegistryCaller) TRUSTEDFORWARDERROLE(opts *bind.CallOpts) ([32]byte, error) {
var out []interface{}
err := _RouterRegistry.contract.Call(opts, &out, "TRUSTED_FORWARDER_ROLE")
if err != nil {
return *new([32]byte), err
}
out0 := *abi.ConvertType(out[0], new([32]byte)).(*[32]byte)
return out0, err
}
// TRUSTEDFORWARDERROLE is a free data retrieval call binding the contract method 0x00cba943.
//
// Solidity: function TRUSTED_FORWARDER_ROLE() view returns(bytes32)
func (_RouterRegistry *RouterRegistrySession) TRUSTEDFORWARDERROLE() ([32]byte, error) {
return _RouterRegistry.Contract.TRUSTEDFORWARDERROLE(&_RouterRegistry.CallOpts)
}
// TRUSTEDFORWARDERROLE is a free data retrieval call binding the contract method 0x00cba943.
//
// Solidity: function TRUSTED_FORWARDER_ROLE() view returns(bytes32)
func (_RouterRegistry *RouterRegistryCallerSession) TRUSTEDFORWARDERROLE() ([32]byte, error) {
return _RouterRegistry.Contract.TRUSTEDFORWARDERROLE(&_RouterRegistry.CallOpts)
}
// GetRoleAdmin is a free data retrieval call binding the contract method 0x248a9ca3.
//
// Solidity: function getRoleAdmin(bytes32 role) view returns(bytes32)
func (_RouterRegistry *RouterRegistryCaller) GetRoleAdmin(opts *bind.CallOpts, role [32]byte) ([32]byte, error) {
var out []interface{}
err := _RouterRegistry.contract.Call(opts, &out, "getRoleAdmin", role)
if err != nil {
return *new([32]byte), err
}
out0 := *abi.ConvertType(out[0], new([32]byte)).(*[32]byte)
return out0, err
}
// GetRoleAdmin is a free data retrieval call binding the contract method 0x248a9ca3.
//
// Solidity: function getRoleAdmin(bytes32 role) view returns(bytes32)
func (_RouterRegistry *RouterRegistrySession) GetRoleAdmin(role [32]byte) ([32]byte, error) {
return _RouterRegistry.Contract.GetRoleAdmin(&_RouterRegistry.CallOpts, role)
}
// GetRoleAdmin is a free data retrieval call binding the contract method 0x248a9ca3.
//
// Solidity: function getRoleAdmin(bytes32 role) view returns(bytes32)
func (_RouterRegistry *RouterRegistryCallerSession) GetRoleAdmin(role [32]byte) ([32]byte, error) {
return _RouterRegistry.Contract.GetRoleAdmin(&_RouterRegistry.CallOpts, role)
}
// HasRole is a free data retrieval call binding the contract method 0x91d14854.
//
// Solidity: function hasRole(bytes32 role, address account) view returns(bool)
func (_RouterRegistry *RouterRegistryCaller) HasRole(opts *bind.CallOpts, role [32]byte, account common.Address) (bool, error) {
var out []interface{}
err := _RouterRegistry.contract.Call(opts, &out, "hasRole", role, account)
if err != nil {
return *new(bool), err
}
out0 := *abi.ConvertType(out[0], new(bool)).(*bool)
return out0, err
}
// HasRole is a free data retrieval call binding the contract method 0x91d14854.
//
// Solidity: function hasRole(bytes32 role, address account) view returns(bool)
func (_RouterRegistry *RouterRegistrySession) HasRole(role [32]byte, account common.Address) (bool, error) {
return _RouterRegistry.Contract.HasRole(&_RouterRegistry.CallOpts, role, account)
}
// HasRole is a free data retrieval call binding the contract method 0x91d14854.
//
// Solidity: function hasRole(bytes32 role, address account) view returns(bool)
func (_RouterRegistry *RouterRegistryCallerSession) HasRole(role [32]byte, account common.Address) (bool, error) {
return _RouterRegistry.Contract.HasRole(&_RouterRegistry.CallOpts, role, account)
}
// RouterCount is a free data retrieval call binding the contract method 0x8e67e049.
//
// Solidity: function routerCount() view returns(uint256)
func (_RouterRegistry *RouterRegistryCaller) RouterCount(opts *bind.CallOpts) (*big.Int, error) {
var out []interface{}
err := _RouterRegistry.contract.Call(opts, &out, "routerCount")
if err != nil {
return *new(*big.Int), err
}
out0 := *abi.ConvertType(out[0], new(*big.Int)).(**big.Int)
return out0, err
}
// RouterCount is a free data retrieval call binding the contract method 0x8e67e049.
//
// Solidity: function routerCount() view returns(uint256)
func (_RouterRegistry *RouterRegistrySession) RouterCount() (*big.Int, error) {
return _RouterRegistry.Contract.RouterCount(&_RouterRegistry.CallOpts)
}
// RouterCount is a free data retrieval call binding the contract method 0x8e67e049.
//
// Solidity: function routerCount() view returns(uint256)
func (_RouterRegistry *RouterRegistryCallerSession) RouterCount() (*big.Int, error) {
return _RouterRegistry.Contract.RouterCount(&_RouterRegistry.CallOpts)
}
// Routers is a free data retrieval call binding the contract method 0xaa1fce69.
//
// Solidity: function routers(bytes32 id) view returns((bytes32,address,uint24,uint32,uint8,uint8,string))
func (_RouterRegistry *RouterRegistryCaller) Routers(opts *bind.CallOpts, id [32]byte) (IRouterRegistryRouter, error) {
var out []interface{}
err := _RouterRegistry.contract.Call(opts, &out, "routers", id)
if err != nil {
return *new(IRouterRegistryRouter), err
}
out0 := *abi.ConvertType(out[0], new(IRouterRegistryRouter)).(*IRouterRegistryRouter)
return out0, err
}
// Routers is a free data retrieval call binding the contract method 0xaa1fce69.
//
// Solidity: function routers(bytes32 id) view returns((bytes32,address,uint24,uint32,uint8,uint8,string))
func (_RouterRegistry *RouterRegistrySession) Routers(id [32]byte) (IRouterRegistryRouter, error) {
return _RouterRegistry.Contract.Routers(&_RouterRegistry.CallOpts, id)
}
// Routers is a free data retrieval call binding the contract method 0xaa1fce69.
//
// Solidity: function routers(bytes32 id) view returns((bytes32,address,uint24,uint32,uint8,uint8,string))
func (_RouterRegistry *RouterRegistryCallerSession) Routers(id [32]byte) (IRouterRegistryRouter, error) {
return _RouterRegistry.Contract.Routers(&_RouterRegistry.CallOpts, id)
}
// RoutersPaged is a free data retrieval call binding the contract method 0x5c6201eb.
//
// Solidity: function routersPaged(uint256 start, uint256 end) view returns((bytes32,address,uint24,uint32,uint8,uint8,string)[])
func (_RouterRegistry *RouterRegistryCaller) RoutersPaged(opts *bind.CallOpts, start *big.Int, end *big.Int) ([]IRouterRegistryRouter, error) {
var out []interface{}
err := _RouterRegistry.contract.Call(opts, &out, "routersPaged", start, end)
if err != nil {
return *new([]IRouterRegistryRouter), err
}
out0 := *abi.ConvertType(out[0], new([]IRouterRegistryRouter)).(*[]IRouterRegistryRouter)
return out0, err
}
// RoutersPaged is a free data retrieval call binding the contract method 0x5c6201eb.
//
// Solidity: function routersPaged(uint256 start, uint256 end) view returns((bytes32,address,uint24,uint32,uint8,uint8,string)[])
func (_RouterRegistry *RouterRegistrySession) RoutersPaged(start *big.Int, end *big.Int) ([]IRouterRegistryRouter, error) {
return _RouterRegistry.Contract.RoutersPaged(&_RouterRegistry.CallOpts, start, end)
}
// RoutersPaged is a free data retrieval call binding the contract method 0x5c6201eb.
//
// Solidity: function routersPaged(uint256 start, uint256 end) view returns((bytes32,address,uint24,uint32,uint8,uint8,string)[])
func (_RouterRegistry *RouterRegistryCallerSession) RoutersPaged(start *big.Int, end *big.Int) ([]IRouterRegistryRouter, error) {
return _RouterRegistry.Contract.RoutersPaged(&_RouterRegistry.CallOpts, start, end)
}
// SupportsInterface is a free data retrieval call binding the contract method 0x01ffc9a7.
//
// Solidity: function supportsInterface(bytes4 interfaceId) view returns(bool)
func (_RouterRegistry *RouterRegistryCaller) SupportsInterface(opts *bind.CallOpts, interfaceId [4]byte) (bool, error) {
var out []interface{}
err := _RouterRegistry.contract.Call(opts, &out, "supportsInterface", interfaceId)
if err != nil {
return *new(bool), err
}
out0 := *abi.ConvertType(out[0], new(bool)).(*bool)
return out0, err
}
// SupportsInterface is a free data retrieval call binding the contract method 0x01ffc9a7.
//
// Solidity: function supportsInterface(bytes4 interfaceId) view returns(bool)
func (_RouterRegistry *RouterRegistrySession) SupportsInterface(interfaceId [4]byte) (bool, error) {
return _RouterRegistry.Contract.SupportsInterface(&_RouterRegistry.CallOpts, interfaceId)
}
// SupportsInterface is a free data retrieval call binding the contract method 0x01ffc9a7.
//
// Solidity: function supportsInterface(bytes4 interfaceId) view returns(bool)
func (_RouterRegistry *RouterRegistryCallerSession) SupportsInterface(interfaceId [4]byte) (bool, error) {
return _RouterRegistry.Contract.SupportsInterface(&_RouterRegistry.CallOpts, interfaceId)
}
// GrantRole is a paid mutator transaction binding the contract method 0x2f2ff15d.
//
// Solidity: function grantRole(bytes32 role, address account) returns()
func (_RouterRegistry *RouterRegistryTransactor) GrantRole(opts *bind.TransactOpts, role [32]byte, account common.Address) (*types.Transaction, error) {
return _RouterRegistry.contract.Transact(opts, "grantRole", role, account)
}
// GrantRole is a paid mutator transaction binding the contract method 0x2f2ff15d.
//
// Solidity: function grantRole(bytes32 role, address account) returns()
func (_RouterRegistry *RouterRegistrySession) GrantRole(role [32]byte, account common.Address) (*types.Transaction, error) {
return _RouterRegistry.Contract.GrantRole(&_RouterRegistry.TransactOpts, role, account)
}
// GrantRole is a paid mutator transaction binding the contract method 0x2f2ff15d.
//
// Solidity: function grantRole(bytes32 role, address account) returns()
func (_RouterRegistry *RouterRegistryTransactorSession) GrantRole(role [32]byte, account common.Address) (*types.Transaction, error) {
return _RouterRegistry.Contract.GrantRole(&_RouterRegistry.TransactOpts, role, account)
}
// Register is a paid mutator transaction binding the contract method 0x9f26fa53.
//
// Solidity: function register(bytes32 id, address owner, uint24 netid, uint32 prefix, uint8 mask, uint8 frequencyPlan, string endpoint) returns()
func (_RouterRegistry *RouterRegistryTransactor) Register(opts *bind.TransactOpts, id [32]byte, owner common.Address, netid *big.Int, prefix uint32, mask uint8, frequencyPlan uint8, endpoint string) (*types.Transaction, error) {
return _RouterRegistry.contract.Transact(opts, "register", id, owner, netid, prefix, mask, frequencyPlan, endpoint)
}
// Register is a paid mutator transaction binding the contract method 0x9f26fa53.
//
// Solidity: function register(bytes32 id, address owner, uint24 netid, uint32 prefix, uint8 mask, uint8 frequencyPlan, string endpoint) returns()
func (_RouterRegistry *RouterRegistrySession) Register(id [32]byte, owner common.Address, netid *big.Int, prefix uint32, mask uint8, frequencyPlan uint8, endpoint string) (*types.Transaction, error) {
return _RouterRegistry.Contract.Register(&_RouterRegistry.TransactOpts, id, owner, netid, prefix, mask, frequencyPlan, endpoint)
}
// Register is a paid mutator transaction binding the contract method 0x9f26fa53.
//
// Solidity: function register(bytes32 id, address owner, uint24 netid, uint32 prefix, uint8 mask, uint8 frequencyPlan, string endpoint) returns()
func (_RouterRegistry *RouterRegistryTransactorSession) Register(id [32]byte, owner common.Address, netid *big.Int, prefix uint32, mask uint8, frequencyPlan uint8, endpoint string) (*types.Transaction, error) {
return _RouterRegistry.Contract.Register(&_RouterRegistry.TransactOpts, id, owner, netid, prefix, mask, frequencyPlan, endpoint)
}
// Remove is a paid mutator transaction binding the contract method 0x2874528e.
//
// Solidity: function remove(bytes32 id, address owner) returns()
func (_RouterRegistry *RouterRegistryTransactor) Remove(opts *bind.TransactOpts, id [32]byte, owner common.Address) (*types.Transaction, error) {
return _RouterRegistry.contract.Transact(opts, "remove", id, owner)
}
// Remove is a paid mutator transaction binding the contract method 0x2874528e.
//
// Solidity: function remove(bytes32 id, address owner) returns()
func (_RouterRegistry *RouterRegistrySession) Remove(id [32]byte, owner common.Address) (*types.Transaction, error) {
return _RouterRegistry.Contract.Remove(&_RouterRegistry.TransactOpts, id, owner)
}
// Remove is a paid mutator transaction binding the contract method 0x2874528e.
//
// Solidity: function remove(bytes32 id, address owner) returns()
func (_RouterRegistry *RouterRegistryTransactorSession) Remove(id [32]byte, owner common.Address) (*types.Transaction, error) {
return _RouterRegistry.Contract.Remove(&_RouterRegistry.TransactOpts, id, owner)
}
// RenounceRole is a paid mutator transaction binding the contract method 0x36568abe.
//
// Solidity: function renounceRole(bytes32 role, address account) returns()
func (_RouterRegistry *RouterRegistryTransactor) RenounceRole(opts *bind.TransactOpts, role [32]byte, account common.Address) (*types.Transaction, error) {
return _RouterRegistry.contract.Transact(opts, "renounceRole", role, account)
}
// RenounceRole is a paid mutator transaction binding the contract method 0x36568abe.
//
// Solidity: function renounceRole(bytes32 role, address account) returns()
func (_RouterRegistry *RouterRegistrySession) RenounceRole(role [32]byte, account common.Address) (*types.Transaction, error) {
return _RouterRegistry.Contract.RenounceRole(&_RouterRegistry.TransactOpts, role, account)
}
// RenounceRole is a paid mutator transaction binding the contract method 0x36568abe.
//
// Solidity: function renounceRole(bytes32 role, address account) returns()
func (_RouterRegistry *RouterRegistryTransactorSession) RenounceRole(role [32]byte, account common.Address) (*types.Transaction, error) {
return _RouterRegistry.Contract.RenounceRole(&_RouterRegistry.TransactOpts, role, account)
}
// RevokeRole is a paid mutator transaction binding the contract method 0xd547741f.
//
// Solidity: function revokeRole(bytes32 role, address account) returns()
func (_RouterRegistry *RouterRegistryTransactor) RevokeRole(opts *bind.TransactOpts, role [32]byte, account common.Address) (*types.Transaction, error) {
return _RouterRegistry.contract.Transact(opts, "revokeRole", role, account)
}
// RevokeRole is a paid mutator transaction binding the contract method 0xd547741f.
//
// Solidity: function revokeRole(bytes32 role, address account) returns()
func (_RouterRegistry *RouterRegistrySession) RevokeRole(role [32]byte, account common.Address) (*types.Transaction, error) {
return _RouterRegistry.Contract.RevokeRole(&_RouterRegistry.TransactOpts, role, account)
}
// RevokeRole is a paid mutator transaction binding the contract method 0xd547741f.
//
// Solidity: function revokeRole(bytes32 role, address account) returns()
func (_RouterRegistry *RouterRegistryTransactorSession) RevokeRole(role [32]byte, account common.Address) (*types.Transaction, error) {
return _RouterRegistry.Contract.RevokeRole(&_RouterRegistry.TransactOpts, role, account)
}
// Update is a paid mutator transaction binding the contract method 0x20ef6db5.
//
// Solidity: function update(bytes32 id, address owner, uint24 netid, uint32 prefix, uint8 mask, uint8 frequencyPlan, string endpoint) returns()
func (_RouterRegistry *RouterRegistryTransactor) Update(opts *bind.TransactOpts, id [32]byte, owner common.Address, netid *big.Int, prefix uint32, mask uint8, frequencyPlan uint8, endpoint string) (*types.Transaction, error) {
return _RouterRegistry.contract.Transact(opts, "update", id, owner, netid, prefix, mask, frequencyPlan, endpoint)
}
// Update is a paid mutator transaction binding the contract method 0x20ef6db5.
//
// Solidity: function update(bytes32 id, address owner, uint24 netid, uint32 prefix, uint8 mask, uint8 frequencyPlan, string endpoint) returns()
func (_RouterRegistry *RouterRegistrySession) Update(id [32]byte, owner common.Address, netid *big.Int, prefix uint32, mask uint8, frequencyPlan uint8, endpoint string) (*types.Transaction, error) {
return _RouterRegistry.Contract.Update(&_RouterRegistry.TransactOpts, id, owner, netid, prefix, mask, frequencyPlan, endpoint)
}
// Update is a paid mutator transaction binding the contract method 0x20ef6db5.
//
// Solidity: function update(bytes32 id, address owner, uint24 netid, uint32 prefix, uint8 mask, uint8 frequencyPlan, string endpoint) returns()
func (_RouterRegistry *RouterRegistryTransactorSession) Update(id [32]byte, owner common.Address, netid *big.Int, prefix uint32, mask uint8, frequencyPlan uint8, endpoint string) (*types.Transaction, error) {
return _RouterRegistry.Contract.Update(&_RouterRegistry.TransactOpts, id, owner, netid, prefix, mask, frequencyPlan, endpoint)
}
// RouterRegistryRoleAdminChangedIterator is returned from FilterRoleAdminChanged and is used to iterate over the raw logs and unpacked data for RoleAdminChanged events raised by the RouterRegistry contract.
type RouterRegistryRoleAdminChangedIterator struct {
Event *RouterRegistryRoleAdminChanged // 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 *RouterRegistryRoleAdminChangedIterator) 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(RouterRegistryRoleAdminChanged)
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(RouterRegistryRoleAdminChanged)
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 *RouterRegistryRoleAdminChangedIterator) Error() error {
return it.fail
}
// Close terminates the iteration process, releasing any pending underlying
// resources.
func (it *RouterRegistryRoleAdminChangedIterator) Close() error {
it.sub.Unsubscribe()
return nil
}
// RouterRegistryRoleAdminChanged represents a RoleAdminChanged event raised by the RouterRegistry contract.
type RouterRegistryRoleAdminChanged struct {
Role [32]byte
PreviousAdminRole [32]byte
NewAdminRole [32]byte
Raw types.Log // Blockchain specific contextual infos
}
// FilterRoleAdminChanged is a free log retrieval operation binding the contract event 0xbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff.
//
// Solidity: event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole)
func (_RouterRegistry *RouterRegistryFilterer) FilterRoleAdminChanged(opts *bind.FilterOpts, role [][32]byte, previousAdminRole [][32]byte, newAdminRole [][32]byte) (*RouterRegistryRoleAdminChangedIterator, error) {
var roleRule []interface{}
for _, roleItem := range role {
roleRule = append(roleRule, roleItem)
}
var previousAdminRoleRule []interface{}
for _, previousAdminRoleItem := range previousAdminRole {
previousAdminRoleRule = append(previousAdminRoleRule, previousAdminRoleItem)
}
var newAdminRoleRule []interface{}
for _, newAdminRoleItem := range newAdminRole {
newAdminRoleRule = append(newAdminRoleRule, newAdminRoleItem)
}
logs, sub, err := _RouterRegistry.contract.FilterLogs(opts, "RoleAdminChanged", roleRule, previousAdminRoleRule, newAdminRoleRule)
if err != nil {
return nil, err
}
return &RouterRegistryRoleAdminChangedIterator{contract: _RouterRegistry.contract, event: "RoleAdminChanged", logs: logs, sub: sub}, nil
}
// WatchRoleAdminChanged is a free log subscription operation binding the contract event 0xbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff.
//
// Solidity: event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole)
func (_RouterRegistry *RouterRegistryFilterer) WatchRoleAdminChanged(opts *bind.WatchOpts, sink chan<- *RouterRegistryRoleAdminChanged, role [][32]byte, previousAdminRole [][32]byte, newAdminRole [][32]byte) (event.Subscription, error) {
var roleRule []interface{}
for _, roleItem := range role {
roleRule = append(roleRule, roleItem)
}
var previousAdminRoleRule []interface{}
for _, previousAdminRoleItem := range previousAdminRole {
previousAdminRoleRule = append(previousAdminRoleRule, previousAdminRoleItem)
}
var newAdminRoleRule []interface{}
for _, newAdminRoleItem := range newAdminRole {
newAdminRoleRule = append(newAdminRoleRule, newAdminRoleItem)
}
logs, sub, err := _RouterRegistry.contract.WatchLogs(opts, "RoleAdminChanged", roleRule, previousAdminRoleRule, newAdminRoleRule)
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(RouterRegistryRoleAdminChanged)
if err := _RouterRegistry.contract.UnpackLog(event, "RoleAdminChanged", 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
}
// ParseRoleAdminChanged is a log parse operation binding the contract event 0xbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff.
//
// Solidity: event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole)
func (_RouterRegistry *RouterRegistryFilterer) ParseRoleAdminChanged(log types.Log) (*RouterRegistryRoleAdminChanged, error) {
event := new(RouterRegistryRoleAdminChanged)
if err := _RouterRegistry.contract.UnpackLog(event, "RoleAdminChanged", log); err != nil {
return nil, err
}
event.Raw = log
return event, nil
}
// RouterRegistryRoleGrantedIterator is returned from FilterRoleGranted and is used to iterate over the raw logs and unpacked data for RoleGranted events raised by the RouterRegistry contract.
type RouterRegistryRoleGrantedIterator struct {
Event *RouterRegistryRoleGranted // 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 *RouterRegistryRoleGrantedIterator) 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(RouterRegistryRoleGranted)
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(RouterRegistryRoleGranted)
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 *RouterRegistryRoleGrantedIterator) Error() error {
return it.fail
}
// Close terminates the iteration process, releasing any pending underlying
// resources.
func (it *RouterRegistryRoleGrantedIterator) Close() error {
it.sub.Unsubscribe()
return nil
}
// RouterRegistryRoleGranted represents a RoleGranted event raised by the RouterRegistry contract.
type RouterRegistryRoleGranted struct {
Role [32]byte
Account common.Address
Sender common.Address
Raw types.Log // Blockchain specific contextual infos
}
// FilterRoleGranted is a free log retrieval operation binding the contract event 0x2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d.
//
// Solidity: event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender)
func (_RouterRegistry *RouterRegistryFilterer) FilterRoleGranted(opts *bind.FilterOpts, role [][32]byte, account []common.Address, sender []common.Address) (*RouterRegistryRoleGrantedIterator, error) {
var roleRule []interface{}
for _, roleItem := range role {
roleRule = append(roleRule, roleItem)
}
var accountRule []interface{}
for _, accountItem := range account {
accountRule = append(accountRule, accountItem)
}
var senderRule []interface{}
for _, senderItem := range sender {
senderRule = append(senderRule, senderItem)
}
logs, sub, err := _RouterRegistry.contract.FilterLogs(opts, "RoleGranted", roleRule, accountRule, senderRule)
if err != nil {
return nil, err
}
return &RouterRegistryRoleGrantedIterator{contract: _RouterRegistry.contract, event: "RoleGranted", logs: logs, sub: sub}, nil
}
// WatchRoleGranted is a free log subscription operation binding the contract event 0x2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d.
//
// Solidity: event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender)
func (_RouterRegistry *RouterRegistryFilterer) WatchRoleGranted(opts *bind.WatchOpts, sink chan<- *RouterRegistryRoleGranted, role [][32]byte, account []common.Address, sender []common.Address) (event.Subscription, error) {
var roleRule []interface{}
for _, roleItem := range role {
roleRule = append(roleRule, roleItem)
}
var accountRule []interface{}
for _, accountItem := range account {
accountRule = append(accountRule, accountItem)
}
var senderRule []interface{}
for _, senderItem := range sender {
senderRule = append(senderRule, senderItem)
}
logs, sub, err := _RouterRegistry.contract.WatchLogs(opts, "RoleGranted", roleRule, accountRule, 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(RouterRegistryRoleGranted)
if err := _RouterRegistry.contract.UnpackLog(event, "RoleGranted", 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
}
// ParseRoleGranted is a log parse operation binding the contract event 0x2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d.
//
// Solidity: event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender)
func (_RouterRegistry *RouterRegistryFilterer) ParseRoleGranted(log types.Log) (*RouterRegistryRoleGranted, error) {
event := new(RouterRegistryRoleGranted)
if err := _RouterRegistry.contract.UnpackLog(event, "RoleGranted", log); err != nil {
return nil, err
}
event.Raw = log
return event, nil
}
// RouterRegistryRoleRevokedIterator is returned from FilterRoleRevoked and is used to iterate over the raw logs and unpacked data for RoleRevoked events raised by the RouterRegistry contract.
type RouterRegistryRoleRevokedIterator struct {
Event *RouterRegistryRoleRevoked // 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.