// Code generated - DO NOT EDIT. // This file is a generated binding and any manual changes will be lost. package deposit 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 _ = bind.Bind _ = common.Big1 _ = types.BloomLookup _ = event.NewSubscription ) // DepositContractABI is the input ABI used to generate the binding from. const DepositContractABI = "[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"pubkey\",\"type\":\"bytes\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"withdrawal_credentials\",\"type\":\"bytes\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"amount\",\"type\":\"bytes\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"index\",\"type\":\"bytes\"}],\"name\":\"DepositEvent\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"pubkey\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"withdrawal_credentials\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"deposit_data_root\",\"type\":\"bytes32\"}],\"name\":\"deposit\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"get_deposit_count\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"get_deposit_root\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"pure\",\"type\":\"function\"}]" // DepositContract is an auto generated Go binding around an Ethereum contract. type DepositContract struct { DepositContractCaller // Read-only binding to the contract DepositContractTransactor // Write-only binding to the contract DepositContractFilterer // Log filterer for contract events } // DepositContractCaller is an auto generated read-only Go binding around an Ethereum contract. type DepositContractCaller struct { contract *bind.BoundContract // Generic contract wrapper for the low level calls } // DepositContractTransactor is an auto generated write-only Go binding around an Ethereum contract. type DepositContractTransactor struct { contract *bind.BoundContract // Generic contract wrapper for the low level calls } // DepositContractFilterer is an auto generated log filtering Go binding around an Ethereum contract events. type DepositContractFilterer struct { contract *bind.BoundContract // Generic contract wrapper for the low level calls } // DepositContractSession is an auto generated Go binding around an Ethereum contract, // with pre-set call and transact options. type DepositContractSession struct { Contract *DepositContract // 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 } // DepositContractCallerSession is an auto generated read-only Go binding around an Ethereum contract, // with pre-set call options. type DepositContractCallerSession struct { Contract *DepositContractCaller // Generic contract caller binding to set the session for CallOpts bind.CallOpts // Call options to use throughout this session } // DepositContractTransactorSession is an auto generated write-only Go binding around an Ethereum contract, // with pre-set transact options. type DepositContractTransactorSession struct { Contract *DepositContractTransactor // Generic contract transactor binding to set the session for TransactOpts bind.TransactOpts // Transaction auth options to use throughout this session } // DepositContractRaw is an auto generated low-level Go binding around an Ethereum contract. type DepositContractRaw struct { Contract *DepositContract // Generic contract binding to access the raw methods on } // DepositContractCallerRaw is an auto generated low-level read-only Go binding around an Ethereum contract. type DepositContractCallerRaw struct { Contract *DepositContractCaller // Generic read-only contract binding to access the raw methods on } // DepositContractTransactorRaw is an auto generated low-level write-only Go binding around an Ethereum contract. type DepositContractTransactorRaw struct { Contract *DepositContractTransactor // Generic write-only contract binding to access the raw methods on } // NewDepositContract creates a new instance of DepositContract, bound to a specific deployed contract. func NewDepositContract(address common.Address, backend bind.ContractBackend) (*DepositContract, error) { contract, err := bindDepositContract(address, backend, backend, backend) if err != nil { return nil, err } return &DepositContract{DepositContractCaller: DepositContractCaller{contract: contract}, DepositContractTransactor: DepositContractTransactor{contract: contract}, DepositContractFilterer: DepositContractFilterer{contract: contract}}, nil } // NewDepositContractCaller creates a new read-only instance of DepositContract, bound to a specific deployed contract. func NewDepositContractCaller(address common.Address, caller bind.ContractCaller) (*DepositContractCaller, error) { contract, err := bindDepositContract(address, caller, nil, nil) if err != nil { return nil, err } return &DepositContractCaller{contract: contract}, nil } // NewDepositContractTransactor creates a new write-only instance of DepositContract, bound to a specific deployed contract. func NewDepositContractTransactor(address common.Address, transactor bind.ContractTransactor) (*DepositContractTransactor, error) { contract, err := bindDepositContract(address, nil, transactor, nil) if err != nil { return nil, err } return &DepositContractTransactor{contract: contract}, nil } // NewDepositContractFilterer creates a new log filterer instance of DepositContract, bound to a specific deployed contract. func NewDepositContractFilterer(address common.Address, filterer bind.ContractFilterer) (*DepositContractFilterer, error) { contract, err := bindDepositContract(address, nil, nil, filterer) if err != nil { return nil, err } return &DepositContractFilterer{contract: contract}, nil } // bindDepositContract binds a generic wrapper to an already deployed contract. func bindDepositContract(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) { parsed, err := abi.JSON(strings.NewReader(DepositContractABI)) 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 (_DepositContract *DepositContractRaw) Call(opts *bind.CallOpts, result *[]interface{}, method string, params ...interface{}) error { return _DepositContract.Contract.DepositContractCaller.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 (_DepositContract *DepositContractRaw) Transfer(opts *bind.TransactOpts) (*types.Transaction, error) { return _DepositContract.Contract.DepositContractTransactor.contract.Transfer(opts) } // Transact invokes the (paid) contract method with params as input values. func (_DepositContract *DepositContractRaw) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (*types.Transaction, error) { return _DepositContract.Contract.DepositContractTransactor.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 (_DepositContract *DepositContractCallerRaw) Call(opts *bind.CallOpts, result *[]interface{}, method string, params ...interface{}) error { return _DepositContract.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 (_DepositContract *DepositContractTransactorRaw) Transfer(opts *bind.TransactOpts) (*types.Transaction, error) { return _DepositContract.Contract.contract.Transfer(opts) } // Transact invokes the (paid) contract method with params as input values. func (_DepositContract *DepositContractTransactorRaw) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (*types.Transaction, error) { return _DepositContract.Contract.contract.Transact(opts, method, params...) } // GetDepositCount is a free data retrieval call binding the contract method 0x621fd130. // // Solidity: function get_deposit_count() view returns(bytes) func (_DepositContract *DepositContractCaller) GetDepositCount(opts *bind.CallOpts) ([]byte, error) { var out []interface{} err := _DepositContract.contract.Call(opts, &out, "get_deposit_count") if err != nil { return *new([]byte), err } out0 := *abi.ConvertType(out[0], new([]byte)).(*[]byte) return out0, err } // GetDepositCount is a free data retrieval call binding the contract method 0x621fd130. // // Solidity: function get_deposit_count() view returns(bytes) func (_DepositContract *DepositContractSession) GetDepositCount() ([]byte, error) { return _DepositContract.Contract.GetDepositCount(&_DepositContract.CallOpts) } // GetDepositCount is a free data retrieval call binding the contract method 0x621fd130. // // Solidity: function get_deposit_count() view returns(bytes) func (_DepositContract *DepositContractCallerSession) GetDepositCount() ([]byte, error) { return _DepositContract.Contract.GetDepositCount(&_DepositContract.CallOpts) } // GetDepositRoot is a free data retrieval call binding the contract method 0xc5f2892f. // // Solidity: function get_deposit_root() view returns(bytes32) func (_DepositContract *DepositContractCaller) GetDepositRoot(opts *bind.CallOpts) ([32]byte, error) { var out []interface{} err := _DepositContract.contract.Call(opts, &out, "get_deposit_root") if err != nil { return *new([32]byte), err } out0 := *abi.ConvertType(out[0], new([32]byte)).(*[32]byte) return out0, err } // GetDepositRoot is a free data retrieval call binding the contract method 0xc5f2892f. // // Solidity: function get_deposit_root() view returns(bytes32) func (_DepositContract *DepositContractSession) GetDepositRoot() ([32]byte, error) { return _DepositContract.Contract.GetDepositRoot(&_DepositContract.CallOpts) } // GetDepositRoot is a free data retrieval call binding the contract method 0xc5f2892f. // // Solidity: function get_deposit_root() view returns(bytes32) func (_DepositContract *DepositContractCallerSession) GetDepositRoot() ([32]byte, error) { return _DepositContract.Contract.GetDepositRoot(&_DepositContract.CallOpts) } // SupportsInterface is a free data retrieval call binding the contract method 0x01ffc9a7. // // Solidity: function supportsInterface(bytes4 interfaceId) pure returns(bool) func (_DepositContract *DepositContractCaller) SupportsInterface(opts *bind.CallOpts, interfaceId [4]byte) (bool, error) { var out []interface{} err := _DepositContract.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) pure returns(bool) func (_DepositContract *DepositContractSession) SupportsInterface(interfaceId [4]byte) (bool, error) { return _DepositContract.Contract.SupportsInterface(&_DepositContract.CallOpts, interfaceId) } // SupportsInterface is a free data retrieval call binding the contract method 0x01ffc9a7. // // Solidity: function supportsInterface(bytes4 interfaceId) pure returns(bool) func (_DepositContract *DepositContractCallerSession) SupportsInterface(interfaceId [4]byte) (bool, error) { return _DepositContract.Contract.SupportsInterface(&_DepositContract.CallOpts, interfaceId) } // Deposit is a paid mutator transaction binding the contract method 0x22895118. // // Solidity: function deposit(bytes pubkey, bytes withdrawal_credentials, bytes signature, bytes32 deposit_data_root) payable returns() func (_DepositContract *DepositContractTransactor) Deposit(opts *bind.TransactOpts, pubkey []byte, withdrawal_credentials []byte, signature []byte, deposit_data_root [32]byte) (*types.Transaction, error) { return _DepositContract.contract.Transact(opts, "deposit", pubkey, withdrawal_credentials, signature, deposit_data_root) } // Deposit is a paid mutator transaction binding the contract method 0x22895118. // // Solidity: function deposit(bytes pubkey, bytes withdrawal_credentials, bytes signature, bytes32 deposit_data_root) payable returns() func (_DepositContract *DepositContractSession) Deposit(pubkey []byte, withdrawal_credentials []byte, signature []byte, deposit_data_root [32]byte) (*types.Transaction, error) { return _DepositContract.Contract.Deposit(&_DepositContract.TransactOpts, pubkey, withdrawal_credentials, signature, deposit_data_root) } // Deposit is a paid mutator transaction binding the contract method 0x22895118. // // Solidity: function deposit(bytes pubkey, bytes withdrawal_credentials, bytes signature, bytes32 deposit_data_root) payable returns() func (_DepositContract *DepositContractTransactorSession) Deposit(pubkey []byte, withdrawal_credentials []byte, signature []byte, deposit_data_root [32]byte) (*types.Transaction, error) { return _DepositContract.Contract.Deposit(&_DepositContract.TransactOpts, pubkey, withdrawal_credentials, signature, deposit_data_root) } // DepositContractDepositEventIterator is returned from FilterDepositEvent and is used to iterate over the raw logs and unpacked data for DepositEvent events raised by the DepositContract contract. type DepositContractDepositEventIterator struct { Event *DepositContractDepositEvent // 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 *DepositContractDepositEventIterator) 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(DepositContractDepositEvent) 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(DepositContractDepositEvent) 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 *DepositContractDepositEventIterator) Error() error { return it.fail } // Close terminates the iteration process, releasing any pending underlying // resources. func (it *DepositContractDepositEventIterator) Close() error { it.sub.Unsubscribe() return nil } // DepositContractDepositEvent represents a DepositEvent event raised by the DepositContract contract. type DepositContractDepositEvent struct { Pubkey []byte WithdrawalCredentials []byte Amount []byte Signature []byte Index []byte Raw types.Log // Blockchain specific contextual infos } // FilterDepositEvent is a free log retrieval operation binding the contract event 0x649bbc62d0e31342afea4e5cd82d4049e7e1ee912fc0889aa790803be39038c5. // // Solidity: event DepositEvent(bytes pubkey, bytes withdrawal_credentials, bytes amount, bytes signature, bytes index) func (_DepositContract *DepositContractFilterer) FilterDepositEvent(opts *bind.FilterOpts) (*DepositContractDepositEventIterator, error) { logs, sub, err := _DepositContract.contract.FilterLogs(opts, "DepositEvent") if err != nil { return nil, err } return &DepositContractDepositEventIterator{contract: _DepositContract.contract, event: "DepositEvent", logs: logs, sub: sub}, nil } // WatchDepositEvent is a free log subscription operation binding the contract event 0x649bbc62d0e31342afea4e5cd82d4049e7e1ee912fc0889aa790803be39038c5. // // Solidity: event DepositEvent(bytes pubkey, bytes withdrawal_credentials, bytes amount, bytes signature, bytes index) func (_DepositContract *DepositContractFilterer) WatchDepositEvent(opts *bind.WatchOpts, sink chan<- *DepositContractDepositEvent) (event.Subscription, error) { logs, sub, err := _DepositContract.contract.WatchLogs(opts, "DepositEvent") 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(DepositContractDepositEvent) if err := _DepositContract.contract.UnpackLog(event, "DepositEvent", 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 } // ParseDepositEvent is a log parse operation binding the contract event 0x649bbc62d0e31342afea4e5cd82d4049e7e1ee912fc0889aa790803be39038c5. // // Solidity: event DepositEvent(bytes pubkey, bytes withdrawal_credentials, bytes amount, bytes signature, bytes index) func (_DepositContract *DepositContractFilterer) ParseDepositEvent(log types.Log) (*DepositContractDepositEvent, error) { event := new(DepositContractDepositEvent) if err := _DepositContract.contract.UnpackLog(event, "DepositEvent", log); err != nil { return nil, err } event.Raw = log return event, nil }