Documentation
¶
Index ¶
- Constants
- type CCIPReceiverRegistration
- type CCIPReceiverRegistrationV2
- type ReceiverRegistered
- type ReceiverRegisteredV2
- type ReceiverRegistryContract
- func (c ReceiverRegistryContract) Encoder() ReceiverRegistryEncoder
- func (c ReceiverRegistryContract) FinishReceive(receiverAddress aptos.AccountAddress) (bind.ModuleInformation, string, []aptos.TypeTag, [][]byte, error)
- func (c ReceiverRegistryContract) IsRegisteredReceiver(opts *bind.CallOpts, receiverAddress aptos.AccountAddress) (bool, error)
- func (c ReceiverRegistryContract) IsRegisteredReceiverV2(opts *bind.CallOpts, receiverAddress aptos.AccountAddress) (bool, error)
- func (c ReceiverRegistryContract) TypeAndVersion(opts *bind.CallOpts) (string, error)
- type ReceiverRegistryEncoder
- type ReceiverRegistryEventsV2
- type ReceiverRegistryInterface
- type ReceiverRegistryState
Constants ¶
View Source
const ( E_ALREADY_REGISTERED uint64 = 1 E_UNKNOWN_RECEIVER uint64 = 2 E_UNKNOWN_PROOF_TYPE uint64 = 3 E_MISSING_INPUT uint64 = 4 E_NON_EMPTY_INPUT uint64 = 5 E_PROOF_TYPE_ACCOUNT_MISMATCH uint64 = 6 E_PROOF_TYPE_MODULE_MISMATCH uint64 = 7 E_UNAUTHORIZED uint64 = 8 )
Constants
View Source
const FunctionInfo = `` /* 133-byte string literal not displayed */
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CCIPReceiverRegistrationV2 ¶
type CCIPReceiverRegistrationV2 struct {
}
type ReceiverRegistered ¶
type ReceiverRegistered struct {
ReceiverAddress aptos.AccountAddress `move:"address"`
ReceiverModuleName []byte `move:"vector<u8>"`
}
type ReceiverRegisteredV2 ¶
type ReceiverRegisteredV2 struct {
ReceiverAddress aptos.AccountAddress `move:"address"`
}
type ReceiverRegistryContract ¶
type ReceiverRegistryContract struct {
*bind.BoundContract
// contains filtered or unexported fields
}
func (ReceiverRegistryContract) Encoder ¶
func (c ReceiverRegistryContract) Encoder() ReceiverRegistryEncoder
func (ReceiverRegistryContract) FinishReceive ¶
func (c ReceiverRegistryContract) FinishReceive(receiverAddress aptos.AccountAddress) (bind.ModuleInformation, string, []aptos.TypeTag, [][]byte, error)
func (ReceiverRegistryContract) IsRegisteredReceiver ¶
func (c ReceiverRegistryContract) IsRegisteredReceiver(opts *bind.CallOpts, receiverAddress aptos.AccountAddress) (bool, error)
func (ReceiverRegistryContract) IsRegisteredReceiverV2 ¶
func (c ReceiverRegistryContract) IsRegisteredReceiverV2(opts *bind.CallOpts, receiverAddress aptos.AccountAddress) (bool, error)
func (ReceiverRegistryContract) TypeAndVersion ¶
func (c ReceiverRegistryContract) TypeAndVersion(opts *bind.CallOpts) (string, error)
type ReceiverRegistryEncoder ¶
type ReceiverRegistryEncoder interface {
TypeAndVersion() (bind.ModuleInformation, string, []aptos.TypeTag, [][]byte, error)
IsRegisteredReceiver(receiverAddress aptos.AccountAddress) (bind.ModuleInformation, string, []aptos.TypeTag, [][]byte, error)
IsRegisteredReceiverV2(receiverAddress aptos.AccountAddress) (bind.ModuleInformation, string, []aptos.TypeTag, [][]byte, error)
FinishReceive(receiverAddress aptos.AccountAddress) (bind.ModuleInformation, string, []aptos.TypeTag, [][]byte, error)
}
type ReceiverRegistryEventsV2 ¶
type ReceiverRegistryEventsV2 struct {
}
type ReceiverRegistryInterface ¶
type ReceiverRegistryInterface interface {
TypeAndVersion(opts *bind.CallOpts) (string, error)
IsRegisteredReceiver(opts *bind.CallOpts, receiverAddress aptos.AccountAddress) (bool, error)
IsRegisteredReceiverV2(opts *bind.CallOpts, receiverAddress aptos.AccountAddress) (bool, error)
// Encoder returns the encoder implementation of this module.
Encoder() ReceiverRegistryEncoder
}
func NewReceiverRegistry ¶
func NewReceiverRegistry(address aptos.AccountAddress, client aptos.AptosRpcClient) ReceiverRegistryInterface
type ReceiverRegistryState ¶
type ReceiverRegistryState struct {
}
Click to show internal directories.
Click to hide internal directories.