Documentation
¶
Index ¶
- Variables
- type IAGENTTokenDeployer
- type IAGENTTokenDeployerAGENTTokenCreated
- type IAGENTTokenDeployerAGENTTokenCreatedIterator
- type IAGENTTokenDeployerCaller
- type IAGENTTokenDeployerCallerRaw
- type IAGENTTokenDeployerCallerSession
- type IAGENTTokenDeployerFilterer
- func (_IAGENTTokenDeployer *IAGENTTokenDeployerFilterer) FilterAGENTTokenCreated(opts *bind.FilterOpts, salt [][32]byte, token []common.Address) (*IAGENTTokenDeployerAGENTTokenCreatedIterator, error)
- func (_IAGENTTokenDeployer *IAGENTTokenDeployerFilterer) ParseAGENTTokenCreated(log types.Log) (*IAGENTTokenDeployerAGENTTokenCreated, error)
- func (_IAGENTTokenDeployer *IAGENTTokenDeployerFilterer) WatchAGENTTokenCreated(opts *bind.WatchOpts, sink chan<- *IAGENTTokenDeployerAGENTTokenCreated, ...) (event.Subscription, error)
- type IAGENTTokenDeployerRaw
- func (_IAGENTTokenDeployer *IAGENTTokenDeployerRaw) Call(opts *bind.CallOpts, result *[]interface{}, method string, ...) error
- func (_IAGENTTokenDeployer *IAGENTTokenDeployerRaw) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (*types.Transaction, error)
- func (_IAGENTTokenDeployer *IAGENTTokenDeployerRaw) Transfer(opts *bind.TransactOpts) (*types.Transaction, error)
- type IAGENTTokenDeployerSession
- func (_IAGENTTokenDeployer *IAGENTTokenDeployerSession) CallWithValue(target common.Address, data []byte, value *big.Int) (*types.Transaction, error)
- func (_IAGENTTokenDeployer *IAGENTTokenDeployerSession) CreateToken(salt [32]byte, name string, symbol string, amount *big.Int) (*types.Transaction, error)
- func (_IAGENTTokenDeployer *IAGENTTokenDeployerSession) GetToken(salt [32]byte) (common.Address, error)
- func (_IAGENTTokenDeployer *IAGENTTokenDeployerSession) Multicall(data [][]byte) (*types.Transaction, error)
- type IAGENTTokenDeployerTransactor
- func (_IAGENTTokenDeployer *IAGENTTokenDeployerTransactor) CallWithValue(opts *bind.TransactOpts, target common.Address, data []byte, value *big.Int) (*types.Transaction, error)
- func (_IAGENTTokenDeployer *IAGENTTokenDeployerTransactor) CreateToken(opts *bind.TransactOpts, salt [32]byte, name string, symbol string, ...) (*types.Transaction, error)
- func (_IAGENTTokenDeployer *IAGENTTokenDeployerTransactor) Multicall(opts *bind.TransactOpts, data [][]byte) (*types.Transaction, error)
- type IAGENTTokenDeployerTransactorRaw
- type IAGENTTokenDeployerTransactorSession
- func (_IAGENTTokenDeployer *IAGENTTokenDeployerTransactorSession) CallWithValue(target common.Address, data []byte, value *big.Int) (*types.Transaction, error)
- func (_IAGENTTokenDeployer *IAGENTTokenDeployerTransactorSession) CreateToken(salt [32]byte, name string, symbol string, amount *big.Int) (*types.Transaction, error)
- func (_IAGENTTokenDeployer *IAGENTTokenDeployerTransactorSession) Multicall(data [][]byte) (*types.Transaction, error)
Constants ¶
This section is empty.
Variables ¶
var IAGENTTokenDeployerABI = IAGENTTokenDeployerMetaData.ABI
IAGENTTokenDeployerABI is the input ABI used to generate the binding from. Deprecated: Use IAGENTTokenDeployerMetaData.ABI instead.
var IAGENTTokenDeployerMetaData = &bind.MetaData{
ABI: "[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"AGENTTokenCreated\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"callWithValue\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"createToken\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"}],\"name\":\"getToken\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes[]\",\"name\":\"data\",\"type\":\"bytes[]\"}],\"name\":\"multicall\",\"outputs\":[{\"internalType\":\"bytes[]\",\"name\":\"results\",\"type\":\"bytes[]\"}],\"stateMutability\":\"payable\",\"type\":\"function\"}]",
}
IAGENTTokenDeployerMetaData contains all meta data concerning the IAGENTTokenDeployer contract.
Functions ¶
This section is empty.
Types ¶
type IAGENTTokenDeployer ¶
type IAGENTTokenDeployer struct { IAGENTTokenDeployerCaller // Read-only binding to the contract IAGENTTokenDeployerTransactor // Write-only binding to the contract IAGENTTokenDeployerFilterer // Log filterer for contract events }
IAGENTTokenDeployer is an auto generated Go binding around an Ethereum contract.
func NewIAGENTTokenDeployer ¶
func NewIAGENTTokenDeployer(address common.Address, backend bind.ContractBackend) (*IAGENTTokenDeployer, error)
NewIAGENTTokenDeployer creates a new instance of IAGENTTokenDeployer, bound to a specific deployed contract.
type IAGENTTokenDeployerAGENTTokenCreated ¶
type IAGENTTokenDeployerAGENTTokenCreated struct { Salt [32]byte Token common.Address Raw types.Log // Blockchain specific contextual infos }
IAGENTTokenDeployerAGENTTokenCreated represents a AGENTTokenCreated event raised by the IAGENTTokenDeployer contract.
type IAGENTTokenDeployerAGENTTokenCreatedIterator ¶
type IAGENTTokenDeployerAGENTTokenCreatedIterator struct { Event *IAGENTTokenDeployerAGENTTokenCreated // Event containing the contract specifics and raw log // contains filtered or unexported fields }
IAGENTTokenDeployerAGENTTokenCreatedIterator is returned from FilterAGENTTokenCreated and is used to iterate over the raw logs and unpacked data for AGENTTokenCreated events raised by the IAGENTTokenDeployer contract.
func (*IAGENTTokenDeployerAGENTTokenCreatedIterator) Close ¶
func (it *IAGENTTokenDeployerAGENTTokenCreatedIterator) Close() error
Close terminates the iteration process, releasing any pending underlying resources.
func (*IAGENTTokenDeployerAGENTTokenCreatedIterator) Error ¶
func (it *IAGENTTokenDeployerAGENTTokenCreatedIterator) Error() error
Error returns any retrieval or parsing error occurred during filtering.
func (*IAGENTTokenDeployerAGENTTokenCreatedIterator) Next ¶
func (it *IAGENTTokenDeployerAGENTTokenCreatedIterator) 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 IAGENTTokenDeployerCaller ¶
type IAGENTTokenDeployerCaller struct {
// contains filtered or unexported fields
}
IAGENTTokenDeployerCaller is an auto generated read-only Go binding around an Ethereum contract.
func NewIAGENTTokenDeployerCaller ¶
func NewIAGENTTokenDeployerCaller(address common.Address, caller bind.ContractCaller) (*IAGENTTokenDeployerCaller, error)
NewIAGENTTokenDeployerCaller creates a new read-only instance of IAGENTTokenDeployer, bound to a specific deployed contract.
func (*IAGENTTokenDeployerCaller) GetToken ¶
func (_IAGENTTokenDeployer *IAGENTTokenDeployerCaller) GetToken(opts *bind.CallOpts, salt [32]byte) (common.Address, error)
GetToken is a free data retrieval call binding the contract method 0x155bf4e2.
Solidity: function getToken(bytes32 salt) view returns(address)
type IAGENTTokenDeployerCallerRaw ¶
type IAGENTTokenDeployerCallerRaw struct {
Contract *IAGENTTokenDeployerCaller // Generic read-only contract binding to access the raw methods on
}
IAGENTTokenDeployerCallerRaw is an auto generated low-level read-only Go binding around an Ethereum contract.
func (*IAGENTTokenDeployerCallerRaw) Call ¶
func (_IAGENTTokenDeployer *IAGENTTokenDeployerCallerRaw) 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 IAGENTTokenDeployerCallerSession ¶
type IAGENTTokenDeployerCallerSession struct { Contract *IAGENTTokenDeployerCaller // Generic contract caller binding to set the session for CallOpts bind.CallOpts // Call options to use throughout this session }
IAGENTTokenDeployerCallerSession is an auto generated read-only Go binding around an Ethereum contract, with pre-set call options.
func (*IAGENTTokenDeployerCallerSession) GetToken ¶
func (_IAGENTTokenDeployer *IAGENTTokenDeployerCallerSession) GetToken(salt [32]byte) (common.Address, error)
GetToken is a free data retrieval call binding the contract method 0x155bf4e2.
Solidity: function getToken(bytes32 salt) view returns(address)
type IAGENTTokenDeployerFilterer ¶
type IAGENTTokenDeployerFilterer struct {
// contains filtered or unexported fields
}
IAGENTTokenDeployerFilterer is an auto generated log filtering Go binding around an Ethereum contract events.
func NewIAGENTTokenDeployerFilterer ¶
func NewIAGENTTokenDeployerFilterer(address common.Address, filterer bind.ContractFilterer) (*IAGENTTokenDeployerFilterer, error)
NewIAGENTTokenDeployerFilterer creates a new log filterer instance of IAGENTTokenDeployer, bound to a specific deployed contract.
func (*IAGENTTokenDeployerFilterer) FilterAGENTTokenCreated ¶
func (_IAGENTTokenDeployer *IAGENTTokenDeployerFilterer) FilterAGENTTokenCreated(opts *bind.FilterOpts, salt [][32]byte, token []common.Address) (*IAGENTTokenDeployerAGENTTokenCreatedIterator, error)
FilterAGENTTokenCreated is a free log retrieval operation binding the contract event 0xb1ed6fee395fd3653fcafe0c34960115183da0ce5e99275b123893359ab04dc2.
Solidity: event AGENTTokenCreated(bytes32 indexed salt, address indexed token)
func (*IAGENTTokenDeployerFilterer) ParseAGENTTokenCreated ¶
func (_IAGENTTokenDeployer *IAGENTTokenDeployerFilterer) ParseAGENTTokenCreated(log types.Log) (*IAGENTTokenDeployerAGENTTokenCreated, error)
ParseAGENTTokenCreated is a log parse operation binding the contract event 0xb1ed6fee395fd3653fcafe0c34960115183da0ce5e99275b123893359ab04dc2.
Solidity: event AGENTTokenCreated(bytes32 indexed salt, address indexed token)
func (*IAGENTTokenDeployerFilterer) WatchAGENTTokenCreated ¶
func (_IAGENTTokenDeployer *IAGENTTokenDeployerFilterer) WatchAGENTTokenCreated(opts *bind.WatchOpts, sink chan<- *IAGENTTokenDeployerAGENTTokenCreated, salt [][32]byte, token []common.Address) (event.Subscription, error)
WatchAGENTTokenCreated is a free log subscription operation binding the contract event 0xb1ed6fee395fd3653fcafe0c34960115183da0ce5e99275b123893359ab04dc2.
Solidity: event AGENTTokenCreated(bytes32 indexed salt, address indexed token)
type IAGENTTokenDeployerRaw ¶
type IAGENTTokenDeployerRaw struct {
Contract *IAGENTTokenDeployer // Generic contract binding to access the raw methods on
}
IAGENTTokenDeployerRaw is an auto generated low-level Go binding around an Ethereum contract.
func (*IAGENTTokenDeployerRaw) Call ¶
func (_IAGENTTokenDeployer *IAGENTTokenDeployerRaw) 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 (*IAGENTTokenDeployerRaw) Transact ¶
func (_IAGENTTokenDeployer *IAGENTTokenDeployerRaw) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (*types.Transaction, error)
Transact invokes the (paid) contract method with params as input values.
func (*IAGENTTokenDeployerRaw) Transfer ¶
func (_IAGENTTokenDeployer *IAGENTTokenDeployerRaw) 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 IAGENTTokenDeployerSession ¶
type IAGENTTokenDeployerSession struct { Contract *IAGENTTokenDeployer // 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 }
IAGENTTokenDeployerSession is an auto generated Go binding around an Ethereum contract, with pre-set call and transact options.
func (*IAGENTTokenDeployerSession) CallWithValue ¶
func (_IAGENTTokenDeployer *IAGENTTokenDeployerSession) CallWithValue(target common.Address, data []byte, value *big.Int) (*types.Transaction, error)
CallWithValue is a paid mutator transaction binding the contract method 0x04ac018a.
Solidity: function callWithValue(address target, bytes data, uint256 value) payable returns(bytes)
func (*IAGENTTokenDeployerSession) CreateToken ¶
func (_IAGENTTokenDeployer *IAGENTTokenDeployerSession) CreateToken(salt [32]byte, name string, symbol string, amount *big.Int) (*types.Transaction, error)
CreateToken is a paid mutator transaction binding the contract method 0x0f99f157.
Solidity: function createToken(bytes32 salt, string name, string symbol, uint256 amount) payable returns(address)
func (*IAGENTTokenDeployerSession) GetToken ¶
func (_IAGENTTokenDeployer *IAGENTTokenDeployerSession) GetToken(salt [32]byte) (common.Address, error)
GetToken is a free data retrieval call binding the contract method 0x155bf4e2.
Solidity: function getToken(bytes32 salt) view returns(address)
func (*IAGENTTokenDeployerSession) Multicall ¶
func (_IAGENTTokenDeployer *IAGENTTokenDeployerSession) Multicall(data [][]byte) (*types.Transaction, error)
Multicall is a paid mutator transaction binding the contract method 0xac9650d8.
Solidity: function multicall(bytes[] data) payable returns(bytes[] results)
type IAGENTTokenDeployerTransactor ¶
type IAGENTTokenDeployerTransactor struct {
// contains filtered or unexported fields
}
IAGENTTokenDeployerTransactor is an auto generated write-only Go binding around an Ethereum contract.
func NewIAGENTTokenDeployerTransactor ¶
func NewIAGENTTokenDeployerTransactor(address common.Address, transactor bind.ContractTransactor) (*IAGENTTokenDeployerTransactor, error)
NewIAGENTTokenDeployerTransactor creates a new write-only instance of IAGENTTokenDeployer, bound to a specific deployed contract.
func (*IAGENTTokenDeployerTransactor) CallWithValue ¶
func (_IAGENTTokenDeployer *IAGENTTokenDeployerTransactor) CallWithValue(opts *bind.TransactOpts, target common.Address, data []byte, value *big.Int) (*types.Transaction, error)
CallWithValue is a paid mutator transaction binding the contract method 0x04ac018a.
Solidity: function callWithValue(address target, bytes data, uint256 value) payable returns(bytes)
func (*IAGENTTokenDeployerTransactor) CreateToken ¶
func (_IAGENTTokenDeployer *IAGENTTokenDeployerTransactor) CreateToken(opts *bind.TransactOpts, salt [32]byte, name string, symbol string, amount *big.Int) (*types.Transaction, error)
CreateToken is a paid mutator transaction binding the contract method 0x0f99f157.
Solidity: function createToken(bytes32 salt, string name, string symbol, uint256 amount) payable returns(address)
func (*IAGENTTokenDeployerTransactor) Multicall ¶
func (_IAGENTTokenDeployer *IAGENTTokenDeployerTransactor) Multicall(opts *bind.TransactOpts, data [][]byte) (*types.Transaction, error)
Multicall is a paid mutator transaction binding the contract method 0xac9650d8.
Solidity: function multicall(bytes[] data) payable returns(bytes[] results)
type IAGENTTokenDeployerTransactorRaw ¶
type IAGENTTokenDeployerTransactorRaw struct {
Contract *IAGENTTokenDeployerTransactor // Generic write-only contract binding to access the raw methods on
}
IAGENTTokenDeployerTransactorRaw is an auto generated low-level write-only Go binding around an Ethereum contract.
func (*IAGENTTokenDeployerTransactorRaw) Transact ¶
func (_IAGENTTokenDeployer *IAGENTTokenDeployerTransactorRaw) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (*types.Transaction, error)
Transact invokes the (paid) contract method with params as input values.
func (*IAGENTTokenDeployerTransactorRaw) Transfer ¶
func (_IAGENTTokenDeployer *IAGENTTokenDeployerTransactorRaw) 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 IAGENTTokenDeployerTransactorSession ¶
type IAGENTTokenDeployerTransactorSession struct { Contract *IAGENTTokenDeployerTransactor // Generic contract transactor binding to set the session for TransactOpts bind.TransactOpts // Transaction auth options to use throughout this session }
IAGENTTokenDeployerTransactorSession is an auto generated write-only Go binding around an Ethereum contract, with pre-set transact options.
func (*IAGENTTokenDeployerTransactorSession) CallWithValue ¶
func (_IAGENTTokenDeployer *IAGENTTokenDeployerTransactorSession) CallWithValue(target common.Address, data []byte, value *big.Int) (*types.Transaction, error)
CallWithValue is a paid mutator transaction binding the contract method 0x04ac018a.
Solidity: function callWithValue(address target, bytes data, uint256 value) payable returns(bytes)
func (*IAGENTTokenDeployerTransactorSession) CreateToken ¶
func (_IAGENTTokenDeployer *IAGENTTokenDeployerTransactorSession) CreateToken(salt [32]byte, name string, symbol string, amount *big.Int) (*types.Transaction, error)
CreateToken is a paid mutator transaction binding the contract method 0x0f99f157.
Solidity: function createToken(bytes32 salt, string name, string symbol, uint256 amount) payable returns(address)
func (*IAGENTTokenDeployerTransactorSession) Multicall ¶
func (_IAGENTTokenDeployer *IAGENTTokenDeployerTransactorSession) Multicall(data [][]byte) (*types.Transaction, error)
Multicall is a paid mutator transaction binding the contract method 0xac9650d8.
Solidity: function multicall(bytes[] data) payable returns(bytes[] results)