Documentation ¶
Index ¶
- Variables
- type ISelfHostedApplicationFactory
- type ISelfHostedApplicationFactoryCaller
- func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactoryCaller) CalculateAddresses(opts *bind.CallOpts, authorityOwner common.Address, epochLength *big.Int, ...) (common.Address, common.Address, error)
- func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactoryCaller) GetApplicationFactory(opts *bind.CallOpts) (common.Address, error)
- func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactoryCaller) GetAuthorityFactory(opts *bind.CallOpts) (common.Address, error)
- type ISelfHostedApplicationFactoryCallerRaw
- type ISelfHostedApplicationFactoryCallerSession
- func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactoryCallerSession) CalculateAddresses(authorityOwner common.Address, epochLength *big.Int, appOwner common.Address, ...) (common.Address, common.Address, error)
- func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactoryCallerSession) GetApplicationFactory() (common.Address, error)
- func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactoryCallerSession) GetAuthorityFactory() (common.Address, error)
- type ISelfHostedApplicationFactoryFilterer
- type ISelfHostedApplicationFactoryRaw
- func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactoryRaw) Call(opts *bind.CallOpts, result *[]interface{}, method string, ...) error
- func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactoryRaw) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (*types.Transaction, error)
- func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactoryRaw) Transfer(opts *bind.TransactOpts) (*types.Transaction, error)
- type ISelfHostedApplicationFactorySession
- func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactorySession) CalculateAddresses(authorityOwner common.Address, epochLength *big.Int, appOwner common.Address, ...) (common.Address, common.Address, error)
- func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactorySession) DeployContracts(authorityOwner common.Address, epochLength *big.Int, appOwner common.Address, ...) (*types.Transaction, error)
- func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactorySession) GetApplicationFactory() (common.Address, error)
- func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactorySession) GetAuthorityFactory() (common.Address, error)
- type ISelfHostedApplicationFactoryTransactor
- type ISelfHostedApplicationFactoryTransactorRaw
- func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactoryTransactorRaw) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (*types.Transaction, error)
- func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactoryTransactorRaw) Transfer(opts *bind.TransactOpts) (*types.Transaction, error)
- type ISelfHostedApplicationFactoryTransactorSession
Constants ¶
This section is empty.
Variables ¶
var ISelfHostedApplicationFactoryABI = ISelfHostedApplicationFactoryMetaData.ABI
ISelfHostedApplicationFactoryABI is the input ABI used to generate the binding from. Deprecated: Use ISelfHostedApplicationFactoryMetaData.ABI instead.
var ISelfHostedApplicationFactoryMetaData = &bind.MetaData{
ABI: "[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"authorityOwner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"epochLength\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"appOwner\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"templateHash\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"}],\"name\":\"calculateAddresses\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"authorityOwner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"epochLength\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"appOwner\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"templateHash\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"}],\"name\":\"deployContracts\",\"outputs\":[{\"internalType\":\"contractIApplication\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"contractIAuthority\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getApplicationFactory\",\"outputs\":[{\"internalType\":\"contractIApplicationFactory\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getAuthorityFactory\",\"outputs\":[{\"internalType\":\"contractIAuthorityFactory\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}]",
}
ISelfHostedApplicationFactoryMetaData contains all meta data concerning the ISelfHostedApplicationFactory contract.
Functions ¶
This section is empty.
Types ¶
type ISelfHostedApplicationFactory ¶
type ISelfHostedApplicationFactory struct { ISelfHostedApplicationFactoryCaller // Read-only binding to the contract ISelfHostedApplicationFactoryTransactor // Write-only binding to the contract ISelfHostedApplicationFactoryFilterer // Log filterer for contract events }
ISelfHostedApplicationFactory is an auto generated Go binding around an Ethereum contract.
func NewISelfHostedApplicationFactory ¶
func NewISelfHostedApplicationFactory(address common.Address, backend bind.ContractBackend) (*ISelfHostedApplicationFactory, error)
NewISelfHostedApplicationFactory creates a new instance of ISelfHostedApplicationFactory, bound to a specific deployed contract.
type ISelfHostedApplicationFactoryCaller ¶
type ISelfHostedApplicationFactoryCaller struct {
// contains filtered or unexported fields
}
ISelfHostedApplicationFactoryCaller is an auto generated read-only Go binding around an Ethereum contract.
func NewISelfHostedApplicationFactoryCaller ¶
func NewISelfHostedApplicationFactoryCaller(address common.Address, caller bind.ContractCaller) (*ISelfHostedApplicationFactoryCaller, error)
NewISelfHostedApplicationFactoryCaller creates a new read-only instance of ISelfHostedApplicationFactory, bound to a specific deployed contract.
func (*ISelfHostedApplicationFactoryCaller) CalculateAddresses ¶
func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactoryCaller) CalculateAddresses(opts *bind.CallOpts, authorityOwner common.Address, epochLength *big.Int, appOwner common.Address, templateHash [32]byte, salt [32]byte) (common.Address, common.Address, error)
CalculateAddresses is a free data retrieval call binding the contract method 0xde4d53fd.
Solidity: function calculateAddresses(address authorityOwner, uint256 epochLength, address appOwner, bytes32 templateHash, bytes32 salt) view returns(address, address)
func (*ISelfHostedApplicationFactoryCaller) GetApplicationFactory ¶
func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactoryCaller) GetApplicationFactory(opts *bind.CallOpts) (common.Address, error)
GetApplicationFactory is a free data retrieval call binding the contract method 0xe63d50ff.
Solidity: function getApplicationFactory() view returns(address)
func (*ISelfHostedApplicationFactoryCaller) GetAuthorityFactory ¶
func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactoryCaller) GetAuthorityFactory(opts *bind.CallOpts) (common.Address, error)
GetAuthorityFactory is a free data retrieval call binding the contract method 0x75689f83.
Solidity: function getAuthorityFactory() view returns(address)
type ISelfHostedApplicationFactoryCallerRaw ¶
type ISelfHostedApplicationFactoryCallerRaw struct {
Contract *ISelfHostedApplicationFactoryCaller // Generic read-only contract binding to access the raw methods on
}
ISelfHostedApplicationFactoryCallerRaw is an auto generated low-level read-only Go binding around an Ethereum contract.
func (*ISelfHostedApplicationFactoryCallerRaw) Call ¶
func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactoryCallerRaw) 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 ISelfHostedApplicationFactoryCallerSession ¶
type ISelfHostedApplicationFactoryCallerSession struct { Contract *ISelfHostedApplicationFactoryCaller // Generic contract caller binding to set the session for CallOpts bind.CallOpts // Call options to use throughout this session }
ISelfHostedApplicationFactoryCallerSession is an auto generated read-only Go binding around an Ethereum contract, with pre-set call options.
func (*ISelfHostedApplicationFactoryCallerSession) CalculateAddresses ¶
func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactoryCallerSession) CalculateAddresses(authorityOwner common.Address, epochLength *big.Int, appOwner common.Address, templateHash [32]byte, salt [32]byte) (common.Address, common.Address, error)
CalculateAddresses is a free data retrieval call binding the contract method 0xde4d53fd.
Solidity: function calculateAddresses(address authorityOwner, uint256 epochLength, address appOwner, bytes32 templateHash, bytes32 salt) view returns(address, address)
func (*ISelfHostedApplicationFactoryCallerSession) GetApplicationFactory ¶
func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactoryCallerSession) GetApplicationFactory() (common.Address, error)
GetApplicationFactory is a free data retrieval call binding the contract method 0xe63d50ff.
Solidity: function getApplicationFactory() view returns(address)
func (*ISelfHostedApplicationFactoryCallerSession) GetAuthorityFactory ¶
func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactoryCallerSession) GetAuthorityFactory() (common.Address, error)
GetAuthorityFactory is a free data retrieval call binding the contract method 0x75689f83.
Solidity: function getAuthorityFactory() view returns(address)
type ISelfHostedApplicationFactoryFilterer ¶
type ISelfHostedApplicationFactoryFilterer struct {
// contains filtered or unexported fields
}
ISelfHostedApplicationFactoryFilterer is an auto generated log filtering Go binding around an Ethereum contract events.
func NewISelfHostedApplicationFactoryFilterer ¶
func NewISelfHostedApplicationFactoryFilterer(address common.Address, filterer bind.ContractFilterer) (*ISelfHostedApplicationFactoryFilterer, error)
NewISelfHostedApplicationFactoryFilterer creates a new log filterer instance of ISelfHostedApplicationFactory, bound to a specific deployed contract.
type ISelfHostedApplicationFactoryRaw ¶
type ISelfHostedApplicationFactoryRaw struct {
Contract *ISelfHostedApplicationFactory // Generic contract binding to access the raw methods on
}
ISelfHostedApplicationFactoryRaw is an auto generated low-level Go binding around an Ethereum contract.
func (*ISelfHostedApplicationFactoryRaw) Call ¶
func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactoryRaw) 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 (*ISelfHostedApplicationFactoryRaw) Transact ¶
func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactoryRaw) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (*types.Transaction, error)
Transact invokes the (paid) contract method with params as input values.
func (*ISelfHostedApplicationFactoryRaw) Transfer ¶
func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactoryRaw) 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 ISelfHostedApplicationFactorySession ¶
type ISelfHostedApplicationFactorySession struct { Contract *ISelfHostedApplicationFactory // 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 }
ISelfHostedApplicationFactorySession is an auto generated Go binding around an Ethereum contract, with pre-set call and transact options.
func (*ISelfHostedApplicationFactorySession) CalculateAddresses ¶
func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactorySession) CalculateAddresses(authorityOwner common.Address, epochLength *big.Int, appOwner common.Address, templateHash [32]byte, salt [32]byte) (common.Address, common.Address, error)
CalculateAddresses is a free data retrieval call binding the contract method 0xde4d53fd.
Solidity: function calculateAddresses(address authorityOwner, uint256 epochLength, address appOwner, bytes32 templateHash, bytes32 salt) view returns(address, address)
func (*ISelfHostedApplicationFactorySession) DeployContracts ¶
func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactorySession) DeployContracts(authorityOwner common.Address, epochLength *big.Int, appOwner common.Address, templateHash [32]byte, salt [32]byte) (*types.Transaction, error)
DeployContracts is a paid mutator transaction binding the contract method 0xffc643ca.
Solidity: function deployContracts(address authorityOwner, uint256 epochLength, address appOwner, bytes32 templateHash, bytes32 salt) returns(address, address)
func (*ISelfHostedApplicationFactorySession) GetApplicationFactory ¶
func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactorySession) GetApplicationFactory() (common.Address, error)
GetApplicationFactory is a free data retrieval call binding the contract method 0xe63d50ff.
Solidity: function getApplicationFactory() view returns(address)
func (*ISelfHostedApplicationFactorySession) GetAuthorityFactory ¶
func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactorySession) GetAuthorityFactory() (common.Address, error)
GetAuthorityFactory is a free data retrieval call binding the contract method 0x75689f83.
Solidity: function getAuthorityFactory() view returns(address)
type ISelfHostedApplicationFactoryTransactor ¶
type ISelfHostedApplicationFactoryTransactor struct {
// contains filtered or unexported fields
}
ISelfHostedApplicationFactoryTransactor is an auto generated write-only Go binding around an Ethereum contract.
func NewISelfHostedApplicationFactoryTransactor ¶
func NewISelfHostedApplicationFactoryTransactor(address common.Address, transactor bind.ContractTransactor) (*ISelfHostedApplicationFactoryTransactor, error)
NewISelfHostedApplicationFactoryTransactor creates a new write-only instance of ISelfHostedApplicationFactory, bound to a specific deployed contract.
func (*ISelfHostedApplicationFactoryTransactor) DeployContracts ¶
func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactoryTransactor) DeployContracts(opts *bind.TransactOpts, authorityOwner common.Address, epochLength *big.Int, appOwner common.Address, templateHash [32]byte, salt [32]byte) (*types.Transaction, error)
DeployContracts is a paid mutator transaction binding the contract method 0xffc643ca.
Solidity: function deployContracts(address authorityOwner, uint256 epochLength, address appOwner, bytes32 templateHash, bytes32 salt) returns(address, address)
type ISelfHostedApplicationFactoryTransactorRaw ¶
type ISelfHostedApplicationFactoryTransactorRaw struct {
Contract *ISelfHostedApplicationFactoryTransactor // Generic write-only contract binding to access the raw methods on
}
ISelfHostedApplicationFactoryTransactorRaw is an auto generated low-level write-only Go binding around an Ethereum contract.
func (*ISelfHostedApplicationFactoryTransactorRaw) Transact ¶
func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactoryTransactorRaw) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (*types.Transaction, error)
Transact invokes the (paid) contract method with params as input values.
func (*ISelfHostedApplicationFactoryTransactorRaw) Transfer ¶
func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactoryTransactorRaw) 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 ISelfHostedApplicationFactoryTransactorSession ¶
type ISelfHostedApplicationFactoryTransactorSession struct { Contract *ISelfHostedApplicationFactoryTransactor // Generic contract transactor binding to set the session for TransactOpts bind.TransactOpts // Transaction auth options to use throughout this session }
ISelfHostedApplicationFactoryTransactorSession is an auto generated write-only Go binding around an Ethereum contract, with pre-set transact options.
func (*ISelfHostedApplicationFactoryTransactorSession) DeployContracts ¶
func (_ISelfHostedApplicationFactory *ISelfHostedApplicationFactoryTransactorSession) DeployContracts(authorityOwner common.Address, epochLength *big.Int, appOwner common.Address, templateHash [32]byte, salt [32]byte) (*types.Transaction, error)
DeployContracts is a paid mutator transaction binding the contract method 0xffc643ca.
Solidity: function deployContracts(address authorityOwner, uint256 epochLength, address appOwner, bytes32 templateHash, bytes32 salt) returns(address, address)