// Code generated - DO NOT EDIT. // This file is a generated binding and any manual changes will be lost. package contracts 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 ) // SmartcontractsABI is the input ABI used to generate the binding from. const SmartcontractsABI = "[{\"inputs\":[{\"internalType\":\"contractWhitelist\",\"name\":\"_whitelist\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"reqID\",\"type\":\"uint256\"},{\"internalType\":\"string\",\"name\":\"data\",\"type\":\"string\"},{\"internalType\":\"address\",\"name\":\"callbackAddress\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"callbackMethodID\",\"type\":\"bytes4\"}],\"name\":\"collectData\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}]" // Smartcontracts is an auto generated Go binding around an Ethereum contract. type Smartcontracts struct { SmartcontractsCaller // Read-only binding to the contract SmartcontractsTransactor // Write-only binding to the contract SmartcontractsFilterer // Log filterer for contract events } // SmartcontractsCaller is an auto generated read-only Go binding around an Ethereum contract. type SmartcontractsCaller struct { contract *bind.BoundContract // Generic contract wrapper for the low level calls } // SmartcontractsTransactor is an auto generated write-only Go binding around an Ethereum contract. type SmartcontractsTransactor struct { contract *bind.BoundContract // Generic contract wrapper for the low level calls } // SmartcontractsFilterer is an auto generated log filtering Go binding around an Ethereum contract events. type SmartcontractsFilterer struct { contract *bind.BoundContract // Generic contract wrapper for the low level calls } // SmartcontractsSession is an auto generated Go binding around an Ethereum contract, // with pre-set call and transact options. type SmartcontractsSession struct { Contract *Smartcontracts // 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 } // SmartcontractsCallerSession is an auto generated read-only Go binding around an Ethereum contract, // with pre-set call options. type SmartcontractsCallerSession struct { Contract *SmartcontractsCaller // Generic contract caller binding to set the session for CallOpts bind.CallOpts // Call options to use throughout this session } // SmartcontractsTransactorSession is an auto generated write-only Go binding around an Ethereum contract, // with pre-set transact options. type SmartcontractsTransactorSession struct { Contract *SmartcontractsTransactor // Generic contract transactor binding to set the session for TransactOpts bind.TransactOpts // Transaction auth options to use throughout this session } // SmartcontractsRaw is an auto generated low-level Go binding around an Ethereum contract. type SmartcontractsRaw struct { Contract *Smartcontracts // Generic contract binding to access the raw methods on } // SmartcontractsCallerRaw is an auto generated low-level read-only Go binding around an Ethereum contract. type SmartcontractsCallerRaw struct { Contract *SmartcontractsCaller // Generic read-only contract binding to access the raw methods on } // SmartcontractsTransactorRaw is an auto generated low-level write-only Go binding around an Ethereum contract. type SmartcontractsTransactorRaw struct { Contract *SmartcontractsTransactor // Generic write-only contract binding to access the raw methods on } // NewSmartcontracts creates a new instance of Smartcontracts, bound to a specific deployed contract. func NewSmartcontracts(address common.Address, backend bind.ContractBackend) (*Smartcontracts, error) { contract, err := bindSmartcontracts(address, backend, backend, backend) if err != nil { return nil, err } return &Smartcontracts{SmartcontractsCaller: SmartcontractsCaller{contract: contract}, SmartcontractsTransactor: SmartcontractsTransactor{contract: contract}, SmartcontractsFilterer: SmartcontractsFilterer{contract: contract}}, nil } // NewSmartcontractsCaller creates a new read-only instance of Smartcontracts, bound to a specific deployed contract. func NewSmartcontractsCaller(address common.Address, caller bind.ContractCaller) (*SmartcontractsCaller, error) { contract, err := bindSmartcontracts(address, caller, nil, nil) if err != nil { return nil, err } return &SmartcontractsCaller{contract: contract}, nil } // NewSmartcontractsTransactor creates a new write-only instance of Smartcontracts, bound to a specific deployed contract. func NewSmartcontractsTransactor(address common.Address, transactor bind.ContractTransactor) (*SmartcontractsTransactor, error) { contract, err := bindSmartcontracts(address, nil, transactor, nil) if err != nil { return nil, err } return &SmartcontractsTransactor{contract: contract}, nil } // NewSmartcontractsFilterer creates a new log filterer instance of Smartcontracts, bound to a specific deployed contract. func NewSmartcontractsFilterer(address common.Address, filterer bind.ContractFilterer) (*SmartcontractsFilterer, error) { contract, err := bindSmartcontracts(address, nil, nil, filterer) if err != nil { return nil, err } return &SmartcontractsFilterer{contract: contract}, nil } // bindSmartcontracts binds a generic wrapper to an already deployed contract. func bindSmartcontracts(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) { parsed, err := abi.JSON(strings.NewReader(SmartcontractsABI)) 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 (_Smartcontracts *SmartcontractsRaw) Call(opts *bind.CallOpts, result interface{}, method string, params ...interface{}) error { return _Smartcontracts.Contract.SmartcontractsCaller.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 (_Smartcontracts *SmartcontractsRaw) Transfer(opts *bind.TransactOpts) (*types.Transaction, error) { return _Smartcontracts.Contract.SmartcontractsTransactor.contract.Transfer(opts) } // Transact invokes the (paid) contract method with params as input values. func (_Smartcontracts *SmartcontractsRaw) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (*types.Transaction, error) { return _Smartcontracts.Contract.SmartcontractsTransactor.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 (_Smartcontracts *SmartcontractsCallerRaw) Call(opts *bind.CallOpts, result interface{}, method string, params ...interface{}) error { return _Smartcontracts.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 (_Smartcontracts *SmartcontractsTransactorRaw) Transfer(opts *bind.TransactOpts) (*types.Transaction, error) { return _Smartcontracts.Contract.contract.Transfer(opts) } // Transact invokes the (paid) contract method with params as input values. func (_Smartcontracts *SmartcontractsTransactorRaw) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (*types.Transaction, error) { return _Smartcontracts.Contract.contract.Transact(opts, method, params...) } // CollectData is a paid mutator transaction binding the contract method 0x05187092. // // Solidity: function collectData(uint256 reqID, string data, address callbackAddress, bytes4 callbackMethodID) returns() func (_Smartcontracts *SmartcontractsTransactor) CollectData(opts *bind.TransactOpts, reqID *big.Int, data string, callbackAddress common.Address, callbackMethodID [4]byte) (*types.Transaction, error) { return _Smartcontracts.contract.Transact(opts, "collectData", reqID, data, callbackAddress, callbackMethodID) } // CollectData is a paid mutator transaction binding the contract method 0x05187092. // // Solidity: function collectData(uint256 reqID, string data, address callbackAddress, bytes4 callbackMethodID) returns() func (_Smartcontracts *SmartcontractsSession) CollectData(reqID *big.Int, data string, callbackAddress common.Address, callbackMethodID [4]byte) (*types.Transaction, error) { return _Smartcontracts.Contract.CollectData(&_Smartcontracts.TransactOpts, reqID, data, callbackAddress, callbackMethodID) } // CollectData is a paid mutator transaction binding the contract method 0x05187092. // // Solidity: function collectData(uint256 reqID, string data, address callbackAddress, bytes4 callbackMethodID) returns() func (_Smartcontracts *SmartcontractsTransactorSession) CollectData(reqID *big.Int, data string, callbackAddress common.Address, callbackMethodID [4]byte) (*types.Transaction, error) { return _Smartcontracts.Contract.CollectData(&_Smartcontracts.TransactOpts, reqID, data, callbackAddress, callbackMethodID) }