Documentation ¶
Index ¶
- Constants
- Variables
- type TestToken
- type TestTokenApproval
- type TestTokenApprovalIterator
- type TestTokenCaller
- func (_TestToken *TestTokenCaller) Allowance(opts *bind.CallOpts, owner common.Address, spender common.Address) (*big.Int, error)
- func (_TestToken *TestTokenCaller) BalanceOf(opts *bind.CallOpts, account common.Address) (*big.Int, error)
- func (_TestToken *TestTokenCaller) Decimals(opts *bind.CallOpts) (uint8, error)
- func (_TestToken *TestTokenCaller) Name(opts *bind.CallOpts) (string, error)
- func (_TestToken *TestTokenCaller) Symbol(opts *bind.CallOpts) (string, error)
- func (_TestToken *TestTokenCaller) TotalSupply(opts *bind.CallOpts) (*big.Int, error)
- type TestTokenCallerRaw
- type TestTokenCallerSession
- func (_TestToken *TestTokenCallerSession) Allowance(owner common.Address, spender common.Address) (*big.Int, error)
- func (_TestToken *TestTokenCallerSession) BalanceOf(account common.Address) (*big.Int, error)
- func (_TestToken *TestTokenCallerSession) Decimals() (uint8, error)
- func (_TestToken *TestTokenCallerSession) Name() (string, error)
- func (_TestToken *TestTokenCallerSession) Symbol() (string, error)
- func (_TestToken *TestTokenCallerSession) TotalSupply() (*big.Int, error)
- type TestTokenFilterer
- func (_TestToken *TestTokenFilterer) FilterApproval(opts *bind.FilterOpts, owner []common.Address, spender []common.Address) (*TestTokenApprovalIterator, error)
- func (_TestToken *TestTokenFilterer) FilterTransfer(opts *bind.FilterOpts, from []common.Address, to []common.Address) (*TestTokenTransferIterator, error)
- func (_TestToken *TestTokenFilterer) ParseApproval(log types.Log) (*TestTokenApproval, error)
- func (_TestToken *TestTokenFilterer) ParseTransfer(log types.Log) (*TestTokenTransfer, error)
- func (_TestToken *TestTokenFilterer) WatchApproval(opts *bind.WatchOpts, sink chan<- *TestTokenApproval, owner []common.Address, ...) (event.Subscription, error)
- func (_TestToken *TestTokenFilterer) WatchTransfer(opts *bind.WatchOpts, sink chan<- *TestTokenTransfer, from []common.Address, ...) (event.Subscription, error)
- type TestTokenRaw
- func (_TestToken *TestTokenRaw) Call(opts *bind.CallOpts, result *[]interface{}, method string, ...) error
- func (_TestToken *TestTokenRaw) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (*types.Transaction, error)
- func (_TestToken *TestTokenRaw) Transfer(opts *bind.TransactOpts) (*types.Transaction, error)
- type TestTokenSession
- func (_TestToken *TestTokenSession) Allowance(owner common.Address, spender common.Address) (*big.Int, error)
- func (_TestToken *TestTokenSession) Approve(spender common.Address, amount *big.Int) (*types.Transaction, error)
- func (_TestToken *TestTokenSession) BalanceOf(account common.Address) (*big.Int, error)
- func (_TestToken *TestTokenSession) Decimals() (uint8, error)
- func (_TestToken *TestTokenSession) DecreaseAllowance(spender common.Address, subtractedValue *big.Int) (*types.Transaction, error)
- func (_TestToken *TestTokenSession) IncreaseAllowance(spender common.Address, addedValue *big.Int) (*types.Transaction, error)
- func (_TestToken *TestTokenSession) Name() (string, error)
- func (_TestToken *TestTokenSession) Symbol() (string, error)
- func (_TestToken *TestTokenSession) TotalSupply() (*big.Int, error)
- func (_TestToken *TestTokenSession) Transfer(recipient common.Address, amount *big.Int) (*types.Transaction, error)
- func (_TestToken *TestTokenSession) TransferFrom(sender common.Address, recipient common.Address, amount *big.Int) (*types.Transaction, error)
- type TestTokenTransactor
- func (_TestToken *TestTokenTransactor) Approve(opts *bind.TransactOpts, spender common.Address, amount *big.Int) (*types.Transaction, error)
- func (_TestToken *TestTokenTransactor) DecreaseAllowance(opts *bind.TransactOpts, spender common.Address, subtractedValue *big.Int) (*types.Transaction, error)
- func (_TestToken *TestTokenTransactor) IncreaseAllowance(opts *bind.TransactOpts, spender common.Address, addedValue *big.Int) (*types.Transaction, error)
- func (_TestToken *TestTokenTransactor) Transfer(opts *bind.TransactOpts, recipient common.Address, amount *big.Int) (*types.Transaction, error)
- func (_TestToken *TestTokenTransactor) TransferFrom(opts *bind.TransactOpts, sender common.Address, recipient common.Address, ...) (*types.Transaction, error)
- type TestTokenTransactorRaw
- type TestTokenTransactorSession
- func (_TestToken *TestTokenTransactorSession) Approve(spender common.Address, amount *big.Int) (*types.Transaction, error)
- func (_TestToken *TestTokenTransactorSession) DecreaseAllowance(spender common.Address, subtractedValue *big.Int) (*types.Transaction, error)
- func (_TestToken *TestTokenTransactorSession) IncreaseAllowance(spender common.Address, addedValue *big.Int) (*types.Transaction, error)
- func (_TestToken *TestTokenTransactorSession) Transfer(recipient common.Address, amount *big.Int) (*types.Transaction, error)
- func (_TestToken *TestTokenTransactorSession) TransferFrom(sender common.Address, recipient common.Address, amount *big.Int) (*types.Transaction, error)
- type TestTokenTransfer
- type TestTokenTransferIterator
Constants ¶
const TestTokenABI = "" /* 3724-byte string literal not displayed */
TestTokenABI is the input ABI used to generate the binding from.
Variables ¶
var TestTokenBin = "" /* 13936-byte string literal not displayed */
TestTokenBin is the compiled bytecode used for deploying new contracts.
Functions ¶
This section is empty.
Types ¶
type TestToken ¶
type TestToken struct { TestTokenCaller // Read-only binding to the contract TestTokenTransactor // Write-only binding to the contract TestTokenFilterer // Log filterer for contract events }
TestToken is an auto generated Go binding around an Ethereum contract.
func DeployTestToken ¶
func DeployTestToken(auth *bind.TransactOpts, backend bind.ContractBackend, _supply *big.Int) (common.Address, *types.Transaction, *TestToken, error)
DeployTestToken deploys a new Ethereum contract, binding an instance of TestToken to it.
func NewTestToken ¶
NewTestToken creates a new instance of TestToken, bound to a specific deployed contract.
type TestTokenApproval ¶
type TestTokenApproval struct { Owner common.Address Spender common.Address Value *big.Int Raw types.Log // Blockchain specific contextual infos }
TestTokenApproval represents a Approval event raised by the TestToken contract.
type TestTokenApprovalIterator ¶
type TestTokenApprovalIterator struct { Event *TestTokenApproval // Event containing the contract specifics and raw log // contains filtered or unexported fields }
TestTokenApprovalIterator is returned from FilterApproval and is used to iterate over the raw logs and unpacked data for Approval events raised by the TestToken contract.
func (*TestTokenApprovalIterator) Close ¶
func (it *TestTokenApprovalIterator) Close() error
Close terminates the iteration process, releasing any pending underlying resources.
func (*TestTokenApprovalIterator) Error ¶
func (it *TestTokenApprovalIterator) Error() error
Error returns any retrieval or parsing error occurred during filtering.
func (*TestTokenApprovalIterator) Next ¶
func (it *TestTokenApprovalIterator) Next() bool
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.
type TestTokenCaller ¶
type TestTokenCaller struct {
// contains filtered or unexported fields
}
TestTokenCaller is an auto generated read-only Go binding around an Ethereum contract.
func NewTestTokenCaller ¶
func NewTestTokenCaller(address common.Address, caller bind.ContractCaller) (*TestTokenCaller, error)
NewTestTokenCaller creates a new read-only instance of TestToken, bound to a specific deployed contract.
func (*TestTokenCaller) Allowance ¶
func (_TestToken *TestTokenCaller) Allowance(opts *bind.CallOpts, owner common.Address, spender common.Address) (*big.Int, error)
Allowance is a free data retrieval call binding the contract method 0xdd62ed3e.
Solidity: function allowance(address owner, address spender) view returns(uint256)
func (*TestTokenCaller) BalanceOf ¶
func (_TestToken *TestTokenCaller) BalanceOf(opts *bind.CallOpts, account common.Address) (*big.Int, error)
BalanceOf is a free data retrieval call binding the contract method 0x70a08231.
Solidity: function balanceOf(address account) view returns(uint256)
func (*TestTokenCaller) Decimals ¶
func (_TestToken *TestTokenCaller) Decimals(opts *bind.CallOpts) (uint8, error)
Decimals is a free data retrieval call binding the contract method 0x313ce567.
Solidity: function decimals() view returns(uint8)
func (*TestTokenCaller) Name ¶
func (_TestToken *TestTokenCaller) Name(opts *bind.CallOpts) (string, error)
Name is a free data retrieval call binding the contract method 0x06fdde03.
Solidity: function name() view returns(string)
func (*TestTokenCaller) Symbol ¶
func (_TestToken *TestTokenCaller) Symbol(opts *bind.CallOpts) (string, error)
Symbol is a free data retrieval call binding the contract method 0x95d89b41.
Solidity: function symbol() view returns(string)
func (*TestTokenCaller) TotalSupply ¶
TotalSupply is a free data retrieval call binding the contract method 0x18160ddd.
Solidity: function totalSupply() view returns(uint256)
type TestTokenCallerRaw ¶
type TestTokenCallerRaw struct {
Contract *TestTokenCaller // Generic read-only contract binding to access the raw methods on
}
TestTokenCallerRaw is an auto generated low-level read-only Go binding around an Ethereum contract.
func (*TestTokenCallerRaw) Call ¶
func (_TestToken *TestTokenCallerRaw) Call(opts *bind.CallOpts, result *[]interface{}, method string, params ...interface{}) error
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.
type TestTokenCallerSession ¶
type TestTokenCallerSession struct { Contract *TestTokenCaller // Generic contract caller binding to set the session for CallOpts bind.CallOpts // Call options to use throughout this session }
TestTokenCallerSession is an auto generated read-only Go binding around an Ethereum contract, with pre-set call options.
func (*TestTokenCallerSession) Allowance ¶
func (_TestToken *TestTokenCallerSession) Allowance(owner common.Address, spender common.Address) (*big.Int, error)
Allowance is a free data retrieval call binding the contract method 0xdd62ed3e.
Solidity: function allowance(address owner, address spender) view returns(uint256)
func (*TestTokenCallerSession) BalanceOf ¶
BalanceOf is a free data retrieval call binding the contract method 0x70a08231.
Solidity: function balanceOf(address account) view returns(uint256)
func (*TestTokenCallerSession) Decimals ¶
func (_TestToken *TestTokenCallerSession) Decimals() (uint8, error)
Decimals is a free data retrieval call binding the contract method 0x313ce567.
Solidity: function decimals() view returns(uint8)
func (*TestTokenCallerSession) Name ¶
func (_TestToken *TestTokenCallerSession) Name() (string, error)
Name is a free data retrieval call binding the contract method 0x06fdde03.
Solidity: function name() view returns(string)
func (*TestTokenCallerSession) Symbol ¶
func (_TestToken *TestTokenCallerSession) Symbol() (string, error)
Symbol is a free data retrieval call binding the contract method 0x95d89b41.
Solidity: function symbol() view returns(string)
func (*TestTokenCallerSession) TotalSupply ¶
func (_TestToken *TestTokenCallerSession) TotalSupply() (*big.Int, error)
TotalSupply is a free data retrieval call binding the contract method 0x18160ddd.
Solidity: function totalSupply() view returns(uint256)
type TestTokenFilterer ¶
type TestTokenFilterer struct {
// contains filtered or unexported fields
}
TestTokenFilterer is an auto generated log filtering Go binding around an Ethereum contract events.
func NewTestTokenFilterer ¶
func NewTestTokenFilterer(address common.Address, filterer bind.ContractFilterer) (*TestTokenFilterer, error)
NewTestTokenFilterer creates a new log filterer instance of TestToken, bound to a specific deployed contract.
func (*TestTokenFilterer) FilterApproval ¶
func (_TestToken *TestTokenFilterer) FilterApproval(opts *bind.FilterOpts, owner []common.Address, spender []common.Address) (*TestTokenApprovalIterator, error)
FilterApproval is a free log retrieval operation binding the contract event 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925.
Solidity: event Approval(address indexed owner, address indexed spender, uint256 value)
func (*TestTokenFilterer) FilterTransfer ¶
func (_TestToken *TestTokenFilterer) FilterTransfer(opts *bind.FilterOpts, from []common.Address, to []common.Address) (*TestTokenTransferIterator, error)
FilterTransfer is a free log retrieval operation binding the contract event 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef.
Solidity: event Transfer(address indexed from, address indexed to, uint256 value)
func (*TestTokenFilterer) ParseApproval ¶
func (_TestToken *TestTokenFilterer) ParseApproval(log types.Log) (*TestTokenApproval, error)
ParseApproval is a log parse operation binding the contract event 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925.
Solidity: event Approval(address indexed owner, address indexed spender, uint256 value)
func (*TestTokenFilterer) ParseTransfer ¶
func (_TestToken *TestTokenFilterer) ParseTransfer(log types.Log) (*TestTokenTransfer, error)
ParseTransfer is a log parse operation binding the contract event 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef.
Solidity: event Transfer(address indexed from, address indexed to, uint256 value)
func (*TestTokenFilterer) WatchApproval ¶
func (_TestToken *TestTokenFilterer) WatchApproval(opts *bind.WatchOpts, sink chan<- *TestTokenApproval, owner []common.Address, spender []common.Address) (event.Subscription, error)
WatchApproval is a free log subscription operation binding the contract event 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925.
Solidity: event Approval(address indexed owner, address indexed spender, uint256 value)
func (*TestTokenFilterer) WatchTransfer ¶
func (_TestToken *TestTokenFilterer) WatchTransfer(opts *bind.WatchOpts, sink chan<- *TestTokenTransfer, from []common.Address, to []common.Address) (event.Subscription, error)
WatchTransfer is a free log subscription operation binding the contract event 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef.
Solidity: event Transfer(address indexed from, address indexed to, uint256 value)
type TestTokenRaw ¶
type TestTokenRaw struct {
Contract *TestToken // Generic contract binding to access the raw methods on
}
TestTokenRaw is an auto generated low-level Go binding around an Ethereum contract.
func (*TestTokenRaw) Call ¶
func (_TestToken *TestTokenRaw) Call(opts *bind.CallOpts, result *[]interface{}, method string, params ...interface{}) error
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 (*TestTokenRaw) Transact ¶
func (_TestToken *TestTokenRaw) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (*types.Transaction, error)
Transact invokes the (paid) contract method with params as input values.
func (*TestTokenRaw) Transfer ¶
func (_TestToken *TestTokenRaw) Transfer(opts *bind.TransactOpts) (*types.Transaction, error)
Transfer initiates a plain transaction to move funds to the contract, calling its default method if one is available.
type TestTokenSession ¶
type TestTokenSession struct { Contract *TestToken // 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 }
TestTokenSession is an auto generated Go binding around an Ethereum contract, with pre-set call and transact options.
func (*TestTokenSession) Allowance ¶
func (_TestToken *TestTokenSession) Allowance(owner common.Address, spender common.Address) (*big.Int, error)
Allowance is a free data retrieval call binding the contract method 0xdd62ed3e.
Solidity: function allowance(address owner, address spender) view returns(uint256)
func (*TestTokenSession) Approve ¶
func (_TestToken *TestTokenSession) Approve(spender common.Address, amount *big.Int) (*types.Transaction, error)
Approve is a paid mutator transaction binding the contract method 0x095ea7b3.
Solidity: function approve(address spender, uint256 amount) returns(bool)
func (*TestTokenSession) BalanceOf ¶
BalanceOf is a free data retrieval call binding the contract method 0x70a08231.
Solidity: function balanceOf(address account) view returns(uint256)
func (*TestTokenSession) Decimals ¶
func (_TestToken *TestTokenSession) Decimals() (uint8, error)
Decimals is a free data retrieval call binding the contract method 0x313ce567.
Solidity: function decimals() view returns(uint8)
func (*TestTokenSession) DecreaseAllowance ¶
func (_TestToken *TestTokenSession) DecreaseAllowance(spender common.Address, subtractedValue *big.Int) (*types.Transaction, error)
DecreaseAllowance is a paid mutator transaction binding the contract method 0xa457c2d7.
Solidity: function decreaseAllowance(address spender, uint256 subtractedValue) returns(bool)
func (*TestTokenSession) IncreaseAllowance ¶
func (_TestToken *TestTokenSession) IncreaseAllowance(spender common.Address, addedValue *big.Int) (*types.Transaction, error)
IncreaseAllowance is a paid mutator transaction binding the contract method 0x39509351.
Solidity: function increaseAllowance(address spender, uint256 addedValue) returns(bool)
func (*TestTokenSession) Name ¶
func (_TestToken *TestTokenSession) Name() (string, error)
Name is a free data retrieval call binding the contract method 0x06fdde03.
Solidity: function name() view returns(string)
func (*TestTokenSession) Symbol ¶
func (_TestToken *TestTokenSession) Symbol() (string, error)
Symbol is a free data retrieval call binding the contract method 0x95d89b41.
Solidity: function symbol() view returns(string)
func (*TestTokenSession) TotalSupply ¶
func (_TestToken *TestTokenSession) TotalSupply() (*big.Int, error)
TotalSupply is a free data retrieval call binding the contract method 0x18160ddd.
Solidity: function totalSupply() view returns(uint256)
func (*TestTokenSession) Transfer ¶
func (_TestToken *TestTokenSession) Transfer(recipient common.Address, amount *big.Int) (*types.Transaction, error)
Transfer is a paid mutator transaction binding the contract method 0xa9059cbb.
Solidity: function transfer(address recipient, uint256 amount) returns(bool)
func (*TestTokenSession) TransferFrom ¶
func (_TestToken *TestTokenSession) TransferFrom(sender common.Address, recipient common.Address, amount *big.Int) (*types.Transaction, error)
TransferFrom is a paid mutator transaction binding the contract method 0x23b872dd.
Solidity: function transferFrom(address sender, address recipient, uint256 amount) returns(bool)
type TestTokenTransactor ¶
type TestTokenTransactor struct {
// contains filtered or unexported fields
}
TestTokenTransactor is an auto generated write-only Go binding around an Ethereum contract.
func NewTestTokenTransactor ¶
func NewTestTokenTransactor(address common.Address, transactor bind.ContractTransactor) (*TestTokenTransactor, error)
NewTestTokenTransactor creates a new write-only instance of TestToken, bound to a specific deployed contract.
func (*TestTokenTransactor) Approve ¶
func (_TestToken *TestTokenTransactor) Approve(opts *bind.TransactOpts, spender common.Address, amount *big.Int) (*types.Transaction, error)
Approve is a paid mutator transaction binding the contract method 0x095ea7b3.
Solidity: function approve(address spender, uint256 amount) returns(bool)
func (*TestTokenTransactor) DecreaseAllowance ¶
func (_TestToken *TestTokenTransactor) DecreaseAllowance(opts *bind.TransactOpts, spender common.Address, subtractedValue *big.Int) (*types.Transaction, error)
DecreaseAllowance is a paid mutator transaction binding the contract method 0xa457c2d7.
Solidity: function decreaseAllowance(address spender, uint256 subtractedValue) returns(bool)
func (*TestTokenTransactor) IncreaseAllowance ¶
func (_TestToken *TestTokenTransactor) IncreaseAllowance(opts *bind.TransactOpts, spender common.Address, addedValue *big.Int) (*types.Transaction, error)
IncreaseAllowance is a paid mutator transaction binding the contract method 0x39509351.
Solidity: function increaseAllowance(address spender, uint256 addedValue) returns(bool)
func (*TestTokenTransactor) Transfer ¶
func (_TestToken *TestTokenTransactor) Transfer(opts *bind.TransactOpts, recipient common.Address, amount *big.Int) (*types.Transaction, error)
Transfer is a paid mutator transaction binding the contract method 0xa9059cbb.
Solidity: function transfer(address recipient, uint256 amount) returns(bool)
func (*TestTokenTransactor) TransferFrom ¶
func (_TestToken *TestTokenTransactor) TransferFrom(opts *bind.TransactOpts, sender common.Address, recipient common.Address, amount *big.Int) (*types.Transaction, error)
TransferFrom is a paid mutator transaction binding the contract method 0x23b872dd.
Solidity: function transferFrom(address sender, address recipient, uint256 amount) returns(bool)
type TestTokenTransactorRaw ¶
type TestTokenTransactorRaw struct {
Contract *TestTokenTransactor // Generic write-only contract binding to access the raw methods on
}
TestTokenTransactorRaw is an auto generated low-level write-only Go binding around an Ethereum contract.
func (*TestTokenTransactorRaw) Transact ¶
func (_TestToken *TestTokenTransactorRaw) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (*types.Transaction, error)
Transact invokes the (paid) contract method with params as input values.
func (*TestTokenTransactorRaw) Transfer ¶
func (_TestToken *TestTokenTransactorRaw) Transfer(opts *bind.TransactOpts) (*types.Transaction, error)
Transfer initiates a plain transaction to move funds to the contract, calling its default method if one is available.
type TestTokenTransactorSession ¶
type TestTokenTransactorSession struct { Contract *TestTokenTransactor // Generic contract transactor binding to set the session for TransactOpts bind.TransactOpts // Transaction auth options to use throughout this session }
TestTokenTransactorSession is an auto generated write-only Go binding around an Ethereum contract, with pre-set transact options.
func (*TestTokenTransactorSession) Approve ¶
func (_TestToken *TestTokenTransactorSession) Approve(spender common.Address, amount *big.Int) (*types.Transaction, error)
Approve is a paid mutator transaction binding the contract method 0x095ea7b3.
Solidity: function approve(address spender, uint256 amount) returns(bool)
func (*TestTokenTransactorSession) DecreaseAllowance ¶
func (_TestToken *TestTokenTransactorSession) DecreaseAllowance(spender common.Address, subtractedValue *big.Int) (*types.Transaction, error)
DecreaseAllowance is a paid mutator transaction binding the contract method 0xa457c2d7.
Solidity: function decreaseAllowance(address spender, uint256 subtractedValue) returns(bool)
func (*TestTokenTransactorSession) IncreaseAllowance ¶
func (_TestToken *TestTokenTransactorSession) IncreaseAllowance(spender common.Address, addedValue *big.Int) (*types.Transaction, error)
IncreaseAllowance is a paid mutator transaction binding the contract method 0x39509351.
Solidity: function increaseAllowance(address spender, uint256 addedValue) returns(bool)
func (*TestTokenTransactorSession) Transfer ¶
func (_TestToken *TestTokenTransactorSession) Transfer(recipient common.Address, amount *big.Int) (*types.Transaction, error)
Transfer is a paid mutator transaction binding the contract method 0xa9059cbb.
Solidity: function transfer(address recipient, uint256 amount) returns(bool)
func (*TestTokenTransactorSession) TransferFrom ¶
func (_TestToken *TestTokenTransactorSession) TransferFrom(sender common.Address, recipient common.Address, amount *big.Int) (*types.Transaction, error)
TransferFrom is a paid mutator transaction binding the contract method 0x23b872dd.
Solidity: function transferFrom(address sender, address recipient, uint256 amount) returns(bool)
type TestTokenTransfer ¶
type TestTokenTransfer struct { From common.Address To common.Address Value *big.Int Raw types.Log // Blockchain specific contextual infos }
TestTokenTransfer represents a Transfer event raised by the TestToken contract.
type TestTokenTransferIterator ¶
type TestTokenTransferIterator struct { Event *TestTokenTransfer // Event containing the contract specifics and raw log // contains filtered or unexported fields }
TestTokenTransferIterator is returned from FilterTransfer and is used to iterate over the raw logs and unpacked data for Transfer events raised by the TestToken contract.
func (*TestTokenTransferIterator) Close ¶
func (it *TestTokenTransferIterator) Close() error
Close terminates the iteration process, releasing any pending underlying resources.
func (*TestTokenTransferIterator) Error ¶
func (it *TestTokenTransferIterator) Error() error
Error returns any retrieval or parsing error occurred during filtering.
func (*TestTokenTransferIterator) Next ¶
func (it *TestTokenTransferIterator) Next() bool
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.