// Code generated - DO NOT EDIT. // This file is a generated binding and any manual changes will be lost. package registry import ( "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 ( _ = big.NewInt _ = strings.NewReader _ = ethereum.NotFound _ = abi.U256 _ = bind.Bind _ = common.Big1 _ = types.BloomLookup _ = event.NewSubscription ) // ContractABI is the input ABI used to generate the binding from. const ContractABI = "[{\"constant\":true,\"inputs\":[{\"name\":\"node\",\"type\":\"bytes32\"}],\"name\":\"resolver\",\"outputs\":[{\"name\":\"\",\"type\":\"address\"}],\"payable\":false,\"type\":\"function\"},{\"constant\":true,\"inputs\":[{\"name\":\"node\",\"type\":\"bytes32\"}],\"name\":\"owner\",\"outputs\":[{\"name\":\"\",\"type\":\"address\"}],\"payable\":false,\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"node\",\"type\":\"bytes32\"},{\"name\":\"label\",\"type\":\"bytes32\"},{\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"setSubnodeOwner\",\"outputs\":[],\"payable\":false,\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"node\",\"type\":\"bytes32\"},{\"name\":\"ttl\",\"type\":\"uint64\"}],\"name\":\"setTTL\",\"outputs\":[],\"payable\":false,\"type\":\"function\"},{\"constant\":true,\"inputs\":[{\"name\":\"node\",\"type\":\"bytes32\"}],\"name\":\"ttl\",\"outputs\":[{\"name\":\"\",\"type\":\"uint64\"}],\"payable\":false,\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"node\",\"type\":\"bytes32\"},{\"name\":\"resolver\",\"type\":\"address\"}],\"name\":\"setResolver\",\"outputs\":[],\"payable\":false,\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"node\",\"type\":\"bytes32\"},{\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"setOwner\",\"outputs\":[],\"payable\":false,\"type\":\"function\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"name\":\"node\",\"type\":\"bytes32\"},{\"indexed\":false,\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"name\":\"node\",\"type\":\"bytes32\"},{\"indexed\":true,\"name\":\"label\",\"type\":\"bytes32\"},{\"indexed\":false,\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"NewOwner\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"name\":\"node\",\"type\":\"bytes32\"},{\"indexed\":false,\"name\":\"resolver\",\"type\":\"address\"}],\"name\":\"NewResolver\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"name\":\"node\",\"type\":\"bytes32\"},{\"indexed\":false,\"name\":\"ttl\",\"type\":\"uint64\"}],\"name\":\"NewTTL\",\"type\":\"event\"}]" // Contract is an auto generated Go binding around an Ethereum contract. type Contract struct { ContractCaller // Read-only binding to the contract ContractTransactor // Write-only binding to the contract ContractFilterer // Log filterer for contract events } // ContractCaller is an auto generated read-only Go binding around an Ethereum contract. type ContractCaller struct { contract *bind.BoundContract // Generic contract wrapper for the low level calls } // ContractTransactor is an auto generated write-only Go binding around an Ethereum contract. type ContractTransactor struct { contract *bind.BoundContract // Generic contract wrapper for the low level calls } // ContractFilterer is an auto generated log filtering Go binding around an Ethereum contract events. type ContractFilterer struct { contract *bind.BoundContract // Generic contract wrapper for the low level calls } // ContractSession is an auto generated Go binding around an Ethereum contract, // with pre-set call and transact options. type ContractSession struct { Contract *Contract // 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 } // ContractCallerSession is an auto generated read-only Go binding around an Ethereum contract, // with pre-set call options. type ContractCallerSession struct { Contract *ContractCaller // Generic contract caller binding to set the session for CallOpts bind.CallOpts // Call options to use throughout this session } // ContractTransactorSession is an auto generated write-only Go binding around an Ethereum contract, // with pre-set transact options. type ContractTransactorSession struct { Contract *ContractTransactor // Generic contract transactor binding to set the session for TransactOpts bind.TransactOpts // Transaction auth options to use throughout this session } // ContractRaw is an auto generated low-level Go binding around an Ethereum contract. type ContractRaw struct { Contract *Contract // Generic contract binding to access the raw methods on } // ContractCallerRaw is an auto generated low-level read-only Go binding around an Ethereum contract. type ContractCallerRaw struct { Contract *ContractCaller // Generic read-only contract binding to access the raw methods on } // ContractTransactorRaw is an auto generated low-level write-only Go binding around an Ethereum contract. type ContractTransactorRaw struct { Contract *ContractTransactor // Generic write-only contract binding to access the raw methods on } // NewContract creates a new instance of Contract, bound to a specific deployed contract. func NewContract(address common.Address, backend bind.ContractBackend) (*Contract, error) { contract, err := bindContract(address, backend, backend, backend) if err != nil { return nil, err } return &Contract{ContractCaller: ContractCaller{contract: contract}, ContractTransactor: ContractTransactor{contract: contract}, ContractFilterer: ContractFilterer{contract: contract}}, nil } // NewContractCaller creates a new read-only instance of Contract, bound to a specific deployed contract. func NewContractCaller(address common.Address, caller bind.ContractCaller) (*ContractCaller, error) { contract, err := bindContract(address, caller, nil, nil) if err != nil { return nil, err } return &ContractCaller{contract: contract}, nil } // NewContractTransactor creates a new write-only instance of Contract, bound to a specific deployed contract. func NewContractTransactor(address common.Address, transactor bind.ContractTransactor) (*ContractTransactor, error) { contract, err := bindContract(address, nil, transactor, nil) if err != nil { return nil, err } return &ContractTransactor{contract: contract}, nil } // NewContractFilterer creates a new log filterer instance of Contract, bound to a specific deployed contract. func NewContractFilterer(address common.Address, filterer bind.ContractFilterer) (*ContractFilterer, error) { contract, err := bindContract(address, nil, nil, filterer) if err != nil { return nil, err } return &ContractFilterer{contract: contract}, nil } // bindContract binds a generic wrapper to an already deployed contract. func bindContract(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) { parsed, err := abi.JSON(strings.NewReader(ContractABI)) 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 (_Contract *ContractRaw) Call(opts *bind.CallOpts, result interface{}, method string, params ...interface{}) error { return _Contract.Contract.ContractCaller.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 (_Contract *ContractRaw) Transfer(opts *bind.TransactOpts) (*types.Transaction, error) { return _Contract.Contract.ContractTransactor.contract.Transfer(opts) } // Transact invokes the (paid) contract method with params as input values. func (_Contract *ContractRaw) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (*types.Transaction, error) { return _Contract.Contract.ContractTransactor.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 (_Contract *ContractCallerRaw) Call(opts *bind.CallOpts, result interface{}, method string, params ...interface{}) error { return _Contract.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 (_Contract *ContractTransactorRaw) Transfer(opts *bind.TransactOpts) (*types.Transaction, error) { return _Contract.Contract.contract.Transfer(opts) } // Transact invokes the (paid) contract method with params as input values. func (_Contract *ContractTransactorRaw) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (*types.Transaction, error) { return _Contract.Contract.contract.Transact(opts, method, params...) } // Owner is a free data retrieval call binding the contract method 0x02571be3. // // Solidity: function owner(bytes32 node) constant returns(address) func (_Contract *ContractCaller) Owner(opts *bind.CallOpts, node [32]byte) (common.Address, error) { var ( ret0 = new(common.Address) ) out := ret0 err := _Contract.contract.Call(opts, out, "owner", node) return *ret0, err } // Owner is a free data retrieval call binding the contract method 0x02571be3. // // Solidity: function owner(bytes32 node) constant returns(address) func (_Contract *ContractSession) Owner(node [32]byte) (common.Address, error) { return _Contract.Contract.Owner(&_Contract.CallOpts, node) } // Owner is a free data retrieval call binding the contract method 0x02571be3. // // Solidity: function owner(bytes32 node) constant returns(address) func (_Contract *ContractCallerSession) Owner(node [32]byte) (common.Address, error) { return _Contract.Contract.Owner(&_Contract.CallOpts, node) } // Resolver is a free data retrieval call binding the contract method 0x0178b8bf. // // Solidity: function resolver(bytes32 node) constant returns(address) func (_Contract *ContractCaller) Resolver(opts *bind.CallOpts, node [32]byte) (common.Address, error) { var ( ret0 = new(common.Address) ) out := ret0 err := _Contract.contract.Call(opts, out, "resolver", node) return *ret0, err } // Resolver is a free data retrieval call binding the contract method 0x0178b8bf. // // Solidity: function resolver(bytes32 node) constant returns(address) func (_Contract *ContractSession) Resolver(node [32]byte) (common.Address, error) { return _Contract.Contract.Resolver(&_Contract.CallOpts, node) } // Resolver is a free data retrieval call binding the contract method 0x0178b8bf. // // Solidity: function resolver(bytes32 node) constant returns(address) func (_Contract *ContractCallerSession) Resolver(node [32]byte) (common.Address, error) { return _Contract.Contract.Resolver(&_Contract.CallOpts, node) } // Ttl is a free data retrieval call binding the contract method 0x16a25cbd. // // Solidity: function ttl(bytes32 node) constant returns(uint64) func (_Contract *ContractCaller) Ttl(opts *bind.CallOpts, node [32]byte) (uint64, error) { var ( ret0 = new(uint64) ) out := ret0 err := _Contract.contract.Call(opts, out, "ttl", node) return *ret0, err } // Ttl is a free data retrieval call binding the contract method 0x16a25cbd. // // Solidity: function ttl(bytes32 node) constant returns(uint64) func (_Contract *ContractSession) Ttl(node [32]byte) (uint64, error) { return _Contract.Contract.Ttl(&_Contract.CallOpts, node) } // Ttl is a free data retrieval call binding the contract method 0x16a25cbd. // // Solidity: function ttl(bytes32 node) constant returns(uint64) func (_Contract *ContractCallerSession) Ttl(node [32]byte) (uint64, error) { return _Contract.Contract.Ttl(&_Contract.CallOpts, node) } // SetOwner is a paid mutator transaction binding the contract method 0x5b0fc9c3. // // Solidity: function setOwner(bytes32 node, address owner) returns() func (_Contract *ContractTransactor) SetOwner(opts *bind.TransactOpts, node [32]byte, owner common.Address) (*types.Transaction, error) { return _Contract.contract.Transact(opts, "setOwner", node, owner) } // SetOwner is a paid mutator transaction binding the contract method 0x5b0fc9c3. // // Solidity: function setOwner(bytes32 node, address owner) returns() func (_Contract *ContractSession) SetOwner(node [32]byte, owner common.Address) (*types.Transaction, error) { return _Contract.Contract.SetOwner(&_Contract.TransactOpts, node, owner) } // SetOwner is a paid mutator transaction binding the contract method 0x5b0fc9c3. // // Solidity: function setOwner(bytes32 node, address owner) returns() func (_Contract *ContractTransactorSession) SetOwner(node [32]byte, owner common.Address) (*types.Transaction, error) { return _Contract.Contract.SetOwner(&_Contract.TransactOpts, node, owner) } // SetResolver is a paid mutator transaction binding the contract method 0x1896f70a. // // Solidity: function setResolver(bytes32 node, address resolver) returns() func (_Contract *ContractTransactor) SetResolver(opts *bind.TransactOpts, node [32]byte, resolver common.Address) (*types.Transaction, error) { return _Contract.contract.Transact(opts, "setResolver", node, resolver) } // SetResolver is a paid mutator transaction binding the contract method 0x1896f70a. // // Solidity: function setResolver(bytes32 node, address resolver) returns() func (_Contract *ContractSession) SetResolver(node [32]byte, resolver common.Address) (*types.Transaction, error) { return _Contract.Contract.SetResolver(&_Contract.TransactOpts, node, resolver) } // SetResolver is a paid mutator transaction binding the contract method 0x1896f70a. // // Solidity: function setResolver(bytes32 node, address resolver) returns() func (_Contract *ContractTransactorSession) SetResolver(node [32]byte, resolver common.Address) (*types.Transaction, error) { return _Contract.Contract.SetResolver(&_Contract.TransactOpts, node, resolver) } // SetSubnodeOwner is a paid mutator transaction binding the contract method 0x06ab5923. // // Solidity: function setSubnodeOwner(bytes32 node, bytes32 label, address owner) returns() func (_Contract *ContractTransactor) SetSubnodeOwner(opts *bind.TransactOpts, node [32]byte, label [32]byte, owner common.Address) (*types.Transaction, error) { return _Contract.contract.Transact(opts, "setSubnodeOwner", node, label, owner) } // SetSubnodeOwner is a paid mutator transaction binding the contract method 0x06ab5923. // // Solidity: function setSubnodeOwner(bytes32 node, bytes32 label, address owner) returns() func (_Contract *ContractSession) SetSubnodeOwner(node [32]byte, label [32]byte, owner common.Address) (*types.Transaction, error) { return _Contract.Contract.SetSubnodeOwner(&_Contract.TransactOpts, node, label, owner) } // SetSubnodeOwner is a paid mutator transaction binding the contract method 0x06ab5923. // // Solidity: function setSubnodeOwner(bytes32 node, bytes32 label, address owner) returns() func (_Contract *ContractTransactorSession) SetSubnodeOwner(node [32]byte, label [32]byte, owner common.Address) (*types.Transaction, error) { return _Contract.Contract.SetSubnodeOwner(&_Contract.TransactOpts, node, label, owner) } // SetTTL is a paid mutator transaction binding the contract method 0x14ab9038. // // Solidity: function setTTL(bytes32 node, uint64 ttl) returns() func (_Contract *ContractTransactor) SetTTL(opts *bind.TransactOpts, node [32]byte, ttl uint64) (*types.Transaction, error) { return _Contract.contract.Transact(opts, "setTTL", node, ttl) } // SetTTL is a paid mutator transaction binding the contract method 0x14ab9038. // // Solidity: function setTTL(bytes32 node, uint64 ttl) returns() func (_Contract *ContractSession) SetTTL(node [32]byte, ttl uint64) (*types.Transaction, error) { return _Contract.Contract.SetTTL(&_Contract.TransactOpts, node, ttl) } // SetTTL is a paid mutator transaction binding the contract method 0x14ab9038. // // Solidity: function setTTL(bytes32 node, uint64 ttl) returns() func (_Contract *ContractTransactorSession) SetTTL(node [32]byte, ttl uint64) (*types.Transaction, error) { return _Contract.Contract.SetTTL(&_Contract.TransactOpts, node, ttl) } // ContractNewOwnerIterator is returned from FilterNewOwner and is used to iterate over the raw logs and unpacked data for NewOwner events raised by the Contract contract. type ContractNewOwnerIterator struct { Event *ContractNewOwner // 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 *ContractNewOwnerIterator) 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(ContractNewOwner) 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(ContractNewOwner) 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 *ContractNewOwnerIterator) Error() error { return it.fail } // Close terminates the iteration process, releasing any pending underlying // resources. func (it *ContractNewOwnerIterator) Close() error { it.sub.Unsubscribe() return nil } // ContractNewOwner represents a NewOwner event raised by the Contract contract. type ContractNewOwner struct { Node [32]byte Label [32]byte Owner common.Address Raw types.Log // Blockchain specific contextual infos } // FilterNewOwner is a free log retrieval operation binding the contract event 0xce0457fe73731f824cc272376169235128c118b49d344817417c6d108d155e82. // // Solidity: event NewOwner(bytes32 indexed node, bytes32 indexed label, address owner) func (_Contract *ContractFilterer) FilterNewOwner(opts *bind.FilterOpts, node [][32]byte, label [][32]byte) (*ContractNewOwnerIterator, error) { var nodeRule []interface{} for _, nodeItem := range node { nodeRule = append(nodeRule, nodeItem) } var labelRule []interface{} for _, labelItem := range label { labelRule = append(labelRule, labelItem) } logs, sub, err := _Contract.contract.FilterLogs(opts, "NewOwner", nodeRule, labelRule) if err != nil { return nil, err } return &ContractNewOwnerIterator{contract: _Contract.contract, event: "NewOwner", logs: logs, sub: sub}, nil } // WatchNewOwner is a free log subscription operation binding the contract event 0xce0457fe73731f824cc272376169235128c118b49d344817417c6d108d155e82. // // Solidity: event NewOwner(bytes32 indexed node, bytes32 indexed label, address owner) func (_Contract *ContractFilterer) WatchNewOwner(opts *bind.WatchOpts, sink chan<- *ContractNewOwner, node [][32]byte, label [][32]byte) (event.Subscription, error) { var nodeRule []interface{} for _, nodeItem := range node { nodeRule = append(nodeRule, nodeItem) } var labelRule []interface{} for _, labelItem := range label { labelRule = append(labelRule, labelItem) } logs, sub, err := _Contract.contract.WatchLogs(opts, "NewOwner", nodeRule, labelRule) 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(ContractNewOwner) if err := _Contract.contract.UnpackLog(event, "NewOwner", 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 } // ContractNewResolverIterator is returned from FilterNewResolver and is used to iterate over the raw logs and unpacked data for NewResolver events raised by the Contract contract. type ContractNewResolverIterator struct { Event *ContractNewResolver // 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 *ContractNewResolverIterator) 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(ContractNewResolver) 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(ContractNewResolver) 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 *ContractNewResolverIterator) Error() error { return it.fail } // Close terminates the iteration process, releasing any pending underlying // resources. func (it *ContractNewResolverIterator) Close() error { it.sub.Unsubscribe() return nil } // ContractNewResolver represents a NewResolver event raised by the Contract contract. type ContractNewResolver struct { Node [32]byte Resolver common.Address Raw types.Log // Blockchain specific contextual infos } // FilterNewResolver is a free log retrieval operation binding the contract event 0x335721b01866dc23fbee8b6b2c7b1e14d6f05c28cd35a2c934239f94095602a0. // // Solidity: event NewResolver(bytes32 indexed node, address resolver) func (_Contract *ContractFilterer) FilterNewResolver(opts *bind.FilterOpts, node [][32]byte) (*ContractNewResolverIterator, error) { var nodeRule []interface{} for _, nodeItem := range node { nodeRule = append(nodeRule, nodeItem) } logs, sub, err := _Contract.contract.FilterLogs(opts, "NewResolver", nodeRule) if err != nil { return nil, err } return &ContractNewResolverIterator{contract: _Contract.contract, event: "NewResolver", logs: logs, sub: sub}, nil } // WatchNewResolver is a free log subscription operation binding the contract event 0x335721b01866dc23fbee8b6b2c7b1e14d6f05c28cd35a2c934239f94095602a0. // // Solidity: event NewResolver(bytes32 indexed node, address resolver) func (_Contract *ContractFilterer) WatchNewResolver(opts *bind.WatchOpts, sink chan<- *ContractNewResolver, node [][32]byte) (event.Subscription, error) { var nodeRule []interface{} for _, nodeItem := range node { nodeRule = append(nodeRule, nodeItem) } logs, sub, err := _Contract.contract.WatchLogs(opts, "NewResolver", nodeRule) 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(ContractNewResolver) if err := _Contract.contract.UnpackLog(event, "NewResolver", 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 } // ContractNewTTLIterator is returned from FilterNewTTL and is used to iterate over the raw logs and unpacked data for NewTTL events raised by the Contract contract. type ContractNewTTLIterator struct { Event *ContractNewTTL // 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 *ContractNewTTLIterator) 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(ContractNewTTL) 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(ContractNewTTL) 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 *ContractNewTTLIterator) Error() error { return it.fail } // Close terminates the iteration process, releasing any pending underlying // resources. func (it *ContractNewTTLIterator) Close() error { it.sub.Unsubscribe() return nil } // ContractNewTTL represents a NewTTL event raised by the Contract contract. type ContractNewTTL struct { Node [32]byte Ttl uint64 Raw types.Log // Blockchain specific contextual infos } // FilterNewTTL is a free log retrieval operation binding the contract event 0x1d4f9bbfc9cab89d66e1a1562f2233ccbf1308cb4f63de2ead5787adddb8fa68. // // Solidity: event NewTTL(bytes32 indexed node, uint64 ttl) func (_Contract *ContractFilterer) FilterNewTTL(opts *bind.FilterOpts, node [][32]byte) (*ContractNewTTLIterator, error) { var nodeRule []interface{} for _, nodeItem := range node { nodeRule = append(nodeRule, nodeItem) } logs, sub, err := _Contract.contract.FilterLogs(opts, "NewTTL", nodeRule) if err != nil { return nil, err } return &ContractNewTTLIterator{contract: _Contract.contract, event: "NewTTL", logs: logs, sub: sub}, nil } // WatchNewTTL is a free log subscription operation binding the contract event 0x1d4f9bbfc9cab89d66e1a1562f2233ccbf1308cb4f63de2ead5787adddb8fa68. // // Solidity: event NewTTL(bytes32 indexed node, uint64 ttl) func (_Contract *ContractFilterer) WatchNewTTL(opts *bind.WatchOpts, sink chan<- *ContractNewTTL, node [][32]byte) (event.Subscription, error) { var nodeRule []interface{} for _, nodeItem := range node { nodeRule = append(nodeRule, nodeItem) } logs, sub, err := _Contract.contract.WatchLogs(opts, "NewTTL", nodeRule) 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(ContractNewTTL) if err := _Contract.contract.UnpackLog(event, "NewTTL", 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 } // ContractTransferIterator is returned from FilterTransfer and is used to iterate over the raw logs and unpacked data for Transfer events raised by the Contract contract. type ContractTransferIterator struct { Event *ContractTransfer // 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 *ContractTransferIterator) 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(ContractTransfer) 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(ContractTransfer) 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 *ContractTransferIterator) Error() error { return it.fail } // Close terminates the iteration process, releasing any pending underlying // resources. func (it *ContractTransferIterator) Close() error { it.sub.Unsubscribe() return nil } // ContractTransfer represents a Transfer event raised by the Contract contract. type ContractTransfer struct { Node [32]byte Owner common.Address Raw types.Log // Blockchain specific contextual infos } // FilterTransfer is a free log retrieval operation binding the contract event 0xd4735d920b0f87494915f556dd9b54c8f309026070caea5c737245152564d266. // // Solidity: event Transfer(bytes32 indexed node, address owner) func (_Contract *ContractFilterer) FilterTransfer(opts *bind.FilterOpts, node [][32]byte) (*ContractTransferIterator, error) { var nodeRule []interface{} for _, nodeItem := range node { nodeRule = append(nodeRule, nodeItem) } logs, sub, err := _Contract.contract.FilterLogs(opts, "Transfer", nodeRule) if err != nil { return nil, err } return &ContractTransferIterator{contract: _Contract.contract, event: "Transfer", logs: logs, sub: sub}, nil } // WatchTransfer is a free log subscription operation binding the contract event 0xd4735d920b0f87494915f556dd9b54c8f309026070caea5c737245152564d266. // // Solidity: event Transfer(bytes32 indexed node, address owner) func (_Contract *ContractFilterer) WatchTransfer(opts *bind.WatchOpts, sink chan<- *ContractTransfer, node [][32]byte) (event.Subscription, error) { var nodeRule []interface{} for _, nodeItem := range node { nodeRule = append(nodeRule, nodeItem) } logs, sub, err := _Contract.contract.WatchLogs(opts, "Transfer", nodeRule) 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(ContractTransfer) if err := _Contract.contract.UnpackLog(event, "Transfer", 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 }