types

package
v0.36.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 11, 2024 License: Apache-2.0 Imports: 61 Imported by: 0

Documentation

Overview

Package types is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const (
	ErrFDepositAddress  = "could not get the deposit address"
	ErrAddress          = "could not resolve address"
	ErrFKeyID           = "could not resolve key ID: %s\n"
	ErrFGatewayAddress  = "could not resolve gateway address"
	ErrFTokenAddress    = "could not resolve token address: %s\n"
	ErrFDeployTx        = "could not resolve deploy transaction: %s"
	ErrFSignedTx        = "could not get transaction with txID %s"
	ErrFBytecode        = "could not get the bytecodes for contract %s"
	ErrFSendTx          = "could not send the transaction with txID %s"
	ErrFSendCommandTx   = "could not send %s transaction executing command %s"
	ErrFDepositState    = "could not get the deposit transaction state"
	ErrFBatchedCommands = "could not get %s's batched commands %s"
)

module errors

View Source
const (
	// Token is the bytecode of the BurnableMintableCappedERC20 contract
	Token = "" /* 12398-byte string literal not displayed */
	// Burnable is the bytecode of the DepositHandler contract
	Burnable = "" /* 1682-byte string literal not displayed */
)
View Source
const (
	EventTypeNewChain                = "newChain"
	EventTypeGateway                 = "gateway"
	EventTypeDepositConfirmation     = "depositConfirmation"
	EventTypeTokenConfirmation       = "tokenConfirmation"
	EventTypeTransferKeyConfirmation = "transferKeyConfirmation"
	EventTypeLink                    = "link"
	EventTypeSign                    = "sign"
	EventTypeEventConfirmation       = "eventConfirmation"
)

Event types

View Source
const (
	AttributeKeyBatchedCommandsID  = "batchedCommandID"
	AttributeKeyChain              = "chain"
	AttributeKeySourceChain        = "sourceChain"
	AttributeKeyAddress            = "address"
	AttributeKeyPoll               = "poll"
	AttributeKeyTxID               = "txID"
	AttributeKeyAmount             = "amount"
	AttributeKeyDepositAddress     = "depositAddress"
	AttributeKeyTokenAddress       = "tokenAddress"
	AttributeKeyGatewayAddress     = "gatewayAddress"
	AttributeKeyConfHeight         = "confHeight"
	AttributeKeyAsset              = "asset"
	AttributeKeySymbol             = "symbol"
	AttributeKeyDestinationChain   = "destinationChain"
	AttributeKeyDestinationAddress = "destinationAddress"
	AttributeKeyCommandsID         = "commandID"
	AttributeKeyCommandsIDs        = "commandIDs"
	AttributeKeyTransferID         = "transferID"
	AttributeKeyEventType          = "eventType"
	AttributeKeyEventID            = "eventID"
	AttributeKeyKeyID              = "keyID"
	AttributeKeyMessageID          = "messageID"
)

Event attribute keys

View Source
const (
	AttributeValueStart   = "start"
	AttributeValueConfirm = "confirm"
)

Event attribute values

View Source
const (
	// ModuleName is the name of the module
	ModuleName = "evm"

	// ChainNamespace differentiated the key space for chains from the default evm namespace
	ChainNamespace = "chain"

	// StoreKey to be used when creating the KVStore
	StoreKey = ModuleName

	// RouterKey to be used for routing msgs
	RouterKey = ModuleName

	// QuerierRoute to be used for legacy query routing
	QuerierRoute = ModuleName

	// RestRoute to be used for rest routing
	RestRoute = ModuleName
)
View Source
const (
	Mainnet = "mainnet"
	Ropsten = "ropsten"
	Rinkeby = "rinkeby"
	Goerli  = "goerli"
	Ganache = "ganache"
)

Ethereum network labels

View Source
const (
	// BurnerCodeHashV1 is the hash of the bytecode of burner v1
	BurnerCodeHashV1 = "0x70be6eedec1d63b7cf8b9233615e4e408c99e0753be123b605aa5d53ed4a8670"
	// BurnerCodeHashV2 is the hash of the bytecode of burner v2
	BurnerCodeHashV2 = "0x49c166661e31e0bf5434d891dea1448dc35f6ecd54a0d88594df06e24effe7c2"
	// BurnerCodeHashV3 is the hash of the bytecode of burner v3
	BurnerCodeHashV3 = "0xa50851cafd39f2f61171c0c00a11bda820ed0958950df5a53ba11a047402351f"
	// BurnerCodeHashV4 is the hash of the bytecode of burner v4
	BurnerCodeHashV4 = "0x701d8db26f2d668fee8acf2346199a6b63b0173f212324d1c5a04b4d4de95666"
	// BurnerCodeHashV5 is the hash of the bytecode of burner v5
	BurnerCodeHashV5 = "0x9f217a79e864028081339cfcead3c3d1fe92e237fcbe9468d6bb4d1da7aa6352"
)

Burner code hashes

View Source
const (
	// DefaultRateLimitWindow is the default rate limit window, also used by the gateway
	DefaultRateLimitWindow = 6 * time.Hour
)
View Source
const TxLimit = 10

Variables

View Source
var (
	ErrEVM                    = sdkerrors.Register(ModuleName, 2, "bridge error")
	ErrRotationInProgress     = sdkerrors.Register(ModuleName, 3, "key rotation in progress")
	ErrSignCommandsInProgress = sdkerrors.Register(ModuleName, 4, "signing for command batch in progress")
)

module errors

View Source
var (
	ErrInvalidLengthEvents        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowEvents          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupEvents = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthGenesis        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowGenesis          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupGenesis = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	KeyChain               = []byte("chain")
	KeyConfirmationHeight  = []byte("confirmationHeight")
	KeyNetwork             = []byte("network")
	KeyRevoteLockingPeriod = []byte("revoteLockingPeriod")
	KeyNetworks            = []byte("networks")
	KeyVotingThreshold     = []byte("votingThreshold")
	KeyToken               = []byte("token")
	KeyBurnable            = []byte("burnable")
	KeyMinVoterCount       = []byte("minVoterCount")
	KeyCommandsGasLimit    = []byte("commandsGasLimit")
	KeyVotingGracePeriod   = []byte("votingGracePeriod")
	KeyEndBlockerLimit     = []byte("endBlockerLimit")
	KeyTransferLimit       = []byte("transferLimit")
)

Parameter keys

View Source
var (
	ErrInvalidLengthParams        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowParams          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupParams = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthQuery        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowQuery          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupQuery = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthTx        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowTx          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupTx = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthTypes        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowTypes          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupTypes = fmt.Errorf("proto: unexpected end of group")
)
View Source
var BatchedCommandsStatus_name = map[int32]string{
	0: "BATCHED_COMMANDS_STATUS_UNSPECIFIED",
	1: "BATCHED_COMMANDS_STATUS_SIGNING",
	2: "BATCHED_COMMANDS_STATUS_ABORTED",
	3: "BATCHED_COMMANDS_STATUS_SIGNED",
}
View Source
var BatchedCommandsStatus_value = map[string]int32{
	"BATCHED_COMMANDS_STATUS_UNSPECIFIED": 0,
	"BATCHED_COMMANDS_STATUS_SIGNING":     1,
	"BATCHED_COMMANDS_STATUS_ABORTED":     2,
	"BATCHED_COMMANDS_STATUS_SIGNED":      3,
}
View Source
var ChainStatus_name = map[int32]string{
	0: "CHAIN_STATUS_UNSPECIFIED",
	1: "CHAIN_STATUS_ACTIVATED",
	2: "CHAIN_STATUS_DEACTIVATED",
}
View Source
var ChainStatus_value = map[string]int32{
	"CHAIN_STATUS_UNSPECIFIED": 0,
	"CHAIN_STATUS_ACTIVATED":   1,
	"CHAIN_STATUS_DEACTIVATED": 2,
}
View Source
var CommandType_name = map[int32]string{
	0: "COMMAND_TYPE_UNSPECIFIED",
	1: "COMMAND_TYPE_MINT_TOKEN",
	2: "COMMAND_TYPE_DEPLOY_TOKEN",
	3: "COMMAND_TYPE_BURN_TOKEN",
	4: "COMMAND_TYPE_TRANSFER_OPERATORSHIP",
	5: "COMMAND_TYPE_APPROVE_CONTRACT_CALL_WITH_MINT",
	6: "COMMAND_TYPE_APPROVE_CONTRACT_CALL",
}
View Source
var CommandType_value = map[string]int32{
	"COMMAND_TYPE_UNSPECIFIED":                     0,
	"COMMAND_TYPE_MINT_TOKEN":                      1,
	"COMMAND_TYPE_DEPLOY_TOKEN":                    2,
	"COMMAND_TYPE_BURN_TOKEN":                      3,
	"COMMAND_TYPE_TRANSFER_OPERATORSHIP":           4,
	"COMMAND_TYPE_APPROVE_CONTRACT_CALL_WITH_MINT": 5,
	"COMMAND_TYPE_APPROVE_CONTRACT_CALL":           6,
}
View Source
var DepositStatus_name = map[int32]string{
	0: "DEPOSIT_STATUS_UNSPECIFIED",
	1: "DEPOSIT_STATUS_PENDING",
	2: "DEPOSIT_STATUS_CONFIRMED",
	3: "DEPOSIT_STATUS_BURNED",
}
View Source
var DepositStatus_value = map[string]int32{
	"DEPOSIT_STATUS_UNSPECIFIED": 0,
	"DEPOSIT_STATUS_PENDING":     1,
	"DEPOSIT_STATUS_CONFIRMED":   2,
	"DEPOSIT_STATUS_BURNED":      3,
}
View Source
var Event_Status_name = map[int32]string{
	0: "STATUS_UNSPECIFIED",
	1: "STATUS_CONFIRMED",
	2: "STATUS_COMPLETED",
	3: "STATUS_FAILED",
}
View Source
var Event_Status_value = map[string]int32{
	"STATUS_UNSPECIFIED": 0,
	"STATUS_CONFIRMED":   1,
	"STATUS_COMPLETED":   2,
	"STATUS_FAILED":      3,
}
View Source
var ModuleCdc = codec.NewAminoCodec(amino)

ModuleCdc defines the module codec

View Source
var NilToken = ERC20Token{}

NilToken is a nil erc20 token

NonExistentCommand can be used to represent a non-existent command

View Source
var SigType_name = map[int32]string{
	0: "SIG_TYPE_UNSPECIFIED",
	1: "SIG_TYPE_TX",
	2: "SIG_TYPE_COMMAND",
}
View Source
var SigType_value = map[string]int32{
	"SIG_TYPE_UNSPECIFIED": 0,
	"SIG_TYPE_TX":          1,
	"SIG_TYPE_COMMAND":     2,
}
View Source
var Status_name = map[int32]string{
	0: "STATUS_UNSPECIFIED",
	1: "STATUS_INITIALIZED",
	2: "STATUS_PENDING",
	4: "STATUS_CONFIRMED",
}
View Source
var Status_value = map[string]int32{
	"STATUS_UNSPECIFIED": 0,
	"STATUS_INITIALIZED": 1,
	"STATUS_PENDING":     2,
	"STATUS_CONFIRMED":   4,
}
View Source
var TokenType_name = map[int32]string{
	0: "TOKEN_TYPE_UNSPECIFIED",
	1: "TOKEN_TYPE_INTERNAL",
	2: "TOKEN_TYPE_EXTERNAL",
}
View Source
var TokenType_value = map[string]int32{
	"TOKEN_TYPE_UNSPECIFIED": 0,
	"TOKEN_TYPE_INTERNAL":    1,
	"TOKEN_TYPE_EXTERNAL":    2,
}
View Source
var ZeroAddress = Address{}

ZeroAddress represents an evm address with all bytes being zero

View Source
var ZeroHash = common.Hash{}

ZeroHash represents an empty 32-bytes hash

Functions

func CommandIDsToStrings added in v0.13.0

func CommandIDsToStrings(commandIDs []CommandID) []string

CommandIDsToStrings converts a slice of type CommandID to a slice of strings

func CreateExecuteDataMultisig

func CreateExecuteDataMultisig(data []byte, addresses []common.Address, weights []sdk.Uint, threshold sdk.Uint, signatures [][]byte) ([]byte, error)

CreateExecuteDataMultisig wraps the specific command data and includes the command signatures. Returns the data that goes into the data field of an EVM transaction

func DecodeApproveContractCallParams added in v0.27.0

func DecodeApproveContractCallParams(bz []byte) (string, string, common.Address, common.Hash, common.Hash, *big.Int)

DecodeApproveContractCallParams decodes the call arguments from the given contract call

func DecodeApproveContractCallWithMintParams added in v0.27.0

func DecodeApproveContractCallWithMintParams(bz []byte) (string, string, common.Address, common.Hash, string, *big.Int, common.Hash, *big.Int)

DecodeApproveContractCallWithMintParams decodes the call arguments from the given contract call

func DecodeBurnTokenParams added in v0.10.0

func DecodeBurnTokenParams(bz []byte) (string, common.Hash)

DecodeBurnTokenParams decodes the call arguments from the given contract call

func DecodeDeployTokenParams added in v0.10.0

func DecodeDeployTokenParams(bz []byte) (string, string, uint8, *big.Int, common.Address, sdk.Uint)

DecodeDeployTokenParams decodes the call arguments from the given contract call

func DecodeMintTokenParams added in v0.10.0

func DecodeMintTokenParams(bz []byte) (string, common.Address, *big.Int)

DecodeMintTokenParams decodes the call arguments from the given contract call

func DecodeTransferMultisigParams added in v0.10.0

func DecodeTransferMultisigParams(bz []byte) ([]common.Address, []*big.Int, *big.Int)

DecodeTransferMultisigParams decodes the call arguments from the given contract call

func GetMultisigAddressesAndWeights added in v0.21.0

func GetMultisigAddressesAndWeights(key multisig.Key) ([]common.Address, []sdk.Uint, sdk.Uint)

GetMultisigAddressesAndWeights coverts a multisig key to sorted addresses, weights and threshold

func GetSignHash

func GetSignHash(commandData []byte) common.Hash

GetSignHash returns the hash that needs to be signed so AxelarGateway accepts the given command

func IsEVMChain added in v0.19.2

func IsEVMChain(chain nexus.Chain) bool

IsEVMChain returns true if a chain is an EVM chain

func KeyTable

func KeyTable() params.KeyTable

KeyTable returns a subspace.KeyTable that has registered all parameter types in this module's parameter set

func KeysToAddresses

func KeysToAddresses(keys ...ecdsa.PublicKey) []common.Address

KeysToAddresses converts a slice of ECDSA public keys to evm addresses

func ParseMultisigKey added in v0.21.0

func ParseMultisigKey(key multisig.Key) (map[string]sdk.Uint, sdk.Uint)

ParseMultisigKey parses the given multisig key and returns the weight for each particpant evm address and the threshold

func RegisterInterfaces

func RegisterInterfaces(registry cdctypes.InterfaceRegistry)

RegisterInterfaces registers types and interfaces with the given registry

func RegisterLegacyAminoCodec

func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino)

RegisterLegacyAminoCodec registers concrete types on codec

func RegisterMsgServiceHandler

func RegisterMsgServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterMsgServiceHandler registers the http handlers for service MsgService to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterMsgServiceHandlerClient

func RegisterMsgServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client MsgServiceClient) error

RegisterMsgServiceHandlerClient registers the http handlers for service MsgService to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "MsgServiceClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "MsgServiceClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "MsgServiceClient" to call the correct interceptors.

func RegisterMsgServiceHandlerFromEndpoint

func RegisterMsgServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterMsgServiceHandlerFromEndpoint is same as RegisterMsgServiceHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterMsgServiceHandlerServer

func RegisterMsgServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server MsgServiceServer) error

RegisterMsgServiceHandlerServer registers the http handlers for service MsgService to "mux". UnaryRPC :call MsgServiceServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features (such as grpc.SendHeader, etc) to stop working. Consider using RegisterMsgServiceHandlerFromEndpoint instead.

func RegisterMsgServiceServer

func RegisterMsgServiceServer(s grpc1.Server, srv MsgServiceServer)

func RegisterQueryServiceHandler added in v0.13.3

func RegisterQueryServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterQueryServiceHandler registers the http handlers for service QueryService to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterQueryServiceHandlerClient added in v0.13.3

func RegisterQueryServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client QueryServiceClient) error

RegisterQueryServiceHandlerClient registers the http handlers for service QueryService to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "QueryServiceClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "QueryServiceClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "QueryServiceClient" to call the correct interceptors.

func RegisterQueryServiceHandlerFromEndpoint added in v0.13.3

func RegisterQueryServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterQueryServiceHandlerFromEndpoint is same as RegisterQueryServiceHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterQueryServiceHandlerServer added in v0.13.3

func RegisterQueryServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server QueryServiceServer) error

RegisterQueryServiceHandlerServer registers the http handlers for service QueryService to "mux". UnaryRPC :call QueryServiceServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features (such as grpc.SendHeader, etc) to stop working. Consider using RegisterQueryServiceHandlerFromEndpoint instead.

func RegisterQueryServiceServer added in v0.13.3

func RegisterQueryServiceServer(s grpc1.Server, srv QueryServiceServer)

func StrictDecode added in v0.17.0

func StrictDecode(arguments abi.Arguments, bz []byte) ([]interface{}, error)

StrictDecode performs strict decode on evm encoded data, e.g. no byte can be left after the decoding

Types

type AddChainRequest

type AddChainRequest struct {
	Sender  github_com_cosmos_cosmos_sdk_types.AccAddress                   `protobuf:"bytes,1,opt,name=sender,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"sender,omitempty"`
	Name    github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName ``                                                                                                                             /* 134-byte string literal not displayed */
	KeyType exported.KeyType                                                `protobuf:"varint,4,opt,name=key_type,json=keyType,proto3,enum=axelar.tss.exported.v1beta1.KeyType" json:"key_type,omitempty"` // Deprecated: Do not use.
	Params  Params                                                          `protobuf:"bytes,5,opt,name=params,proto3,customtype=Params" json:"params"`
}

func NewAddChainRequest

func NewAddChainRequest(sender sdk.AccAddress, name string, params Params) *AddChainRequest

NewAddChainRequest is the constructor for NewAddChainRequest

func (*AddChainRequest) Descriptor

func (*AddChainRequest) Descriptor() ([]byte, []int)

func (AddChainRequest) GetSignBytes

func (m AddChainRequest) GetSignBytes() []byte

GetSignBytes returns the message bytes that need to be signed

func (AddChainRequest) GetSigners

func (m AddChainRequest) GetSigners() []sdk.AccAddress

GetSigners returns the set of signers for this message

func (*AddChainRequest) Marshal

func (m *AddChainRequest) Marshal() (dAtA []byte, err error)

func (*AddChainRequest) MarshalTo

func (m *AddChainRequest) MarshalTo(dAtA []byte) (int, error)

func (*AddChainRequest) MarshalToSizedBuffer

func (m *AddChainRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*AddChainRequest) ProtoMessage

func (*AddChainRequest) ProtoMessage()

func (*AddChainRequest) Reset

func (m *AddChainRequest) Reset()

func (AddChainRequest) Route

func (m AddChainRequest) Route() string

Route returns the route for this message

func (*AddChainRequest) Size

func (m *AddChainRequest) Size() (n int)

func (*AddChainRequest) String

func (m *AddChainRequest) String() string

func (AddChainRequest) Type

func (m AddChainRequest) Type() string

Type returns the type of the message

func (*AddChainRequest) Unmarshal

func (m *AddChainRequest) Unmarshal(dAtA []byte) error

func (AddChainRequest) ValidateBasic

func (m AddChainRequest) ValidateBasic() error

ValidateBasic executes a stateless message validation

func (*AddChainRequest) XXX_DiscardUnknown

func (m *AddChainRequest) XXX_DiscardUnknown()

func (*AddChainRequest) XXX_Marshal

func (m *AddChainRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AddChainRequest) XXX_Merge

func (m *AddChainRequest) XXX_Merge(src proto.Message)

func (*AddChainRequest) XXX_Size

func (m *AddChainRequest) XXX_Size() int

func (*AddChainRequest) XXX_Unmarshal

func (m *AddChainRequest) XXX_Unmarshal(b []byte) error

type AddChainResponse

type AddChainResponse struct {
}

func (*AddChainResponse) Descriptor

func (*AddChainResponse) Descriptor() ([]byte, []int)

func (*AddChainResponse) Marshal

func (m *AddChainResponse) Marshal() (dAtA []byte, err error)

func (*AddChainResponse) MarshalTo

func (m *AddChainResponse) MarshalTo(dAtA []byte) (int, error)

func (*AddChainResponse) MarshalToSizedBuffer

func (m *AddChainResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*AddChainResponse) ProtoMessage

func (*AddChainResponse) ProtoMessage()

func (*AddChainResponse) Reset

func (m *AddChainResponse) Reset()

func (*AddChainResponse) Size

func (m *AddChainResponse) Size() (n int)

func (*AddChainResponse) String

func (m *AddChainResponse) String() string

func (*AddChainResponse) Unmarshal

func (m *AddChainResponse) Unmarshal(dAtA []byte) error

func (*AddChainResponse) XXX_DiscardUnknown

func (m *AddChainResponse) XXX_DiscardUnknown()

func (*AddChainResponse) XXX_Marshal

func (m *AddChainResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AddChainResponse) XXX_Merge

func (m *AddChainResponse) XXX_Merge(src proto.Message)

func (*AddChainResponse) XXX_Size

func (m *AddChainResponse) XXX_Size() int

func (*AddChainResponse) XXX_Unmarshal

func (m *AddChainResponse) XXX_Unmarshal(b []byte) error

type Address

type Address common.Address

Address wraps EVM Address

func (Address) Bytes

func (a Address) Bytes() []byte

Bytes returns the actual byte array of the address

func (Address) Hex

func (a Address) Hex() string

Hex returns an EIP55-compliant hex string representation of the address

func (Address) IsZeroAddress added in v0.14.0

func (a Address) IsZeroAddress() bool

IsZeroAddress returns true if the address contains only zero bytes; false otherwise

func (Address) Marshal

func (a Address) Marshal() ([]byte, error)

Marshal implements codec.ProtoMarshaler

func (Address) MarshalTo

func (a Address) MarshalTo(data []byte) (n int, err error)

MarshalTo implements codec.ProtoMarshaler

func (Address) Size

func (a Address) Size() int

Size implements codec.ProtoMarshaler

func (*Address) Unmarshal

func (a *Address) Unmarshal(data []byte) error

Unmarshal implements codec.ProtoMarshaler

type Asset

type Asset struct {
	Chain github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	Name  string                                                          `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
}

func NewAsset

func NewAsset(chain, name string) Asset

NewAsset returns a new Asset instance

func (*Asset) Descriptor

func (*Asset) Descriptor() ([]byte, []int)

func (*Asset) Marshal

func (m *Asset) Marshal() (dAtA []byte, err error)

func (*Asset) MarshalTo

func (m *Asset) MarshalTo(dAtA []byte) (int, error)

func (*Asset) MarshalToSizedBuffer

func (m *Asset) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Asset) ProtoMessage

func (*Asset) ProtoMessage()

func (*Asset) Reset

func (m *Asset) Reset()

func (*Asset) Size

func (m *Asset) Size() (n int)

func (*Asset) String

func (m *Asset) String() string

func (*Asset) Unmarshal

func (m *Asset) Unmarshal(dAtA []byte) error

func (Asset) Validate

func (m Asset) Validate() error

Validate ensures that all fields are filled with sensible values

func (*Asset) XXX_DiscardUnknown

func (m *Asset) XXX_DiscardUnknown()

func (*Asset) XXX_Marshal

func (m *Asset) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Asset) XXX_Merge

func (m *Asset) XXX_Merge(src proto.Message)

func (*Asset) XXX_Size

func (m *Asset) XXX_Size() int

func (*Asset) XXX_Unmarshal

func (m *Asset) XXX_Unmarshal(b []byte) error

type BaseKeeper

type BaseKeeper interface {
	Logger(ctx sdk.Context) log.Logger

	CreateChain(ctx sdk.Context, params Params) error
	ForChain(ctx sdk.Context, chain nexus.ChainName) (ChainKeeper, error)
}

BaseKeeper is implemented by this module's base keeper

type BatchedCommandsRequest added in v0.16.0

type BatchedCommandsRequest struct {
	Chain string `protobuf:"bytes,1,opt,name=chain,proto3" json:"chain,omitempty"`
	// id defines an optional id for the commandsbatch. If not specified the
	// latest will be returned
	Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
}

func (*BatchedCommandsRequest) Descriptor added in v0.16.0

func (*BatchedCommandsRequest) Descriptor() ([]byte, []int)

func (*BatchedCommandsRequest) Marshal added in v0.16.0

func (m *BatchedCommandsRequest) Marshal() (dAtA []byte, err error)

func (*BatchedCommandsRequest) MarshalTo added in v0.16.0

func (m *BatchedCommandsRequest) MarshalTo(dAtA []byte) (int, error)

func (*BatchedCommandsRequest) MarshalToSizedBuffer added in v0.16.0

func (m *BatchedCommandsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*BatchedCommandsRequest) ProtoMessage added in v0.16.0

func (*BatchedCommandsRequest) ProtoMessage()

func (*BatchedCommandsRequest) Reset added in v0.16.0

func (m *BatchedCommandsRequest) Reset()

func (*BatchedCommandsRequest) Size added in v0.16.0

func (m *BatchedCommandsRequest) Size() (n int)

func (*BatchedCommandsRequest) String added in v0.16.0

func (m *BatchedCommandsRequest) String() string

func (*BatchedCommandsRequest) Unmarshal added in v0.16.0

func (m *BatchedCommandsRequest) Unmarshal(dAtA []byte) error

func (*BatchedCommandsRequest) XXX_DiscardUnknown added in v0.16.0

func (m *BatchedCommandsRequest) XXX_DiscardUnknown()

func (*BatchedCommandsRequest) XXX_Marshal added in v0.16.0

func (m *BatchedCommandsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BatchedCommandsRequest) XXX_Merge added in v0.16.0

func (m *BatchedCommandsRequest) XXX_Merge(src proto.Message)

func (*BatchedCommandsRequest) XXX_Size added in v0.16.0

func (m *BatchedCommandsRequest) XXX_Size() int

func (*BatchedCommandsRequest) XXX_Unmarshal added in v0.16.0

func (m *BatchedCommandsRequest) XXX_Unmarshal(b []byte) error

type BatchedCommandsResponse added in v0.16.0

type BatchedCommandsResponse struct {
	ID                    string                                                         `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Data                  string                                                         `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
	Status                BatchedCommandsStatus                                          `protobuf:"varint,3,opt,name=status,proto3,enum=axelar.evm.v1beta1.BatchedCommandsStatus" json:"status,omitempty"`
	KeyID                 github_com_axelarnetwork_axelar_core_x_multisig_exported.KeyID `` /* 148-byte string literal not displayed */
	ExecuteData           string                                                         `protobuf:"bytes,6,opt,name=execute_data,json=executeData,proto3" json:"execute_data,omitempty"`
	PrevBatchedCommandsID string                                                         `` /* 128-byte string literal not displayed */
	CommandIDs            []string                                                       `protobuf:"bytes,8,rep,name=command_ids,json=commandIds,proto3" json:"command_ids,omitempty"`
	Proof                 *Proof                                                         `protobuf:"bytes,9,opt,name=proof,proto3" json:"proof,omitempty"`
}

func (*BatchedCommandsResponse) Descriptor added in v0.16.0

func (*BatchedCommandsResponse) Descriptor() ([]byte, []int)

func (*BatchedCommandsResponse) Marshal added in v0.16.0

func (m *BatchedCommandsResponse) Marshal() (dAtA []byte, err error)

func (*BatchedCommandsResponse) MarshalTo added in v0.16.0

func (m *BatchedCommandsResponse) MarshalTo(dAtA []byte) (int, error)

func (*BatchedCommandsResponse) MarshalToSizedBuffer added in v0.16.0

func (m *BatchedCommandsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*BatchedCommandsResponse) ProtoMessage added in v0.16.0

func (*BatchedCommandsResponse) ProtoMessage()

func (*BatchedCommandsResponse) Reset added in v0.16.0

func (m *BatchedCommandsResponse) Reset()

func (*BatchedCommandsResponse) Size added in v0.16.0

func (m *BatchedCommandsResponse) Size() (n int)

func (*BatchedCommandsResponse) String added in v0.16.0

func (m *BatchedCommandsResponse) String() string

func (*BatchedCommandsResponse) Unmarshal added in v0.16.0

func (m *BatchedCommandsResponse) Unmarshal(dAtA []byte) error

func (*BatchedCommandsResponse) XXX_DiscardUnknown added in v0.16.0

func (m *BatchedCommandsResponse) XXX_DiscardUnknown()

func (*BatchedCommandsResponse) XXX_Marshal added in v0.16.0

func (m *BatchedCommandsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BatchedCommandsResponse) XXX_Merge added in v0.16.0

func (m *BatchedCommandsResponse) XXX_Merge(src proto.Message)

func (*BatchedCommandsResponse) XXX_Size added in v0.16.0

func (m *BatchedCommandsResponse) XXX_Size() int

func (*BatchedCommandsResponse) XXX_Unmarshal added in v0.16.0

func (m *BatchedCommandsResponse) XXX_Unmarshal(b []byte) error

type BatchedCommandsStatus

type BatchedCommandsStatus int32
const (
	BatchNonExistent BatchedCommandsStatus = 0
	BatchSigning     BatchedCommandsStatus = 1
	BatchAborted     BatchedCommandsStatus = 2
	BatchSigned      BatchedCommandsStatus = 3
)

func (BatchedCommandsStatus) EnumDescriptor

func (BatchedCommandsStatus) EnumDescriptor() ([]byte, []int)

func (BatchedCommandsStatus) String

func (x BatchedCommandsStatus) String() string

type BurnCommand added in v0.25.0

type BurnCommand struct {
	Chain            github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	CommandID        CommandID                                                       `protobuf:"bytes,2,opt,name=command_id,json=commandId,proto3,customtype=CommandID" json:"command_id"`
	DestinationChain github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 182-byte string literal not displayed */
	DepositAddress   string                                                          `protobuf:"bytes,4,opt,name=deposit_address,json=depositAddress,proto3" json:"deposit_address,omitempty"`
	Asset            string                                                          `protobuf:"bytes,5,opt,name=asset,proto3" json:"asset,omitempty"`
}

func (*BurnCommand) Descriptor added in v0.25.0

func (*BurnCommand) Descriptor() ([]byte, []int)

func (*BurnCommand) GetAsset added in v0.25.0

func (m *BurnCommand) GetAsset() string

func (*BurnCommand) GetChain added in v0.25.0

func (*BurnCommand) GetDepositAddress added in v0.25.0

func (m *BurnCommand) GetDepositAddress() string

func (*BurnCommand) GetDestinationChain added in v0.25.0

func (*BurnCommand) Marshal added in v0.25.0

func (m *BurnCommand) Marshal() (dAtA []byte, err error)

func (*BurnCommand) MarshalTo added in v0.25.0

func (m *BurnCommand) MarshalTo(dAtA []byte) (int, error)

func (*BurnCommand) MarshalToSizedBuffer added in v0.25.0

func (m *BurnCommand) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*BurnCommand) ProtoMessage added in v0.25.0

func (*BurnCommand) ProtoMessage()

func (*BurnCommand) Reset added in v0.25.0

func (m *BurnCommand) Reset()

func (*BurnCommand) Size added in v0.25.0

func (m *BurnCommand) Size() (n int)

func (*BurnCommand) String added in v0.25.0

func (m *BurnCommand) String() string

func (*BurnCommand) Unmarshal added in v0.25.0

func (m *BurnCommand) Unmarshal(dAtA []byte) error

func (*BurnCommand) XXX_DiscardUnknown added in v0.25.0

func (m *BurnCommand) XXX_DiscardUnknown()

func (*BurnCommand) XXX_Marshal added in v0.25.0

func (m *BurnCommand) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BurnCommand) XXX_Merge added in v0.25.0

func (m *BurnCommand) XXX_Merge(src proto.Message)

func (*BurnCommand) XXX_MessageName added in v0.33.1

func (*BurnCommand) XXX_MessageName() string

func (*BurnCommand) XXX_Size added in v0.25.0

func (m *BurnCommand) XXX_Size() int

func (*BurnCommand) XXX_Unmarshal added in v0.25.0

func (m *BurnCommand) XXX_Unmarshal(b []byte) error

type BurnerInfo

type BurnerInfo struct {
	BurnerAddress    Address                                                         `protobuf:"bytes,1,opt,name=burner_address,json=burnerAddress,proto3,customtype=Address" json:"burner_address"`
	TokenAddress     Address                                                         `protobuf:"bytes,2,opt,name=token_address,json=tokenAddress,proto3,customtype=Address" json:"token_address"`
	DestinationChain github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 182-byte string literal not displayed */
	Symbol           string                                                          `protobuf:"bytes,4,opt,name=symbol,proto3" json:"symbol,omitempty"`
	Asset            string                                                          `protobuf:"bytes,5,opt,name=asset,proto3" json:"asset,omitempty"`
	Salt             Hash                                                            `protobuf:"bytes,6,opt,name=salt,proto3,customtype=Hash" json:"salt"`
}

BurnerInfo describes information required to burn token at an burner address that is deposited by an user

func (*BurnerInfo) Descriptor

func (*BurnerInfo) Descriptor() ([]byte, []int)

func (*BurnerInfo) Marshal

func (m *BurnerInfo) Marshal() (dAtA []byte, err error)

func (*BurnerInfo) MarshalTo

func (m *BurnerInfo) MarshalTo(dAtA []byte) (int, error)

func (*BurnerInfo) MarshalToSizedBuffer

func (m *BurnerInfo) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*BurnerInfo) ProtoMessage

func (*BurnerInfo) ProtoMessage()

func (*BurnerInfo) Reset

func (m *BurnerInfo) Reset()

func (*BurnerInfo) Size

func (m *BurnerInfo) Size() (n int)

func (*BurnerInfo) String

func (m *BurnerInfo) String() string

func (*BurnerInfo) Unmarshal

func (m *BurnerInfo) Unmarshal(dAtA []byte) error

func (*BurnerInfo) ValidateBasic added in v0.9.0

func (m *BurnerInfo) ValidateBasic() error

ValidateBasic does stateless validation of the object

func (*BurnerInfo) XXX_DiscardUnknown

func (m *BurnerInfo) XXX_DiscardUnknown()

func (*BurnerInfo) XXX_Marshal

func (m *BurnerInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BurnerInfo) XXX_Merge

func (m *BurnerInfo) XXX_Merge(src proto.Message)

func (*BurnerInfo) XXX_Size

func (m *BurnerInfo) XXX_Size() int

func (*BurnerInfo) XXX_Unmarshal

func (m *BurnerInfo) XXX_Unmarshal(b []byte) error

type BurnerInfoRequest added in v0.13.3

type BurnerInfoRequest struct {
	Address Address `protobuf:"bytes,1,opt,name=address,proto3,customtype=Address" json:"address"`
}

func (*BurnerInfoRequest) Descriptor added in v0.13.3

func (*BurnerInfoRequest) Descriptor() ([]byte, []int)

func (*BurnerInfoRequest) Marshal added in v0.13.3

func (m *BurnerInfoRequest) Marshal() (dAtA []byte, err error)

func (*BurnerInfoRequest) MarshalTo added in v0.13.3

func (m *BurnerInfoRequest) MarshalTo(dAtA []byte) (int, error)

func (*BurnerInfoRequest) MarshalToSizedBuffer added in v0.13.3

func (m *BurnerInfoRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*BurnerInfoRequest) ProtoMessage added in v0.13.3

func (*BurnerInfoRequest) ProtoMessage()

func (*BurnerInfoRequest) Reset added in v0.13.3

func (m *BurnerInfoRequest) Reset()

func (*BurnerInfoRequest) Size added in v0.13.3

func (m *BurnerInfoRequest) Size() (n int)

func (*BurnerInfoRequest) String added in v0.13.3

func (m *BurnerInfoRequest) String() string

func (*BurnerInfoRequest) Unmarshal added in v0.13.3

func (m *BurnerInfoRequest) Unmarshal(dAtA []byte) error

func (*BurnerInfoRequest) XXX_DiscardUnknown added in v0.13.3

func (m *BurnerInfoRequest) XXX_DiscardUnknown()

func (*BurnerInfoRequest) XXX_Marshal added in v0.13.3

func (m *BurnerInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BurnerInfoRequest) XXX_Merge added in v0.13.3

func (m *BurnerInfoRequest) XXX_Merge(src proto.Message)

func (*BurnerInfoRequest) XXX_Size added in v0.13.3

func (m *BurnerInfoRequest) XXX_Size() int

func (*BurnerInfoRequest) XXX_Unmarshal added in v0.13.3

func (m *BurnerInfoRequest) XXX_Unmarshal(b []byte) error

type BurnerInfoResponse added in v0.13.3

type BurnerInfoResponse struct {
	Chain      github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	BurnerInfo *BurnerInfo                                                     `protobuf:"bytes,2,opt,name=burner_info,json=burnerInfo,proto3" json:"burner_info,omitempty"`
}

func (*BurnerInfoResponse) Descriptor added in v0.13.3

func (*BurnerInfoResponse) Descriptor() ([]byte, []int)

func (*BurnerInfoResponse) Marshal added in v0.13.3

func (m *BurnerInfoResponse) Marshal() (dAtA []byte, err error)

func (*BurnerInfoResponse) MarshalTo added in v0.13.3

func (m *BurnerInfoResponse) MarshalTo(dAtA []byte) (int, error)

func (*BurnerInfoResponse) MarshalToSizedBuffer added in v0.13.3

func (m *BurnerInfoResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*BurnerInfoResponse) ProtoMessage added in v0.13.3

func (*BurnerInfoResponse) ProtoMessage()

func (*BurnerInfoResponse) Reset added in v0.13.3

func (m *BurnerInfoResponse) Reset()

func (*BurnerInfoResponse) Size added in v0.13.3

func (m *BurnerInfoResponse) Size() (n int)

func (*BurnerInfoResponse) String added in v0.13.3

func (m *BurnerInfoResponse) String() string

func (*BurnerInfoResponse) Unmarshal added in v0.13.3

func (m *BurnerInfoResponse) Unmarshal(dAtA []byte) error

func (*BurnerInfoResponse) XXX_DiscardUnknown added in v0.13.3

func (m *BurnerInfoResponse) XXX_DiscardUnknown()

func (*BurnerInfoResponse) XXX_Marshal added in v0.13.3

func (m *BurnerInfoResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BurnerInfoResponse) XXX_Merge added in v0.13.3

func (m *BurnerInfoResponse) XXX_Merge(src proto.Message)

func (*BurnerInfoResponse) XXX_Size added in v0.13.3

func (m *BurnerInfoResponse) XXX_Size() int

func (*BurnerInfoResponse) XXX_Unmarshal added in v0.13.3

func (m *BurnerInfoResponse) XXX_Unmarshal(b []byte) error

type BytecodeRequest added in v0.16.0

type BytecodeRequest struct {
	Chain    string `protobuf:"bytes,1,opt,name=chain,proto3" json:"chain,omitempty"`
	Contract string `protobuf:"bytes,2,opt,name=contract,proto3" json:"contract,omitempty"`
}

func (*BytecodeRequest) Descriptor added in v0.16.0

func (*BytecodeRequest) Descriptor() ([]byte, []int)

func (*BytecodeRequest) Marshal added in v0.16.0

func (m *BytecodeRequest) Marshal() (dAtA []byte, err error)

func (*BytecodeRequest) MarshalTo added in v0.16.0

func (m *BytecodeRequest) MarshalTo(dAtA []byte) (int, error)

func (*BytecodeRequest) MarshalToSizedBuffer added in v0.16.0

func (m *BytecodeRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*BytecodeRequest) ProtoMessage added in v0.16.0

func (*BytecodeRequest) ProtoMessage()

func (*BytecodeRequest) Reset added in v0.16.0

func (m *BytecodeRequest) Reset()

func (*BytecodeRequest) Size added in v0.16.0

func (m *BytecodeRequest) Size() (n int)

func (*BytecodeRequest) String added in v0.16.0

func (m *BytecodeRequest) String() string

func (*BytecodeRequest) Unmarshal added in v0.16.0

func (m *BytecodeRequest) Unmarshal(dAtA []byte) error

func (*BytecodeRequest) XXX_DiscardUnknown added in v0.16.0

func (m *BytecodeRequest) XXX_DiscardUnknown()

func (*BytecodeRequest) XXX_Marshal added in v0.16.0

func (m *BytecodeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BytecodeRequest) XXX_Merge added in v0.16.0

func (m *BytecodeRequest) XXX_Merge(src proto.Message)

func (*BytecodeRequest) XXX_Size added in v0.16.0

func (m *BytecodeRequest) XXX_Size() int

func (*BytecodeRequest) XXX_Unmarshal added in v0.16.0

func (m *BytecodeRequest) XXX_Unmarshal(b []byte) error

type BytecodeResponse added in v0.16.0

type BytecodeResponse struct {
	Bytecode string `protobuf:"bytes,1,opt,name=bytecode,proto3" json:"bytecode,omitempty"`
}

func (*BytecodeResponse) Descriptor added in v0.16.0

func (*BytecodeResponse) Descriptor() ([]byte, []int)

func (*BytecodeResponse) Marshal added in v0.16.0

func (m *BytecodeResponse) Marshal() (dAtA []byte, err error)

func (*BytecodeResponse) MarshalTo added in v0.16.0

func (m *BytecodeResponse) MarshalTo(dAtA []byte) (int, error)

func (*BytecodeResponse) MarshalToSizedBuffer added in v0.16.0

func (m *BytecodeResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*BytecodeResponse) ProtoMessage added in v0.16.0

func (*BytecodeResponse) ProtoMessage()

func (*BytecodeResponse) Reset added in v0.16.0

func (m *BytecodeResponse) Reset()

func (*BytecodeResponse) Size added in v0.16.0

func (m *BytecodeResponse) Size() (n int)

func (*BytecodeResponse) String added in v0.16.0

func (m *BytecodeResponse) String() string

func (*BytecodeResponse) Unmarshal added in v0.16.0

func (m *BytecodeResponse) Unmarshal(dAtA []byte) error

func (*BytecodeResponse) XXX_DiscardUnknown added in v0.16.0

func (m *BytecodeResponse) XXX_DiscardUnknown()

func (*BytecodeResponse) XXX_Marshal added in v0.16.0

func (m *BytecodeResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BytecodeResponse) XXX_Merge added in v0.16.0

func (m *BytecodeResponse) XXX_Merge(src proto.Message)

func (*BytecodeResponse) XXX_Size added in v0.16.0

func (m *BytecodeResponse) XXX_Size() int

func (*BytecodeResponse) XXX_Unmarshal added in v0.16.0

func (m *BytecodeResponse) XXX_Unmarshal(b []byte) error

type ChainAdded added in v0.21.0

type ChainAdded struct {
	Chain github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
}

func (*ChainAdded) Descriptor added in v0.21.0

func (*ChainAdded) Descriptor() ([]byte, []int)

func (*ChainAdded) GetChain added in v0.21.0

func (*ChainAdded) Marshal added in v0.21.0

func (m *ChainAdded) Marshal() (dAtA []byte, err error)

func (*ChainAdded) MarshalTo added in v0.21.0

func (m *ChainAdded) MarshalTo(dAtA []byte) (int, error)

func (*ChainAdded) MarshalToSizedBuffer added in v0.21.0

func (m *ChainAdded) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ChainAdded) ProtoMessage added in v0.21.0

func (*ChainAdded) ProtoMessage()

func (*ChainAdded) Reset added in v0.21.0

func (m *ChainAdded) Reset()

func (*ChainAdded) Size added in v0.21.0

func (m *ChainAdded) Size() (n int)

func (*ChainAdded) String added in v0.21.0

func (m *ChainAdded) String() string

func (*ChainAdded) Unmarshal added in v0.21.0

func (m *ChainAdded) Unmarshal(dAtA []byte) error

func (*ChainAdded) XXX_DiscardUnknown added in v0.21.0

func (m *ChainAdded) XXX_DiscardUnknown()

func (*ChainAdded) XXX_Marshal added in v0.21.0

func (m *ChainAdded) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ChainAdded) XXX_Merge added in v0.21.0

func (m *ChainAdded) XXX_Merge(src proto.Message)

func (*ChainAdded) XXX_MessageName added in v0.33.1

func (*ChainAdded) XXX_MessageName() string

func (*ChainAdded) XXX_Size added in v0.21.0

func (m *ChainAdded) XXX_Size() int

func (*ChainAdded) XXX_Unmarshal added in v0.21.0

func (m *ChainAdded) XXX_Unmarshal(b []byte) error

type ChainKeeper

type ChainKeeper interface {
	Logger(ctx sdk.Context) log.Logger

	GetName() nexus.ChainName

	GetParams(ctx sdk.Context) Params

	GetNetwork(ctx sdk.Context) string
	GetChainID(ctx sdk.Context) (sdk.Int, bool)
	GetRequiredConfirmationHeight(ctx sdk.Context) uint64
	GetRevoteLockingPeriod(ctx sdk.Context) int64
	GetBurnerByteCode(ctx sdk.Context) []byte
	GetTokenByteCode(ctx sdk.Context) []byte
	SetGateway(ctx sdk.Context, address Address)
	GetGatewayAddress(ctx sdk.Context) (Address, bool)
	// Deprecated: Use GetDeposit instead
	GetLegacyDeposit(ctx sdk.Context, txID Hash, burnerAddr Address) (ERC20Deposit, DepositStatus, bool)
	GetDeposit(ctx sdk.Context, txID Hash, logIndex uint64) (ERC20Deposit, DepositStatus, bool)
	GetBurnerInfo(ctx sdk.Context, address Address) *BurnerInfo
	GenerateSalt(ctx sdk.Context, recipient string) Hash
	GetBurnerAddress(ctx sdk.Context, token ERC20Token, salt Hash, gatewayAddr Address) (Address, error)
	SetBurnerInfo(ctx sdk.Context, burnerInfo BurnerInfo)
	DeleteDeposit(ctx sdk.Context, deposit ERC20Deposit)
	SetDeposit(ctx sdk.Context, deposit ERC20Deposit, state DepositStatus)
	GetConfirmedDepositsPaginated(ctx sdk.Context, pageRequest *query.PageRequest) ([]ERC20Deposit, *query.PageResponse, error)
	GetNetworkByID(ctx sdk.Context, id sdk.Int) (string, bool)
	GetChainIDByNetwork(ctx sdk.Context, network string) (sdk.Int, bool)
	GetVotingThreshold(ctx sdk.Context) utils.Threshold
	GetMinVoterCount(ctx sdk.Context) int64

	CreateERC20Token(ctx sdk.Context, asset string, details TokenDetails, address Address) (ERC20Token, error)
	GetERC20TokenByAsset(ctx sdk.Context, asset string) ERC20Token
	GetERC20TokenBySymbol(ctx sdk.Context, symbol string) ERC20Token
	GetERC20TokenByAddress(ctx sdk.Context, address Address) ERC20Token
	GetTokens(ctx sdk.Context) []ERC20Token

	EnqueueCommand(ctx sdk.Context, cmd Command) error
	GetCommand(ctx sdk.Context, id CommandID) (Command, bool)
	GetPendingCommands(ctx sdk.Context) []Command
	CreateNewBatchToSign(ctx sdk.Context) (CommandBatch, error)
	SetLatestSignedCommandBatchID(ctx sdk.Context, id []byte)
	GetLatestCommandBatch(ctx sdk.Context) CommandBatch
	GetBatchByID(ctx sdk.Context, id []byte) CommandBatch
	DeleteUnsignedCommandBatchID(ctx sdk.Context)

	GetConfirmedEventQueue(ctx sdk.Context) utils.KVQueue
	GetEvent(ctx sdk.Context, eventID EventID) (Event, bool)
	SetConfirmedEvent(ctx sdk.Context, event Event) error
	EnqueueConfirmedEvent(ctx sdk.Context, eventID EventID) error
	SetEventCompleted(ctx sdk.Context, eventID EventID) error
	SetEventFailed(ctx sdk.Context, eventID EventID) error

	GetDepositsByTxID(ctx sdk.Context, txID Hash, status DepositStatus) ([]ERC20Deposit, error)
}

ChainKeeper is implemented by this module's chain keeper

type ChainStatus added in v0.26.3

type ChainStatus int32
const (
	StatusUnspecified ChainStatus = 0
	Activated         ChainStatus = 1
	Deactivated       ChainStatus = 2
)

func (ChainStatus) EnumDescriptor added in v0.26.3

func (ChainStatus) EnumDescriptor() ([]byte, []int)

func (ChainStatus) String added in v0.26.3

func (x ChainStatus) String() string

type ChainsRequest added in v0.16.0

type ChainsRequest struct {
	Status ChainStatus `protobuf:"varint,1,opt,name=status,proto3,enum=axelar.evm.v1beta1.ChainStatus" json:"status,omitempty"`
}

func (*ChainsRequest) Descriptor added in v0.16.0

func (*ChainsRequest) Descriptor() ([]byte, []int)

func (*ChainsRequest) Marshal added in v0.16.0

func (m *ChainsRequest) Marshal() (dAtA []byte, err error)

func (*ChainsRequest) MarshalTo added in v0.16.0

func (m *ChainsRequest) MarshalTo(dAtA []byte) (int, error)

func (*ChainsRequest) MarshalToSizedBuffer added in v0.16.0

func (m *ChainsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ChainsRequest) ProtoMessage added in v0.16.0

func (*ChainsRequest) ProtoMessage()

func (*ChainsRequest) Reset added in v0.16.0

func (m *ChainsRequest) Reset()

func (*ChainsRequest) Size added in v0.16.0

func (m *ChainsRequest) Size() (n int)

func (*ChainsRequest) String added in v0.16.0

func (m *ChainsRequest) String() string

func (*ChainsRequest) Unmarshal added in v0.16.0

func (m *ChainsRequest) Unmarshal(dAtA []byte) error

func (*ChainsRequest) XXX_DiscardUnknown added in v0.16.0

func (m *ChainsRequest) XXX_DiscardUnknown()

func (*ChainsRequest) XXX_Marshal added in v0.16.0

func (m *ChainsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ChainsRequest) XXX_Merge added in v0.16.0

func (m *ChainsRequest) XXX_Merge(src proto.Message)

func (*ChainsRequest) XXX_Size added in v0.16.0

func (m *ChainsRequest) XXX_Size() int

func (*ChainsRequest) XXX_Unmarshal added in v0.16.0

func (m *ChainsRequest) XXX_Unmarshal(b []byte) error

type ChainsResponse added in v0.16.0

type ChainsResponse struct {
	Chains []github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 138-byte string literal not displayed */
}

func (*ChainsResponse) Descriptor added in v0.16.0

func (*ChainsResponse) Descriptor() ([]byte, []int)

func (*ChainsResponse) Marshal added in v0.16.0

func (m *ChainsResponse) Marshal() (dAtA []byte, err error)

func (*ChainsResponse) MarshalTo added in v0.16.0

func (m *ChainsResponse) MarshalTo(dAtA []byte) (int, error)

func (*ChainsResponse) MarshalToSizedBuffer added in v0.16.0

func (m *ChainsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ChainsResponse) ProtoMessage added in v0.16.0

func (*ChainsResponse) ProtoMessage()

func (*ChainsResponse) Reset added in v0.16.0

func (m *ChainsResponse) Reset()

func (*ChainsResponse) Size added in v0.16.0

func (m *ChainsResponse) Size() (n int)

func (*ChainsResponse) String added in v0.16.0

func (m *ChainsResponse) String() string

func (*ChainsResponse) Unmarshal added in v0.16.0

func (m *ChainsResponse) Unmarshal(dAtA []byte) error

func (*ChainsResponse) XXX_DiscardUnknown added in v0.16.0

func (m *ChainsResponse) XXX_DiscardUnknown()

func (*ChainsResponse) XXX_Marshal added in v0.16.0

func (m *ChainsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ChainsResponse) XXX_Merge added in v0.16.0

func (m *ChainsResponse) XXX_Merge(src proto.Message)

func (*ChainsResponse) XXX_Size added in v0.16.0

func (m *ChainsResponse) XXX_Size() int

func (*ChainsResponse) XXX_Unmarshal added in v0.16.0

func (m *ChainsResponse) XXX_Unmarshal(b []byte) error

type Command

type Command struct {
	ID         CommandID                                                      `protobuf:"bytes,1,opt,name=id,proto3,customtype=CommandID" json:"id"`
	Command    string                                                         `protobuf:"bytes,2,opt,name=command,proto3" json:"command,omitempty"` // Deprecated: Do not use.
	Params     []byte                                                         `protobuf:"bytes,3,opt,name=params,proto3" json:"params,omitempty"`
	KeyID      github_com_axelarnetwork_axelar_core_x_multisig_exported.KeyID `` /* 148-byte string literal not displayed */
	MaxGasCost uint32                                                         `protobuf:"varint,5,opt,name=max_gas_cost,json=maxGasCost,proto3" json:"max_gas_cost,omitempty"`
	Type       CommandType                                                    `protobuf:"varint,6,opt,name=type,proto3,enum=axelar.evm.v1beta1.CommandType" json:"type,omitempty"`
}

func NewApproveContractCallCommand added in v0.27.0

func NewApproveContractCallCommand(
	chainID sdk.Int,
	keyID multisig.KeyID,
	sourceChain nexus.ChainName,
	sourceTxID Hash,
	sourceEventIndex uint64,
	event EventContractCall,
) Command

NewApproveContractCallCommand creates a command to approve contract call

func NewApproveContractCallCommandGeneric added in v0.32.0

func NewApproveContractCallCommandGeneric(
	chainID sdk.Int,
	keyID multisig.KeyID,
	contractAddress common.Address,
	payloadHash common.Hash,
	sourceTxID common.Hash,
	sourceChain nexus.ChainName,
	sender string,
	sourceEventIndex uint64,
	ID string,
) Command

NewApproveContractCallCommandGeneric creates a command to approve contract call

func NewApproveContractCallWithMintCommand added in v0.27.0

func NewApproveContractCallWithMintCommand(
	chainID sdk.Int,
	keyID multisig.KeyID,
	sourceChain nexus.ChainName,
	sourceTxID Hash,
	sourceEventIndex uint64,
	event EventContractCallWithToken,
	amount sdk.Uint,
	symbol string,
) Command

NewApproveContractCallWithMintCommand creates a command to approve contract call with token being minted

func NewApproveContractCallWithMintGeneric added in v0.33.0

func NewApproveContractCallWithMintGeneric(
	chainID sdk.Int,
	keyID multisig.KeyID,
	sourceTxID common.Hash,
	sourceEventIndex uint64,
	message nexus.GeneralMessage,
	symbol string,
) Command

NewApproveContractCallWithMintGeneric creates a command to approve contract call with mint

func NewBurnTokenCommand added in v0.27.0

func NewBurnTokenCommand(chainID sdk.Int, keyID multisig.KeyID, height int64, burnerInfo BurnerInfo, isTokenExternal bool) Command

NewBurnTokenCommand creates a command to burn tokens with the given burner's information

func NewDeployTokenCommand added in v0.27.0

func NewDeployTokenCommand(chainID sdk.Int, keyID multisig.KeyID, asset string, tokenDetails TokenDetails, address Address, dailyMintLimit sdk.Uint) Command

NewDeployTokenCommand creates a command to deploy a token

func NewMintTokenCommand added in v0.27.0

func NewMintTokenCommand(keyID multisig.KeyID, id nexus.TransferID, symbol string, address common.Address, amount *big.Int) Command

NewMintTokenCommand creates a command to mint token to the given address

func NewMultisigTransferCommand added in v0.27.0

func NewMultisigTransferCommand(chainID sdk.Int, keyID multisig.KeyID, nextKey multisig.Key) Command

NewMultisigTransferCommand creates a command to transfer operator of the multisig contract

func (Command) Clone

func (m Command) Clone() Command

Clone returns an exacy copy of Command

func (Command) DecodeParams added in v0.17.0

func (m Command) DecodeParams() (map[string]string, error)

DecodeParams returns the decoded parameters in the given command

func (*Command) Descriptor

func (*Command) Descriptor() ([]byte, []int)

func (*Command) Marshal

func (m *Command) Marshal() (dAtA []byte, err error)

func (*Command) MarshalTo

func (m *Command) MarshalTo(dAtA []byte) (int, error)

func (*Command) MarshalToSizedBuffer

func (m *Command) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Command) ProtoMessage

func (*Command) ProtoMessage()

func (*Command) Reset

func (m *Command) Reset()

func (*Command) Size

func (m *Command) Size() (n int)

func (*Command) String

func (m *Command) String() string

func (*Command) Unmarshal

func (m *Command) Unmarshal(dAtA []byte) error

func (Command) ValidateBasic added in v0.27.0

func (m Command) ValidateBasic() error

ValidateBasic returns an error if the given command is invalid

func (*Command) XXX_DiscardUnknown

func (m *Command) XXX_DiscardUnknown()

func (*Command) XXX_Marshal

func (m *Command) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Command) XXX_Merge

func (m *Command) XXX_Merge(src proto.Message)

func (*Command) XXX_Size

func (m *Command) XXX_Size() int

func (*Command) XXX_Unmarshal

func (m *Command) XXX_Unmarshal(b []byte) error

type CommandBatch

type CommandBatch struct {
	// contains filtered or unexported fields
}

CommandBatch represents a batch of commands

func NewCommandBatch

func NewCommandBatch(metadata CommandBatchMetadata, setter func(batch CommandBatchMetadata)) CommandBatch

NewCommandBatch returns a new command batch struct

func (CommandBatch) GetCommandIDs added in v0.10.0

func (b CommandBatch) GetCommandIDs() []CommandID

GetCommandIDs returns the IDs of the commands included in the batch

func (CommandBatch) GetData

func (b CommandBatch) GetData() []byte

GetData returns the batch's data

func (CommandBatch) GetID

func (b CommandBatch) GetID() []byte

GetID returns the batch ID

func (CommandBatch) GetKeyID

func (b CommandBatch) GetKeyID() multisig.KeyID

GetKeyID returns the batch's key ID

func (CommandBatch) GetPrevBatchedCommandsID

func (b CommandBatch) GetPrevBatchedCommandsID() []byte

GetPrevBatchedCommandsID returns the batch that preceeds this one

func (CommandBatch) GetSigHash

func (b CommandBatch) GetSigHash() Hash

GetSigHash returns the batch's key ID

func (CommandBatch) GetSignature added in v0.21.0

func (b CommandBatch) GetSignature() utils.ValidatedProtoMarshaler

GetSignature returns the batch's signature

func (CommandBatch) GetStatus

func (b CommandBatch) GetStatus() BatchedCommandsStatus

GetStatus returns the batch's status

func (CommandBatch) Is

Is returns true if batched commands is in the given status; false otherwise

func (*CommandBatch) SetSigned added in v0.21.0

func (b *CommandBatch) SetSigned(signature utils.ValidatedProtoMarshaler) error

SetSigned sets the signature and signed status for the batch

func (*CommandBatch) SetStatus

func (b *CommandBatch) SetStatus(status BatchedCommandsStatus) bool

SetStatus sets the status for the batch, returning true if the status was updated

type CommandBatchAborted added in v0.21.0

type CommandBatchAborted struct {
	Chain          github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	CommandBatchID []byte                                                          `protobuf:"bytes,3,opt,name=command_batch_id,json=commandBatchId,proto3" json:"command_batch_id,omitempty"`
}

func NewCommandBatchAborted added in v0.21.0

func NewCommandBatchAborted(chain nexus.ChainName, batchID []byte) *CommandBatchAborted

NewCommandBatchAborted returns a new CommandBatchAborted instance

func (*CommandBatchAborted) Descriptor added in v0.21.0

func (*CommandBatchAborted) Descriptor() ([]byte, []int)

func (*CommandBatchAborted) GetChain added in v0.21.0

func (*CommandBatchAborted) GetCommandBatchID added in v0.21.0

func (m *CommandBatchAborted) GetCommandBatchID() []byte

func (*CommandBatchAborted) Marshal added in v0.21.0

func (m *CommandBatchAborted) Marshal() (dAtA []byte, err error)

func (*CommandBatchAborted) MarshalTo added in v0.21.0

func (m *CommandBatchAborted) MarshalTo(dAtA []byte) (int, error)

func (*CommandBatchAborted) MarshalToSizedBuffer added in v0.21.0

func (m *CommandBatchAborted) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CommandBatchAborted) ProtoMessage added in v0.21.0

func (*CommandBatchAborted) ProtoMessage()

func (*CommandBatchAborted) Reset added in v0.21.0

func (m *CommandBatchAborted) Reset()

func (*CommandBatchAborted) Size added in v0.21.0

func (m *CommandBatchAborted) Size() (n int)

func (*CommandBatchAborted) String added in v0.21.0

func (m *CommandBatchAborted) String() string

func (*CommandBatchAborted) Unmarshal added in v0.21.0

func (m *CommandBatchAborted) Unmarshal(dAtA []byte) error

func (*CommandBatchAborted) XXX_DiscardUnknown added in v0.21.0

func (m *CommandBatchAborted) XXX_DiscardUnknown()

func (*CommandBatchAborted) XXX_Marshal added in v0.21.0

func (m *CommandBatchAborted) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CommandBatchAborted) XXX_Merge added in v0.21.0

func (m *CommandBatchAborted) XXX_Merge(src proto.Message)

func (*CommandBatchAborted) XXX_MessageName added in v0.33.1

func (*CommandBatchAborted) XXX_MessageName() string

func (*CommandBatchAborted) XXX_Size added in v0.21.0

func (m *CommandBatchAborted) XXX_Size() int

func (*CommandBatchAborted) XXX_Unmarshal added in v0.21.0

func (m *CommandBatchAborted) XXX_Unmarshal(b []byte) error

type CommandBatchMetadata

type CommandBatchMetadata struct {
	ID                    []byte                                                         `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	CommandIDs            []CommandID                                                    `protobuf:"bytes,2,rep,name=command_ids,json=commandIds,proto3,customtype=CommandID" json:"command_ids"`
	Data                  []byte                                                         `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	SigHash               Hash                                                           `protobuf:"bytes,4,opt,name=sig_hash,json=sigHash,proto3,customtype=Hash" json:"sig_hash"`
	Status                BatchedCommandsStatus                                          `protobuf:"varint,5,opt,name=status,proto3,enum=axelar.evm.v1beta1.BatchedCommandsStatus" json:"status,omitempty"`
	KeyID                 github_com_axelarnetwork_axelar_core_x_multisig_exported.KeyID `` /* 148-byte string literal not displayed */
	PrevBatchedCommandsID []byte                                                         `` /* 128-byte string literal not displayed */
	Signature             *types.Any                                                     `protobuf:"bytes,8,opt,name=signature,proto3" json:"signature,omitempty"`
}

func NewCommandBatchMetadata

func NewCommandBatchMetadata(blockHeight int64, chainID sdk.Int, keyID multisig.KeyID, cmds []Command) (CommandBatchMetadata, error)

NewCommandBatchMetadata assembles a CommandBatchMetadata struct from the provided arguments

func (*CommandBatchMetadata) Descriptor

func (*CommandBatchMetadata) Descriptor() ([]byte, []int)

func (*CommandBatchMetadata) Marshal

func (m *CommandBatchMetadata) Marshal() (dAtA []byte, err error)

func (*CommandBatchMetadata) MarshalTo

func (m *CommandBatchMetadata) MarshalTo(dAtA []byte) (int, error)

func (*CommandBatchMetadata) MarshalToSizedBuffer

func (m *CommandBatchMetadata) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CommandBatchMetadata) ProtoMessage

func (*CommandBatchMetadata) ProtoMessage()

func (*CommandBatchMetadata) Reset

func (m *CommandBatchMetadata) Reset()

func (*CommandBatchMetadata) Size

func (m *CommandBatchMetadata) Size() (n int)

func (*CommandBatchMetadata) String

func (m *CommandBatchMetadata) String() string

func (*CommandBatchMetadata) Unmarshal

func (m *CommandBatchMetadata) Unmarshal(dAtA []byte) error

func (CommandBatchMetadata) UnpackInterfaces added in v0.21.0

func (m CommandBatchMetadata) UnpackInterfaces(unpacker codectypes.AnyUnpacker) error

UnpackInterfaces implements UnpackInterfacesMessage

func (CommandBatchMetadata) ValidateBasic added in v0.27.0

func (m CommandBatchMetadata) ValidateBasic() error

ValidateBasic returns an error if the CommandBatchMetadata is not valid

func (*CommandBatchMetadata) XXX_DiscardUnknown

func (m *CommandBatchMetadata) XXX_DiscardUnknown()

func (*CommandBatchMetadata) XXX_Marshal

func (m *CommandBatchMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CommandBatchMetadata) XXX_Merge

func (m *CommandBatchMetadata) XXX_Merge(src proto.Message)

func (*CommandBatchMetadata) XXX_Size

func (m *CommandBatchMetadata) XXX_Size() int

func (*CommandBatchMetadata) XXX_Unmarshal

func (m *CommandBatchMetadata) XXX_Unmarshal(b []byte) error

type CommandBatchSigned added in v0.21.0

type CommandBatchSigned struct {
	Chain          github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	CommandBatchID []byte                                                          `protobuf:"bytes,3,opt,name=command_batch_id,json=commandBatchId,proto3" json:"command_batch_id,omitempty"`
}

func NewCommandBatchSigned added in v0.21.0

func NewCommandBatchSigned(chain nexus.ChainName, batchID []byte) *CommandBatchSigned

NewCommandBatchSigned returns a new CommandBatchSigned instance

func (*CommandBatchSigned) Descriptor added in v0.21.0

func (*CommandBatchSigned) Descriptor() ([]byte, []int)

func (*CommandBatchSigned) GetChain added in v0.21.0

func (*CommandBatchSigned) GetCommandBatchID added in v0.21.0

func (m *CommandBatchSigned) GetCommandBatchID() []byte

func (*CommandBatchSigned) Marshal added in v0.21.0

func (m *CommandBatchSigned) Marshal() (dAtA []byte, err error)

func (*CommandBatchSigned) MarshalTo added in v0.21.0

func (m *CommandBatchSigned) MarshalTo(dAtA []byte) (int, error)

func (*CommandBatchSigned) MarshalToSizedBuffer added in v0.21.0

func (m *CommandBatchSigned) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CommandBatchSigned) ProtoMessage added in v0.21.0

func (*CommandBatchSigned) ProtoMessage()

func (*CommandBatchSigned) Reset added in v0.21.0

func (m *CommandBatchSigned) Reset()

func (*CommandBatchSigned) Size added in v0.21.0

func (m *CommandBatchSigned) Size() (n int)

func (*CommandBatchSigned) String added in v0.21.0

func (m *CommandBatchSigned) String() string

func (*CommandBatchSigned) Unmarshal added in v0.21.0

func (m *CommandBatchSigned) Unmarshal(dAtA []byte) error

func (*CommandBatchSigned) XXX_DiscardUnknown added in v0.21.0

func (m *CommandBatchSigned) XXX_DiscardUnknown()

func (*CommandBatchSigned) XXX_Marshal added in v0.21.0

func (m *CommandBatchSigned) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CommandBatchSigned) XXX_Merge added in v0.21.0

func (m *CommandBatchSigned) XXX_Merge(src proto.Message)

func (*CommandBatchSigned) XXX_MessageName added in v0.33.1

func (*CommandBatchSigned) XXX_MessageName() string

func (*CommandBatchSigned) XXX_Size added in v0.21.0

func (m *CommandBatchSigned) XXX_Size() int

func (*CommandBatchSigned) XXX_Unmarshal added in v0.21.0

func (m *CommandBatchSigned) XXX_Unmarshal(b []byte) error

type CommandID

type CommandID [commandIDSize]byte

CommandID represents the unique command identifier

func CommandIDFromTransferID added in v0.27.0

func CommandIDFromTransferID(id nexus.TransferID) CommandID

CommandIDFromTransferID converts a TransferID into a CommandID

func HexToCommandID added in v0.10.0

func HexToCommandID(id string) (CommandID, error)

HexToCommandID decodes a hex representation of a CommandID

func NewCommandID

func NewCommandID(data []byte, chainID sdk.Int) CommandID

NewCommandID is the constructor for CommandID

func (CommandID) Hex

func (c CommandID) Hex() string

Hex returns the hex representation of command ID

func (CommandID) Marshal

func (c CommandID) Marshal() ([]byte, error)

Marshal implements codec.ProtoMarshaler

func (CommandID) MarshalTo

func (c CommandID) MarshalTo(data []byte) (n int, err error)

MarshalTo implements codec.ProtoMarshaler

func (CommandID) Size

func (c CommandID) Size() int

Size implements codec.ProtoMarshaler

func (*CommandID) Unmarshal

func (c *CommandID) Unmarshal(data []byte) error

Unmarshal implements codec.ProtoMarshaler

func (CommandID) ValidateBasic added in v0.27.0

func (c CommandID) ValidateBasic() error

ValidateBasic returns an error if the given command ID is invalid

type CommandRequest added in v0.31.3

type CommandRequest struct {
	Chain string `protobuf:"bytes,1,opt,name=chain,proto3" json:"chain,omitempty"`
	ID    string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
}

func (*CommandRequest) Descriptor added in v0.31.3

func (*CommandRequest) Descriptor() ([]byte, []int)

func (*CommandRequest) Marshal added in v0.31.3

func (m *CommandRequest) Marshal() (dAtA []byte, err error)

func (*CommandRequest) MarshalTo added in v0.31.3

func (m *CommandRequest) MarshalTo(dAtA []byte) (int, error)

func (*CommandRequest) MarshalToSizedBuffer added in v0.31.3

func (m *CommandRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CommandRequest) ProtoMessage added in v0.31.3

func (*CommandRequest) ProtoMessage()

func (*CommandRequest) Reset added in v0.31.3

func (m *CommandRequest) Reset()

func (*CommandRequest) Size added in v0.31.3

func (m *CommandRequest) Size() (n int)

func (*CommandRequest) String added in v0.31.3

func (m *CommandRequest) String() string

func (*CommandRequest) Unmarshal added in v0.31.3

func (m *CommandRequest) Unmarshal(dAtA []byte) error

func (*CommandRequest) XXX_DiscardUnknown added in v0.31.3

func (m *CommandRequest) XXX_DiscardUnknown()

func (*CommandRequest) XXX_Marshal added in v0.31.3

func (m *CommandRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CommandRequest) XXX_Merge added in v0.31.3

func (m *CommandRequest) XXX_Merge(src proto.Message)

func (*CommandRequest) XXX_Size added in v0.31.3

func (m *CommandRequest) XXX_Size() int

func (*CommandRequest) XXX_Unmarshal added in v0.31.3

func (m *CommandRequest) XXX_Unmarshal(b []byte) error

type CommandResponse added in v0.31.3

type CommandResponse struct {
	ID         string            `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Type       string            `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
	Params     map[string]string `` /* 143-byte string literal not displayed */
	KeyID      string            `protobuf:"bytes,4,opt,name=key_id,json=keyId,proto3" json:"key_id,omitempty"`
	MaxGasCost uint32            `protobuf:"varint,5,opt,name=max_gas_cost,json=maxGasCost,proto3" json:"max_gas_cost,omitempty"`
}

func (*CommandResponse) Descriptor added in v0.31.3

func (*CommandResponse) Descriptor() ([]byte, []int)

func (*CommandResponse) Marshal added in v0.31.3

func (m *CommandResponse) Marshal() (dAtA []byte, err error)

func (*CommandResponse) MarshalTo added in v0.31.3

func (m *CommandResponse) MarshalTo(dAtA []byte) (int, error)

func (*CommandResponse) MarshalToSizedBuffer added in v0.31.3

func (m *CommandResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CommandResponse) ProtoMessage added in v0.31.3

func (*CommandResponse) ProtoMessage()

func (*CommandResponse) Reset added in v0.31.3

func (m *CommandResponse) Reset()

func (*CommandResponse) Size added in v0.31.3

func (m *CommandResponse) Size() (n int)

func (*CommandResponse) String added in v0.31.3

func (m *CommandResponse) String() string

func (*CommandResponse) Unmarshal added in v0.31.3

func (m *CommandResponse) Unmarshal(dAtA []byte) error

func (*CommandResponse) XXX_DiscardUnknown added in v0.31.3

func (m *CommandResponse) XXX_DiscardUnknown()

func (*CommandResponse) XXX_Marshal added in v0.31.3

func (m *CommandResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CommandResponse) XXX_Merge added in v0.31.3

func (m *CommandResponse) XXX_Merge(src proto.Message)

func (*CommandResponse) XXX_Size added in v0.31.3

func (m *CommandResponse) XXX_Size() int

func (*CommandResponse) XXX_Unmarshal added in v0.31.3

func (m *CommandResponse) XXX_Unmarshal(b []byte) error

type CommandType added in v0.27.0

type CommandType int32
const (
	COMMAND_TYPE_UNSPECIFIED                     CommandType = 0
	COMMAND_TYPE_MINT_TOKEN                      CommandType = 1
	COMMAND_TYPE_DEPLOY_TOKEN                    CommandType = 2
	COMMAND_TYPE_BURN_TOKEN                      CommandType = 3
	COMMAND_TYPE_TRANSFER_OPERATORSHIP           CommandType = 4
	COMMAND_TYPE_APPROVE_CONTRACT_CALL_WITH_MINT CommandType = 5
	COMMAND_TYPE_APPROVE_CONTRACT_CALL           CommandType = 6
)

func (CommandType) EnumDescriptor added in v0.27.0

func (CommandType) EnumDescriptor() ([]byte, []int)

func (CommandType) String added in v0.27.0

func (c CommandType) String() string

func (CommandType) ValidateBasic added in v0.27.0

func (c CommandType) ValidateBasic() error

ValidateBasic returns an error if the given command type is invalid

type ConfirmDepositRequest

type ConfirmDepositRequest struct {
	Sender        github_com_cosmos_cosmos_sdk_types.AccAddress                   `protobuf:"bytes,1,opt,name=sender,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"sender,omitempty"`
	Chain         github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	TxID          Hash                                                            `protobuf:"bytes,3,opt,name=tx_id,json=txId,proto3,customtype=Hash" json:"tx_id"`
	Amount        github_com_cosmos_cosmos_sdk_types.Uint                         `protobuf:"bytes,4,opt,name=amount,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Uint" json:"amount"` // Deprecated: Do not use.
	BurnerAddress Address                                                         `protobuf:"bytes,5,opt,name=burner_address,json=burnerAddress,proto3,customtype=Address" json:"burner_address"`
}

MsgConfirmDeposit represents an erc20 deposit confirmation message

func NewConfirmDepositRequest

func NewConfirmDepositRequest(sender sdk.AccAddress, chain string, txID common.Hash, burnerAddr common.Address) *ConfirmDepositRequest

NewConfirmDepositRequest creates a message of type ConfirmDepositRequest

func (*ConfirmDepositRequest) Descriptor

func (*ConfirmDepositRequest) Descriptor() ([]byte, []int)

func (ConfirmDepositRequest) GetSignBytes

func (m ConfirmDepositRequest) GetSignBytes() []byte

GetSignBytes implements sdk.Msg

func (ConfirmDepositRequest) GetSigners

func (m ConfirmDepositRequest) GetSigners() []sdk.AccAddress

GetSigners implements sdk.Msg

func (*ConfirmDepositRequest) Marshal

func (m *ConfirmDepositRequest) Marshal() (dAtA []byte, err error)

func (*ConfirmDepositRequest) MarshalTo

func (m *ConfirmDepositRequest) MarshalTo(dAtA []byte) (int, error)

func (*ConfirmDepositRequest) MarshalToSizedBuffer

func (m *ConfirmDepositRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ConfirmDepositRequest) ProtoMessage

func (*ConfirmDepositRequest) ProtoMessage()

func (*ConfirmDepositRequest) Reset

func (m *ConfirmDepositRequest) Reset()

func (ConfirmDepositRequest) Route

func (m ConfirmDepositRequest) Route() string

Route implements sdk.Msg

func (*ConfirmDepositRequest) Size

func (m *ConfirmDepositRequest) Size() (n int)

func (*ConfirmDepositRequest) String

func (m *ConfirmDepositRequest) String() string

func (ConfirmDepositRequest) Type

func (m ConfirmDepositRequest) Type() string

Type implements sdk.Msg

func (*ConfirmDepositRequest) Unmarshal

func (m *ConfirmDepositRequest) Unmarshal(dAtA []byte) error

func (ConfirmDepositRequest) ValidateBasic

func (m ConfirmDepositRequest) ValidateBasic() error

ValidateBasic implements sdk.Msg

func (*ConfirmDepositRequest) XXX_DiscardUnknown

func (m *ConfirmDepositRequest) XXX_DiscardUnknown()

func (*ConfirmDepositRequest) XXX_Marshal

func (m *ConfirmDepositRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ConfirmDepositRequest) XXX_Merge

func (m *ConfirmDepositRequest) XXX_Merge(src proto.Message)

func (*ConfirmDepositRequest) XXX_Size

func (m *ConfirmDepositRequest) XXX_Size() int

func (*ConfirmDepositRequest) XXX_Unmarshal

func (m *ConfirmDepositRequest) XXX_Unmarshal(b []byte) error

type ConfirmDepositResponse

type ConfirmDepositResponse struct {
}

func (*ConfirmDepositResponse) Descriptor

func (*ConfirmDepositResponse) Descriptor() ([]byte, []int)

func (*ConfirmDepositResponse) Marshal

func (m *ConfirmDepositResponse) Marshal() (dAtA []byte, err error)

func (*ConfirmDepositResponse) MarshalTo

func (m *ConfirmDepositResponse) MarshalTo(dAtA []byte) (int, error)

func (*ConfirmDepositResponse) MarshalToSizedBuffer

func (m *ConfirmDepositResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ConfirmDepositResponse) ProtoMessage

func (*ConfirmDepositResponse) ProtoMessage()

func (*ConfirmDepositResponse) Reset

func (m *ConfirmDepositResponse) Reset()

func (*ConfirmDepositResponse) Size

func (m *ConfirmDepositResponse) Size() (n int)

func (*ConfirmDepositResponse) String

func (m *ConfirmDepositResponse) String() string

func (*ConfirmDepositResponse) Unmarshal

func (m *ConfirmDepositResponse) Unmarshal(dAtA []byte) error

func (*ConfirmDepositResponse) XXX_DiscardUnknown

func (m *ConfirmDepositResponse) XXX_DiscardUnknown()

func (*ConfirmDepositResponse) XXX_Marshal

func (m *ConfirmDepositResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ConfirmDepositResponse) XXX_Merge

func (m *ConfirmDepositResponse) XXX_Merge(src proto.Message)

func (*ConfirmDepositResponse) XXX_Size

func (m *ConfirmDepositResponse) XXX_Size() int

func (*ConfirmDepositResponse) XXX_Unmarshal

func (m *ConfirmDepositResponse) XXX_Unmarshal(b []byte) error

type ConfirmDepositStarted added in v0.21.0

type ConfirmDepositStarted struct {
	TxID                      Hash                                                            `protobuf:"bytes,1,opt,name=tx_id,json=txId,proto3,customtype=Hash" json:"tx_id"`
	Chain                     github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	DepositAddress            Address                                                         `protobuf:"bytes,3,opt,name=deposit_address,json=depositAddress,proto3,customtype=Address" json:"deposit_address"`
	TokenAddress              Address                                                         `protobuf:"bytes,4,opt,name=token_address,json=tokenAddress,proto3,customtype=Address" json:"token_address"`
	ConfirmationHeight        uint64                                                          `protobuf:"varint,5,opt,name=confirmation_height,json=confirmationHeight,proto3" json:"confirmation_height,omitempty"`
	exported.PollParticipants `protobuf:"bytes,6,opt,name=participants,proto3,embedded=participants" json:"participants"`
	Asset                     string `protobuf:"bytes,7,opt,name=asset,proto3" json:"asset,omitempty"`
}

func (*ConfirmDepositStarted) Descriptor added in v0.21.0

func (*ConfirmDepositStarted) Descriptor() ([]byte, []int)

func (*ConfirmDepositStarted) GetAsset added in v0.25.0

func (m *ConfirmDepositStarted) GetAsset() string

func (*ConfirmDepositStarted) GetChain added in v0.21.0

func (*ConfirmDepositStarted) GetConfirmationHeight added in v0.21.0

func (m *ConfirmDepositStarted) GetConfirmationHeight() uint64

func (*ConfirmDepositStarted) Marshal added in v0.21.0

func (m *ConfirmDepositStarted) Marshal() (dAtA []byte, err error)

func (*ConfirmDepositStarted) MarshalTo added in v0.21.0

func (m *ConfirmDepositStarted) MarshalTo(dAtA []byte) (int, error)

func (*ConfirmDepositStarted) MarshalToSizedBuffer added in v0.21.0

func (m *ConfirmDepositStarted) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ConfirmDepositStarted) ProtoMessage added in v0.21.0

func (*ConfirmDepositStarted) ProtoMessage()

func (*ConfirmDepositStarted) Reset added in v0.21.0

func (m *ConfirmDepositStarted) Reset()

func (*ConfirmDepositStarted) Size added in v0.21.0

func (m *ConfirmDepositStarted) Size() (n int)

func (*ConfirmDepositStarted) String added in v0.21.0

func (m *ConfirmDepositStarted) String() string

func (*ConfirmDepositStarted) Unmarshal added in v0.21.0

func (m *ConfirmDepositStarted) Unmarshal(dAtA []byte) error

func (*ConfirmDepositStarted) XXX_DiscardUnknown added in v0.21.0

func (m *ConfirmDepositStarted) XXX_DiscardUnknown()

func (*ConfirmDepositStarted) XXX_Marshal added in v0.21.0

func (m *ConfirmDepositStarted) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ConfirmDepositStarted) XXX_Merge added in v0.21.0

func (m *ConfirmDepositStarted) XXX_Merge(src proto.Message)

func (*ConfirmDepositStarted) XXX_MessageName added in v0.33.1

func (*ConfirmDepositStarted) XXX_MessageName() string

func (*ConfirmDepositStarted) XXX_Size added in v0.21.0

func (m *ConfirmDepositStarted) XXX_Size() int

func (*ConfirmDepositStarted) XXX_Unmarshal added in v0.21.0

func (m *ConfirmDepositStarted) XXX_Unmarshal(b []byte) error

type ConfirmGatewayTxRequest deprecated added in v0.17.0

type ConfirmGatewayTxRequest struct {
	Sender github_com_cosmos_cosmos_sdk_types.AccAddress                   `protobuf:"bytes,1,opt,name=sender,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"sender,omitempty"`
	Chain  github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	TxID   Hash                                                            `protobuf:"bytes,3,opt,name=tx_id,json=txId,proto3,customtype=Hash" json:"tx_id"`
}

Deprecated: Do not use.

func NewConfirmGatewayTxRequest added in v0.17.0

func NewConfirmGatewayTxRequest(sender sdk.AccAddress, chain string, txID Hash) *ConfirmGatewayTxRequest

NewConfirmGatewayTxRequest creates a message of type ConfirmGatewayTxRequest

func (*ConfirmGatewayTxRequest) Descriptor added in v0.17.0

func (*ConfirmGatewayTxRequest) Descriptor() ([]byte, []int)

func (ConfirmGatewayTxRequest) GetSignBytes added in v0.17.0

func (m ConfirmGatewayTxRequest) GetSignBytes() []byte

GetSignBytes implements sdk.Msg

func (ConfirmGatewayTxRequest) GetSigners added in v0.17.0

func (m ConfirmGatewayTxRequest) GetSigners() []sdk.AccAddress

GetSigners implements sdk.Msg

func (*ConfirmGatewayTxRequest) Marshal added in v0.17.0

func (m *ConfirmGatewayTxRequest) Marshal() (dAtA []byte, err error)

func (*ConfirmGatewayTxRequest) MarshalTo added in v0.17.0

func (m *ConfirmGatewayTxRequest) MarshalTo(dAtA []byte) (int, error)

func (*ConfirmGatewayTxRequest) MarshalToSizedBuffer added in v0.17.0

func (m *ConfirmGatewayTxRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ConfirmGatewayTxRequest) ProtoMessage added in v0.17.0

func (*ConfirmGatewayTxRequest) ProtoMessage()

func (*ConfirmGatewayTxRequest) Reset added in v0.17.0

func (m *ConfirmGatewayTxRequest) Reset()

func (ConfirmGatewayTxRequest) Route added in v0.17.0

func (m ConfirmGatewayTxRequest) Route() string

Route implements sdk.Msg

func (*ConfirmGatewayTxRequest) Size added in v0.17.0

func (m *ConfirmGatewayTxRequest) Size() (n int)

func (*ConfirmGatewayTxRequest) String added in v0.17.0

func (m *ConfirmGatewayTxRequest) String() string

func (ConfirmGatewayTxRequest) Type added in v0.17.0

Type implements sdk.Msg

func (*ConfirmGatewayTxRequest) Unmarshal added in v0.17.0

func (m *ConfirmGatewayTxRequest) Unmarshal(dAtA []byte) error

func (ConfirmGatewayTxRequest) ValidateBasic added in v0.17.0

func (m ConfirmGatewayTxRequest) ValidateBasic() error

ValidateBasic implements sdk.Msg

func (*ConfirmGatewayTxRequest) XXX_DiscardUnknown added in v0.17.0

func (m *ConfirmGatewayTxRequest) XXX_DiscardUnknown()

func (*ConfirmGatewayTxRequest) XXX_Marshal added in v0.17.0

func (m *ConfirmGatewayTxRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ConfirmGatewayTxRequest) XXX_Merge added in v0.17.0

func (m *ConfirmGatewayTxRequest) XXX_Merge(src proto.Message)

func (*ConfirmGatewayTxRequest) XXX_Size added in v0.17.0

func (m *ConfirmGatewayTxRequest) XXX_Size() int

func (*ConfirmGatewayTxRequest) XXX_Unmarshal added in v0.17.0

func (m *ConfirmGatewayTxRequest) XXX_Unmarshal(b []byte) error

type ConfirmGatewayTxResponse deprecated added in v0.17.0

type ConfirmGatewayTxResponse struct {
}

Deprecated: Do not use.

func (*ConfirmGatewayTxResponse) Descriptor added in v0.17.0

func (*ConfirmGatewayTxResponse) Descriptor() ([]byte, []int)

func (*ConfirmGatewayTxResponse) Marshal added in v0.17.0

func (m *ConfirmGatewayTxResponse) Marshal() (dAtA []byte, err error)

func (*ConfirmGatewayTxResponse) MarshalTo added in v0.17.0

func (m *ConfirmGatewayTxResponse) MarshalTo(dAtA []byte) (int, error)

func (*ConfirmGatewayTxResponse) MarshalToSizedBuffer added in v0.17.0

func (m *ConfirmGatewayTxResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ConfirmGatewayTxResponse) ProtoMessage added in v0.17.0

func (*ConfirmGatewayTxResponse) ProtoMessage()

func (*ConfirmGatewayTxResponse) Reset added in v0.17.0

func (m *ConfirmGatewayTxResponse) Reset()

func (*ConfirmGatewayTxResponse) Size added in v0.17.0

func (m *ConfirmGatewayTxResponse) Size() (n int)

func (*ConfirmGatewayTxResponse) String added in v0.17.0

func (m *ConfirmGatewayTxResponse) String() string

func (*ConfirmGatewayTxResponse) Unmarshal added in v0.17.0

func (m *ConfirmGatewayTxResponse) Unmarshal(dAtA []byte) error

func (*ConfirmGatewayTxResponse) XXX_DiscardUnknown added in v0.17.0

func (m *ConfirmGatewayTxResponse) XXX_DiscardUnknown()

func (*ConfirmGatewayTxResponse) XXX_Marshal added in v0.17.0

func (m *ConfirmGatewayTxResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ConfirmGatewayTxResponse) XXX_Merge added in v0.17.0

func (m *ConfirmGatewayTxResponse) XXX_Merge(src proto.Message)

func (*ConfirmGatewayTxResponse) XXX_Size added in v0.17.0

func (m *ConfirmGatewayTxResponse) XXX_Size() int

func (*ConfirmGatewayTxResponse) XXX_Unmarshal added in v0.17.0

func (m *ConfirmGatewayTxResponse) XXX_Unmarshal(b []byte) error

type ConfirmGatewayTxStarted deprecated added in v0.21.0

type ConfirmGatewayTxStarted struct {
	TxID                      Hash                                                            `protobuf:"bytes,1,opt,name=tx_id,json=txId,proto3,customtype=Hash" json:"tx_id"`
	Chain                     github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	GatewayAddress            Address                                                         `protobuf:"bytes,3,opt,name=gateway_address,json=gatewayAddress,proto3,customtype=Address" json:"gateway_address"`
	ConfirmationHeight        uint64                                                          `protobuf:"varint,4,opt,name=confirmation_height,json=confirmationHeight,proto3" json:"confirmation_height,omitempty"`
	exported.PollParticipants `protobuf:"bytes,5,opt,name=participants,proto3,embedded=participants" json:"participants"`
}

Deprecated: Do not use.

func (*ConfirmGatewayTxStarted) Descriptor added in v0.21.0

func (*ConfirmGatewayTxStarted) Descriptor() ([]byte, []int)

func (*ConfirmGatewayTxStarted) GetChain added in v0.21.0

func (*ConfirmGatewayTxStarted) GetConfirmationHeight added in v0.21.0

func (m *ConfirmGatewayTxStarted) GetConfirmationHeight() uint64

func (*ConfirmGatewayTxStarted) Marshal added in v0.21.0

func (m *ConfirmGatewayTxStarted) Marshal() (dAtA []byte, err error)

func (*ConfirmGatewayTxStarted) MarshalTo added in v0.21.0

func (m *ConfirmGatewayTxStarted) MarshalTo(dAtA []byte) (int, error)

func (*ConfirmGatewayTxStarted) MarshalToSizedBuffer added in v0.21.0

func (m *ConfirmGatewayTxStarted) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ConfirmGatewayTxStarted) ProtoMessage added in v0.21.0

func (*ConfirmGatewayTxStarted) ProtoMessage()

func (*ConfirmGatewayTxStarted) Reset added in v0.21.0

func (m *ConfirmGatewayTxStarted) Reset()

func (*ConfirmGatewayTxStarted) Size added in v0.21.0

func (m *ConfirmGatewayTxStarted) Size() (n int)

func (*ConfirmGatewayTxStarted) String added in v0.21.0

func (m *ConfirmGatewayTxStarted) String() string

func (*ConfirmGatewayTxStarted) Unmarshal added in v0.21.0

func (m *ConfirmGatewayTxStarted) Unmarshal(dAtA []byte) error

func (*ConfirmGatewayTxStarted) XXX_DiscardUnknown added in v0.21.0

func (m *ConfirmGatewayTxStarted) XXX_DiscardUnknown()

func (*ConfirmGatewayTxStarted) XXX_Marshal added in v0.21.0

func (m *ConfirmGatewayTxStarted) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ConfirmGatewayTxStarted) XXX_Merge added in v0.21.0

func (m *ConfirmGatewayTxStarted) XXX_Merge(src proto.Message)

func (*ConfirmGatewayTxStarted) XXX_MessageName added in v0.33.1

func (*ConfirmGatewayTxStarted) XXX_MessageName() string

func (*ConfirmGatewayTxStarted) XXX_Size added in v0.21.0

func (m *ConfirmGatewayTxStarted) XXX_Size() int

func (*ConfirmGatewayTxStarted) XXX_Unmarshal added in v0.21.0

func (m *ConfirmGatewayTxStarted) XXX_Unmarshal(b []byte) error

type ConfirmGatewayTxsRequest added in v0.34.0

type ConfirmGatewayTxsRequest struct {
	Sender github_com_cosmos_cosmos_sdk_types.AccAddress                   `protobuf:"bytes,1,opt,name=sender,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"sender,omitempty"`
	Chain  github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	TxIDs  []Hash                                                          `protobuf:"bytes,3,rep,name=tx_ids,json=txIds,proto3,customtype=Hash" json:"tx_ids"`
}

func NewConfirmGatewayTxsRequest added in v0.34.0

func NewConfirmGatewayTxsRequest(sender sdk.AccAddress, chain nexus.ChainName, txIDs []Hash) *ConfirmGatewayTxsRequest

NewConfirmGatewayTxsRequest creates a message of type ConfirmGatewayTxsRequest

func (*ConfirmGatewayTxsRequest) Descriptor added in v0.34.0

func (*ConfirmGatewayTxsRequest) Descriptor() ([]byte, []int)

func (ConfirmGatewayTxsRequest) GetSignBytes added in v0.34.0

func (m ConfirmGatewayTxsRequest) GetSignBytes() []byte

GetSignBytes implements sdk.Msg

func (ConfirmGatewayTxsRequest) GetSigners added in v0.34.0

func (m ConfirmGatewayTxsRequest) GetSigners() []sdk.AccAddress

GetSigners implements sdk.Msg

func (*ConfirmGatewayTxsRequest) Marshal added in v0.34.0

func (m *ConfirmGatewayTxsRequest) Marshal() (dAtA []byte, err error)

func (*ConfirmGatewayTxsRequest) MarshalTo added in v0.34.0

func (m *ConfirmGatewayTxsRequest) MarshalTo(dAtA []byte) (int, error)

func (*ConfirmGatewayTxsRequest) MarshalToSizedBuffer added in v0.34.0

func (m *ConfirmGatewayTxsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ConfirmGatewayTxsRequest) ProtoMessage added in v0.34.0

func (*ConfirmGatewayTxsRequest) ProtoMessage()

func (*ConfirmGatewayTxsRequest) Reset added in v0.34.0

func (m *ConfirmGatewayTxsRequest) Reset()

func (ConfirmGatewayTxsRequest) Route added in v0.34.0

func (m ConfirmGatewayTxsRequest) Route() string

Route implements sdk.Msg

func (*ConfirmGatewayTxsRequest) Size added in v0.34.0

func (m *ConfirmGatewayTxsRequest) Size() (n int)

func (*ConfirmGatewayTxsRequest) String added in v0.34.0

func (m *ConfirmGatewayTxsRequest) String() string

func (ConfirmGatewayTxsRequest) Type added in v0.34.0

Type implements sdk.Msg

func (*ConfirmGatewayTxsRequest) Unmarshal added in v0.34.0

func (m *ConfirmGatewayTxsRequest) Unmarshal(dAtA []byte) error

func (ConfirmGatewayTxsRequest) ValidateBasic added in v0.34.0

func (m ConfirmGatewayTxsRequest) ValidateBasic() error

ValidateBasic implements sdk.Msg

func (*ConfirmGatewayTxsRequest) XXX_DiscardUnknown added in v0.34.0

func (m *ConfirmGatewayTxsRequest) XXX_DiscardUnknown()

func (*ConfirmGatewayTxsRequest) XXX_Marshal added in v0.34.0

func (m *ConfirmGatewayTxsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ConfirmGatewayTxsRequest) XXX_Merge added in v0.34.0

func (m *ConfirmGatewayTxsRequest) XXX_Merge(src proto.Message)

func (*ConfirmGatewayTxsRequest) XXX_Size added in v0.34.0

func (m *ConfirmGatewayTxsRequest) XXX_Size() int

func (*ConfirmGatewayTxsRequest) XXX_Unmarshal added in v0.34.0

func (m *ConfirmGatewayTxsRequest) XXX_Unmarshal(b []byte) error

type ConfirmGatewayTxsResponse added in v0.34.0

type ConfirmGatewayTxsResponse struct {
}

func (*ConfirmGatewayTxsResponse) Descriptor added in v0.34.0

func (*ConfirmGatewayTxsResponse) Descriptor() ([]byte, []int)

func (*ConfirmGatewayTxsResponse) Marshal added in v0.34.0

func (m *ConfirmGatewayTxsResponse) Marshal() (dAtA []byte, err error)

func (*ConfirmGatewayTxsResponse) MarshalTo added in v0.34.0

func (m *ConfirmGatewayTxsResponse) MarshalTo(dAtA []byte) (int, error)

func (*ConfirmGatewayTxsResponse) MarshalToSizedBuffer added in v0.34.0

func (m *ConfirmGatewayTxsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ConfirmGatewayTxsResponse) ProtoMessage added in v0.34.0

func (*ConfirmGatewayTxsResponse) ProtoMessage()

func (*ConfirmGatewayTxsResponse) Reset added in v0.34.0

func (m *ConfirmGatewayTxsResponse) Reset()

func (*ConfirmGatewayTxsResponse) Size added in v0.34.0

func (m *ConfirmGatewayTxsResponse) Size() (n int)

func (*ConfirmGatewayTxsResponse) String added in v0.34.0

func (m *ConfirmGatewayTxsResponse) String() string

func (*ConfirmGatewayTxsResponse) Unmarshal added in v0.34.0

func (m *ConfirmGatewayTxsResponse) Unmarshal(dAtA []byte) error

func (*ConfirmGatewayTxsResponse) XXX_DiscardUnknown added in v0.34.0

func (m *ConfirmGatewayTxsResponse) XXX_DiscardUnknown()

func (*ConfirmGatewayTxsResponse) XXX_Marshal added in v0.34.0

func (m *ConfirmGatewayTxsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ConfirmGatewayTxsResponse) XXX_Merge added in v0.34.0

func (m *ConfirmGatewayTxsResponse) XXX_Merge(src proto.Message)

func (*ConfirmGatewayTxsResponse) XXX_Size added in v0.34.0

func (m *ConfirmGatewayTxsResponse) XXX_Size() int

func (*ConfirmGatewayTxsResponse) XXX_Unmarshal added in v0.34.0

func (m *ConfirmGatewayTxsResponse) XXX_Unmarshal(b []byte) error

type ConfirmGatewayTxsStarted added in v0.34.0

type ConfirmGatewayTxsStarted struct {
	PollMappings       []PollMapping                                                   `protobuf:"bytes,1,rep,name=poll_mappings,json=pollMappings,proto3" json:"poll_mappings,omitempty"`
	Chain              github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	GatewayAddress     Address                                                         `protobuf:"bytes,3,opt,name=gateway_address,json=gatewayAddress,proto3,customtype=Address" json:"gateway_address"`
	ConfirmationHeight uint64                                                          `protobuf:"varint,4,opt,name=confirmation_height,json=confirmationHeight,proto3" json:"confirmation_height,omitempty"`
	Participants       []github_com_cosmos_cosmos_sdk_types.ValAddress                 `` /* 132-byte string literal not displayed */
}

func (*ConfirmGatewayTxsStarted) Descriptor added in v0.34.0

func (*ConfirmGatewayTxsStarted) Descriptor() ([]byte, []int)

func (*ConfirmGatewayTxsStarted) GetChain added in v0.34.0

func (*ConfirmGatewayTxsStarted) GetConfirmationHeight added in v0.34.0

func (m *ConfirmGatewayTxsStarted) GetConfirmationHeight() uint64

func (*ConfirmGatewayTxsStarted) GetParticipants added in v0.34.0

func (*ConfirmGatewayTxsStarted) GetPollMappings added in v0.34.0

func (m *ConfirmGatewayTxsStarted) GetPollMappings() []PollMapping

func (*ConfirmGatewayTxsStarted) Marshal added in v0.34.0

func (m *ConfirmGatewayTxsStarted) Marshal() (dAtA []byte, err error)

func (*ConfirmGatewayTxsStarted) MarshalTo added in v0.34.0

func (m *ConfirmGatewayTxsStarted) MarshalTo(dAtA []byte) (int, error)

func (*ConfirmGatewayTxsStarted) MarshalToSizedBuffer added in v0.34.0

func (m *ConfirmGatewayTxsStarted) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ConfirmGatewayTxsStarted) ProtoMessage added in v0.34.0

func (*ConfirmGatewayTxsStarted) ProtoMessage()

func (*ConfirmGatewayTxsStarted) Reset added in v0.34.0

func (m *ConfirmGatewayTxsStarted) Reset()

func (*ConfirmGatewayTxsStarted) Size added in v0.34.0

func (m *ConfirmGatewayTxsStarted) Size() (n int)

func (*ConfirmGatewayTxsStarted) String added in v0.34.0

func (m *ConfirmGatewayTxsStarted) String() string

func (*ConfirmGatewayTxsStarted) Unmarshal added in v0.34.0

func (m *ConfirmGatewayTxsStarted) Unmarshal(dAtA []byte) error

func (*ConfirmGatewayTxsStarted) XXX_DiscardUnknown added in v0.34.0

func (m *ConfirmGatewayTxsStarted) XXX_DiscardUnknown()

func (*ConfirmGatewayTxsStarted) XXX_Marshal added in v0.34.0

func (m *ConfirmGatewayTxsStarted) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ConfirmGatewayTxsStarted) XXX_Merge added in v0.34.0

func (m *ConfirmGatewayTxsStarted) XXX_Merge(src proto.Message)

func (*ConfirmGatewayTxsStarted) XXX_MessageName added in v0.34.0

func (*ConfirmGatewayTxsStarted) XXX_MessageName() string

func (*ConfirmGatewayTxsStarted) XXX_Size added in v0.34.0

func (m *ConfirmGatewayTxsStarted) XXX_Size() int

func (*ConfirmGatewayTxsStarted) XXX_Unmarshal added in v0.34.0

func (m *ConfirmGatewayTxsStarted) XXX_Unmarshal(b []byte) error

type ConfirmKeyTransferStarted added in v0.21.0

type ConfirmKeyTransferStarted struct {
	Chain                     github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	TxID                      Hash                                                            `protobuf:"bytes,2,opt,name=tx_id,json=txId,proto3,customtype=Hash" json:"tx_id"`
	GatewayAddress            Address                                                         `protobuf:"bytes,3,opt,name=gateway_address,json=gatewayAddress,proto3,customtype=Address" json:"gateway_address"`
	ConfirmationHeight        uint64                                                          `protobuf:"varint,4,opt,name=confirmation_height,json=confirmationHeight,proto3" json:"confirmation_height,omitempty"`
	exported.PollParticipants `protobuf:"bytes,5,opt,name=participants,proto3,embedded=participants" json:"participants"`
}

func NewConfirmKeyTransferStarted added in v0.21.0

func NewConfirmKeyTransferStarted(chain nexus.ChainName, txID Hash, gatewayAddress Address, confirmationHeight uint64, participants vote.PollParticipants) *ConfirmKeyTransferStarted

NewConfirmKeyTransferStarted is the constructor for event confirm key transfer

func (*ConfirmKeyTransferStarted) Descriptor added in v0.21.0

func (*ConfirmKeyTransferStarted) Descriptor() ([]byte, []int)

func (*ConfirmKeyTransferStarted) GetChain added in v0.21.0

func (*ConfirmKeyTransferStarted) GetConfirmationHeight added in v0.21.0

func (m *ConfirmKeyTransferStarted) GetConfirmationHeight() uint64

func (*ConfirmKeyTransferStarted) Marshal added in v0.21.0

func (m *ConfirmKeyTransferStarted) Marshal() (dAtA []byte, err error)

func (*ConfirmKeyTransferStarted) MarshalTo added in v0.21.0

func (m *ConfirmKeyTransferStarted) MarshalTo(dAtA []byte) (int, error)

func (*ConfirmKeyTransferStarted) MarshalToSizedBuffer added in v0.21.0

func (m *ConfirmKeyTransferStarted) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ConfirmKeyTransferStarted) ProtoMessage added in v0.21.0

func (*ConfirmKeyTransferStarted) ProtoMessage()

func (*ConfirmKeyTransferStarted) Reset added in v0.21.0

func (m *ConfirmKeyTransferStarted) Reset()

func (*ConfirmKeyTransferStarted) Size added in v0.21.0

func (m *ConfirmKeyTransferStarted) Size() (n int)

func (*ConfirmKeyTransferStarted) String added in v0.21.0

func (m *ConfirmKeyTransferStarted) String() string

func (*ConfirmKeyTransferStarted) Unmarshal added in v0.21.0

func (m *ConfirmKeyTransferStarted) Unmarshal(dAtA []byte) error

func (*ConfirmKeyTransferStarted) XXX_DiscardUnknown added in v0.21.0

func (m *ConfirmKeyTransferStarted) XXX_DiscardUnknown()

func (*ConfirmKeyTransferStarted) XXX_Marshal added in v0.21.0

func (m *ConfirmKeyTransferStarted) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ConfirmKeyTransferStarted) XXX_Merge added in v0.21.0

func (m *ConfirmKeyTransferStarted) XXX_Merge(src proto.Message)

func (*ConfirmKeyTransferStarted) XXX_MessageName added in v0.33.1

func (*ConfirmKeyTransferStarted) XXX_MessageName() string

func (*ConfirmKeyTransferStarted) XXX_Size added in v0.21.0

func (m *ConfirmKeyTransferStarted) XXX_Size() int

func (*ConfirmKeyTransferStarted) XXX_Unmarshal added in v0.21.0

func (m *ConfirmKeyTransferStarted) XXX_Unmarshal(b []byte) error

type ConfirmTokenRequest

type ConfirmTokenRequest struct {
	Sender github_com_cosmos_cosmos_sdk_types.AccAddress                   `protobuf:"bytes,1,opt,name=sender,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"sender,omitempty"`
	Chain  github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	TxID   Hash                                                            `protobuf:"bytes,3,opt,name=tx_id,json=txId,proto3,customtype=Hash" json:"tx_id"`
	Asset  Asset                                                           `protobuf:"bytes,4,opt,name=asset,proto3" json:"asset"`
}

MsgConfirmToken represents a token deploy confirmation message

func NewConfirmTokenRequest

func NewConfirmTokenRequest(sender sdk.AccAddress, chain string, asset Asset, txID common.Hash) *ConfirmTokenRequest

NewConfirmTokenRequest creates a message of type ConfirmTokenRequest

func (*ConfirmTokenRequest) Descriptor

func (*ConfirmTokenRequest) Descriptor() ([]byte, []int)

func (ConfirmTokenRequest) GetSignBytes

func (m ConfirmTokenRequest) GetSignBytes() []byte

GetSignBytes implements sdk.Msg

func (ConfirmTokenRequest) GetSigners

func (m ConfirmTokenRequest) GetSigners() []sdk.AccAddress

GetSigners implements sdk.Msg

func (*ConfirmTokenRequest) Marshal

func (m *ConfirmTokenRequest) Marshal() (dAtA []byte, err error)

func (*ConfirmTokenRequest) MarshalTo

func (m *ConfirmTokenRequest) MarshalTo(dAtA []byte) (int, error)

func (*ConfirmTokenRequest) MarshalToSizedBuffer

func (m *ConfirmTokenRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ConfirmTokenRequest) ProtoMessage

func (*ConfirmTokenRequest) ProtoMessage()

func (*ConfirmTokenRequest) Reset

func (m *ConfirmTokenRequest) Reset()

func (ConfirmTokenRequest) Route

func (m ConfirmTokenRequest) Route() string

Route implements sdk.Msg

func (*ConfirmTokenRequest) Size

func (m *ConfirmTokenRequest) Size() (n int)

func (*ConfirmTokenRequest) String

func (m *ConfirmTokenRequest) String() string

func (ConfirmTokenRequest) Type

func (m ConfirmTokenRequest) Type() string

Type implements sdk.Msg

func (*ConfirmTokenRequest) Unmarshal

func (m *ConfirmTokenRequest) Unmarshal(dAtA []byte) error

func (ConfirmTokenRequest) ValidateBasic

func (m ConfirmTokenRequest) ValidateBasic() error

ValidateBasic implements sdk.Msg

func (*ConfirmTokenRequest) XXX_DiscardUnknown

func (m *ConfirmTokenRequest) XXX_DiscardUnknown()

func (*ConfirmTokenRequest) XXX_Marshal

func (m *ConfirmTokenRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ConfirmTokenRequest) XXX_Merge

func (m *ConfirmTokenRequest) XXX_Merge(src proto.Message)

func (*ConfirmTokenRequest) XXX_Size

func (m *ConfirmTokenRequest) XXX_Size() int

func (*ConfirmTokenRequest) XXX_Unmarshal

func (m *ConfirmTokenRequest) XXX_Unmarshal(b []byte) error

type ConfirmTokenResponse

type ConfirmTokenResponse struct {
}

func (*ConfirmTokenResponse) Descriptor

func (*ConfirmTokenResponse) Descriptor() ([]byte, []int)

func (*ConfirmTokenResponse) Marshal

func (m *ConfirmTokenResponse) Marshal() (dAtA []byte, err error)

func (*ConfirmTokenResponse) MarshalTo

func (m *ConfirmTokenResponse) MarshalTo(dAtA []byte) (int, error)

func (*ConfirmTokenResponse) MarshalToSizedBuffer

func (m *ConfirmTokenResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ConfirmTokenResponse) ProtoMessage

func (*ConfirmTokenResponse) ProtoMessage()

func (*ConfirmTokenResponse) Reset

func (m *ConfirmTokenResponse) Reset()

func (*ConfirmTokenResponse) Size

func (m *ConfirmTokenResponse) Size() (n int)

func (*ConfirmTokenResponse) String

func (m *ConfirmTokenResponse) String() string

func (*ConfirmTokenResponse) Unmarshal

func (m *ConfirmTokenResponse) Unmarshal(dAtA []byte) error

func (*ConfirmTokenResponse) XXX_DiscardUnknown

func (m *ConfirmTokenResponse) XXX_DiscardUnknown()

func (*ConfirmTokenResponse) XXX_Marshal

func (m *ConfirmTokenResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ConfirmTokenResponse) XXX_Merge

func (m *ConfirmTokenResponse) XXX_Merge(src proto.Message)

func (*ConfirmTokenResponse) XXX_Size

func (m *ConfirmTokenResponse) XXX_Size() int

func (*ConfirmTokenResponse) XXX_Unmarshal

func (m *ConfirmTokenResponse) XXX_Unmarshal(b []byte) error

type ConfirmTokenStarted added in v0.21.0

type ConfirmTokenStarted struct {
	TxID                      Hash                                                            `protobuf:"bytes,1,opt,name=tx_id,json=txId,proto3,customtype=Hash" json:"tx_id"`
	Chain                     github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	GatewayAddress            Address                                                         `protobuf:"bytes,3,opt,name=gateway_address,json=gatewayAddress,proto3,customtype=Address" json:"gateway_address"`
	TokenAddress              Address                                                         `protobuf:"bytes,4,opt,name=token_address,json=tokenAddress,proto3,customtype=Address" json:"token_address"`
	TokenDetails              TokenDetails                                                    `protobuf:"bytes,5,opt,name=token_details,json=tokenDetails,proto3" json:"token_details"`
	ConfirmationHeight        uint64                                                          `protobuf:"varint,6,opt,name=confirmation_height,json=confirmationHeight,proto3" json:"confirmation_height,omitempty"`
	exported.PollParticipants `protobuf:"bytes,7,opt,name=participants,proto3,embedded=participants" json:"participants"`
}

func (*ConfirmTokenStarted) Descriptor added in v0.21.0

func (*ConfirmTokenStarted) Descriptor() ([]byte, []int)

func (*ConfirmTokenStarted) GetChain added in v0.21.0

func (*ConfirmTokenStarted) GetConfirmationHeight added in v0.21.0

func (m *ConfirmTokenStarted) GetConfirmationHeight() uint64

func (*ConfirmTokenStarted) GetTokenDetails added in v0.21.0

func (m *ConfirmTokenStarted) GetTokenDetails() TokenDetails

func (*ConfirmTokenStarted) Marshal added in v0.21.0

func (m *ConfirmTokenStarted) Marshal() (dAtA []byte, err error)

func (*ConfirmTokenStarted) MarshalTo added in v0.21.0

func (m *ConfirmTokenStarted) MarshalTo(dAtA []byte) (int, error)

func (*ConfirmTokenStarted) MarshalToSizedBuffer added in v0.21.0

func (m *ConfirmTokenStarted) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ConfirmTokenStarted) ProtoMessage added in v0.21.0

func (*ConfirmTokenStarted) ProtoMessage()

func (*ConfirmTokenStarted) Reset added in v0.21.0

func (m *ConfirmTokenStarted) Reset()

func (*ConfirmTokenStarted) Size added in v0.21.0

func (m *ConfirmTokenStarted) Size() (n int)

func (*ConfirmTokenStarted) String added in v0.21.0

func (m *ConfirmTokenStarted) String() string

func (*ConfirmTokenStarted) Unmarshal added in v0.21.0

func (m *ConfirmTokenStarted) Unmarshal(dAtA []byte) error

func (*ConfirmTokenStarted) XXX_DiscardUnknown added in v0.21.0

func (m *ConfirmTokenStarted) XXX_DiscardUnknown()

func (*ConfirmTokenStarted) XXX_Marshal added in v0.21.0

func (m *ConfirmTokenStarted) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ConfirmTokenStarted) XXX_Merge added in v0.21.0

func (m *ConfirmTokenStarted) XXX_Merge(src proto.Message)

func (*ConfirmTokenStarted) XXX_MessageName added in v0.33.1

func (*ConfirmTokenStarted) XXX_MessageName() string

func (*ConfirmTokenStarted) XXX_Size added in v0.21.0

func (m *ConfirmTokenStarted) XXX_Size() int

func (*ConfirmTokenStarted) XXX_Unmarshal added in v0.21.0

func (m *ConfirmTokenStarted) XXX_Unmarshal(b []byte) error

type ConfirmTransferKeyRequest

type ConfirmTransferKeyRequest struct {
	Sender github_com_cosmos_cosmos_sdk_types.AccAddress                   `protobuf:"bytes,1,opt,name=sender,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"sender,omitempty"`
	Chain  github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	TxID   Hash                                                            `protobuf:"bytes,3,opt,name=tx_id,json=txId,proto3,customtype=Hash" json:"tx_id"`
}

func NewConfirmTransferKeyRequest

func NewConfirmTransferKeyRequest(sender sdk.AccAddress, chain string, txID common.Hash) *ConfirmTransferKeyRequest

NewConfirmTransferKeyRequest creates a message of type ConfirmTransferKeyRequest

func (*ConfirmTransferKeyRequest) Descriptor

func (*ConfirmTransferKeyRequest) Descriptor() ([]byte, []int)

func (ConfirmTransferKeyRequest) GetSignBytes

func (m ConfirmTransferKeyRequest) GetSignBytes() []byte

GetSignBytes implements sdk.Msg

func (ConfirmTransferKeyRequest) GetSigners

func (m ConfirmTransferKeyRequest) GetSigners() []sdk.AccAddress

GetSigners implements sdk.Msg

func (*ConfirmTransferKeyRequest) Marshal

func (m *ConfirmTransferKeyRequest) Marshal() (dAtA []byte, err error)

func (*ConfirmTransferKeyRequest) MarshalTo

func (m *ConfirmTransferKeyRequest) MarshalTo(dAtA []byte) (int, error)

func (*ConfirmTransferKeyRequest) MarshalToSizedBuffer

func (m *ConfirmTransferKeyRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ConfirmTransferKeyRequest) ProtoMessage

func (*ConfirmTransferKeyRequest) ProtoMessage()

func (*ConfirmTransferKeyRequest) Reset

func (m *ConfirmTransferKeyRequest) Reset()

func (ConfirmTransferKeyRequest) Route

Route implements sdk.Msg

func (*ConfirmTransferKeyRequest) Size

func (m *ConfirmTransferKeyRequest) Size() (n int)

func (*ConfirmTransferKeyRequest) String

func (m *ConfirmTransferKeyRequest) String() string

func (ConfirmTransferKeyRequest) Type

Type implements sdk.Msg

func (*ConfirmTransferKeyRequest) Unmarshal

func (m *ConfirmTransferKeyRequest) Unmarshal(dAtA []byte) error

func (ConfirmTransferKeyRequest) ValidateBasic

func (m ConfirmTransferKeyRequest) ValidateBasic() error

ValidateBasic implements sdk.Msg

func (*ConfirmTransferKeyRequest) XXX_DiscardUnknown

func (m *ConfirmTransferKeyRequest) XXX_DiscardUnknown()

func (*ConfirmTransferKeyRequest) XXX_Marshal

func (m *ConfirmTransferKeyRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ConfirmTransferKeyRequest) XXX_Merge

func (m *ConfirmTransferKeyRequest) XXX_Merge(src proto.Message)

func (*ConfirmTransferKeyRequest) XXX_Size

func (m *ConfirmTransferKeyRequest) XXX_Size() int

func (*ConfirmTransferKeyRequest) XXX_Unmarshal

func (m *ConfirmTransferKeyRequest) XXX_Unmarshal(b []byte) error

type ConfirmTransferKeyResponse

type ConfirmTransferKeyResponse struct {
}

func (*ConfirmTransferKeyResponse) Descriptor

func (*ConfirmTransferKeyResponse) Descriptor() ([]byte, []int)

func (*ConfirmTransferKeyResponse) Marshal

func (m *ConfirmTransferKeyResponse) Marshal() (dAtA []byte, err error)

func (*ConfirmTransferKeyResponse) MarshalTo

func (m *ConfirmTransferKeyResponse) MarshalTo(dAtA []byte) (int, error)

func (*ConfirmTransferKeyResponse) MarshalToSizedBuffer

func (m *ConfirmTransferKeyResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ConfirmTransferKeyResponse) ProtoMessage

func (*ConfirmTransferKeyResponse) ProtoMessage()

func (*ConfirmTransferKeyResponse) Reset

func (m *ConfirmTransferKeyResponse) Reset()

func (*ConfirmTransferKeyResponse) Size

func (m *ConfirmTransferKeyResponse) Size() (n int)

func (*ConfirmTransferKeyResponse) String

func (m *ConfirmTransferKeyResponse) String() string

func (*ConfirmTransferKeyResponse) Unmarshal

func (m *ConfirmTransferKeyResponse) Unmarshal(dAtA []byte) error

func (*ConfirmTransferKeyResponse) XXX_DiscardUnknown

func (m *ConfirmTransferKeyResponse) XXX_DiscardUnknown()

func (*ConfirmTransferKeyResponse) XXX_Marshal

func (m *ConfirmTransferKeyResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ConfirmTransferKeyResponse) XXX_Merge

func (m *ConfirmTransferKeyResponse) XXX_Merge(src proto.Message)

func (*ConfirmTransferKeyResponse) XXX_Size

func (m *ConfirmTransferKeyResponse) XXX_Size() int

func (*ConfirmTransferKeyResponse) XXX_Unmarshal

func (m *ConfirmTransferKeyResponse) XXX_Unmarshal(b []byte) error

type ConfirmationHeightRequest added in v0.13.4

type ConfirmationHeightRequest struct {
	Chain string `protobuf:"bytes,1,opt,name=chain,proto3" json:"chain,omitempty"`
}

func (*ConfirmationHeightRequest) Descriptor added in v0.13.4

func (*ConfirmationHeightRequest) Descriptor() ([]byte, []int)

func (*ConfirmationHeightRequest) Marshal added in v0.13.4

func (m *ConfirmationHeightRequest) Marshal() (dAtA []byte, err error)

func (*ConfirmationHeightRequest) MarshalTo added in v0.13.4

func (m *ConfirmationHeightRequest) MarshalTo(dAtA []byte) (int, error)

func (*ConfirmationHeightRequest) MarshalToSizedBuffer added in v0.13.4

func (m *ConfirmationHeightRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ConfirmationHeightRequest) ProtoMessage added in v0.13.4

func (*ConfirmationHeightRequest) ProtoMessage()

func (*ConfirmationHeightRequest) Reset added in v0.13.4

func (m *ConfirmationHeightRequest) Reset()

func (*ConfirmationHeightRequest) Size added in v0.13.4

func (m *ConfirmationHeightRequest) Size() (n int)

func (*ConfirmationHeightRequest) String added in v0.13.4

func (m *ConfirmationHeightRequest) String() string

func (*ConfirmationHeightRequest) Unmarshal added in v0.13.4

func (m *ConfirmationHeightRequest) Unmarshal(dAtA []byte) error

func (*ConfirmationHeightRequest) XXX_DiscardUnknown added in v0.13.4

func (m *ConfirmationHeightRequest) XXX_DiscardUnknown()

func (*ConfirmationHeightRequest) XXX_Marshal added in v0.13.4

func (m *ConfirmationHeightRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ConfirmationHeightRequest) XXX_Merge added in v0.13.4

func (m *ConfirmationHeightRequest) XXX_Merge(src proto.Message)

func (*ConfirmationHeightRequest) XXX_Size added in v0.13.4

func (m *ConfirmationHeightRequest) XXX_Size() int

func (*ConfirmationHeightRequest) XXX_Unmarshal added in v0.13.4

func (m *ConfirmationHeightRequest) XXX_Unmarshal(b []byte) error

type ConfirmationHeightResponse added in v0.13.4

type ConfirmationHeightResponse struct {
	Height uint64 `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
}

func (*ConfirmationHeightResponse) Descriptor added in v0.13.4

func (*ConfirmationHeightResponse) Descriptor() ([]byte, []int)

func (*ConfirmationHeightResponse) Marshal added in v0.13.4

func (m *ConfirmationHeightResponse) Marshal() (dAtA []byte, err error)

func (*ConfirmationHeightResponse) MarshalTo added in v0.13.4

func (m *ConfirmationHeightResponse) MarshalTo(dAtA []byte) (int, error)

func (*ConfirmationHeightResponse) MarshalToSizedBuffer added in v0.13.4

func (m *ConfirmationHeightResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ConfirmationHeightResponse) ProtoMessage added in v0.13.4

func (*ConfirmationHeightResponse) ProtoMessage()

func (*ConfirmationHeightResponse) Reset added in v0.13.4

func (m *ConfirmationHeightResponse) Reset()

func (*ConfirmationHeightResponse) Size added in v0.13.4

func (m *ConfirmationHeightResponse) Size() (n int)

func (*ConfirmationHeightResponse) String added in v0.13.4

func (m *ConfirmationHeightResponse) String() string

func (*ConfirmationHeightResponse) Unmarshal added in v0.13.4

func (m *ConfirmationHeightResponse) Unmarshal(dAtA []byte) error

func (*ConfirmationHeightResponse) XXX_DiscardUnknown added in v0.13.4

func (m *ConfirmationHeightResponse) XXX_DiscardUnknown()

func (*ConfirmationHeightResponse) XXX_Marshal added in v0.13.4

func (m *ConfirmationHeightResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ConfirmationHeightResponse) XXX_Merge added in v0.13.4

func (m *ConfirmationHeightResponse) XXX_Merge(src proto.Message)

func (*ConfirmationHeightResponse) XXX_Size added in v0.13.4

func (m *ConfirmationHeightResponse) XXX_Size() int

func (*ConfirmationHeightResponse) XXX_Unmarshal added in v0.13.4

func (m *ConfirmationHeightResponse) XXX_Unmarshal(b []byte) error

type ContractCallApproved added in v0.25.0

type ContractCallApproved struct {
	Chain            github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	EventID          EventID                                                         `protobuf:"bytes,2,opt,name=event_id,json=eventId,proto3,casttype=EventID" json:"event_id,omitempty"`
	CommandID        CommandID                                                       `protobuf:"bytes,3,opt,name=command_id,json=commandId,proto3,customtype=CommandID" json:"command_id"`
	Sender           string                                                          `protobuf:"bytes,4,opt,name=sender,proto3" json:"sender,omitempty"`
	DestinationChain github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 182-byte string literal not displayed */
	ContractAddress  string                                                          `protobuf:"bytes,6,opt,name=contract_address,json=contractAddress,proto3" json:"contract_address,omitempty"`
	PayloadHash      Hash                                                            `protobuf:"bytes,7,opt,name=payload_hash,json=payloadHash,proto3,customtype=Hash" json:"payload_hash"`
}

func (*ContractCallApproved) Descriptor added in v0.25.0

func (*ContractCallApproved) Descriptor() ([]byte, []int)

func (*ContractCallApproved) GetChain added in v0.25.0

func (*ContractCallApproved) GetContractAddress added in v0.25.0

func (m *ContractCallApproved) GetContractAddress() string

func (*ContractCallApproved) GetDestinationChain added in v0.25.0

func (*ContractCallApproved) GetEventID added in v0.25.0

func (m *ContractCallApproved) GetEventID() EventID

func (*ContractCallApproved) GetSender added in v0.25.0

func (m *ContractCallApproved) GetSender() string

func (*ContractCallApproved) Marshal added in v0.25.0

func (m *ContractCallApproved) Marshal() (dAtA []byte, err error)

func (*ContractCallApproved) MarshalTo added in v0.25.0

func (m *ContractCallApproved) MarshalTo(dAtA []byte) (int, error)

func (*ContractCallApproved) MarshalToSizedBuffer added in v0.25.0

func (m *ContractCallApproved) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ContractCallApproved) ProtoMessage added in v0.25.0

func (*ContractCallApproved) ProtoMessage()

func (*ContractCallApproved) Reset added in v0.25.0

func (m *ContractCallApproved) Reset()

func (*ContractCallApproved) Size added in v0.25.0

func (m *ContractCallApproved) Size() (n int)

func (*ContractCallApproved) String added in v0.25.0

func (m *ContractCallApproved) String() string

func (*ContractCallApproved) Unmarshal added in v0.25.0

func (m *ContractCallApproved) Unmarshal(dAtA []byte) error

func (*ContractCallApproved) XXX_DiscardUnknown added in v0.25.0

func (m *ContractCallApproved) XXX_DiscardUnknown()

func (*ContractCallApproved) XXX_Marshal added in v0.25.0

func (m *ContractCallApproved) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ContractCallApproved) XXX_Merge added in v0.25.0

func (m *ContractCallApproved) XXX_Merge(src proto.Message)

func (*ContractCallApproved) XXX_MessageName added in v0.33.1

func (*ContractCallApproved) XXX_MessageName() string

func (*ContractCallApproved) XXX_Size added in v0.25.0

func (m *ContractCallApproved) XXX_Size() int

func (*ContractCallApproved) XXX_Unmarshal added in v0.25.0

func (m *ContractCallApproved) XXX_Unmarshal(b []byte) error

type ContractCallFailed added in v0.32.0

type ContractCallFailed struct {
	Chain     github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	MessageID string                                                          `protobuf:"bytes,2,opt,name=msg_id,json=msgId,proto3" json:"msg_id,omitempty"`
}

func (*ContractCallFailed) Descriptor added in v0.32.0

func (*ContractCallFailed) Descriptor() ([]byte, []int)

func (*ContractCallFailed) GetChain added in v0.32.0

func (*ContractCallFailed) GetMessageID added in v0.32.0

func (m *ContractCallFailed) GetMessageID() string

func (*ContractCallFailed) Marshal added in v0.32.0

func (m *ContractCallFailed) Marshal() (dAtA []byte, err error)

func (*ContractCallFailed) MarshalTo added in v0.32.0

func (m *ContractCallFailed) MarshalTo(dAtA []byte) (int, error)

func (*ContractCallFailed) MarshalToSizedBuffer added in v0.32.0

func (m *ContractCallFailed) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ContractCallFailed) ProtoMessage added in v0.32.0

func (*ContractCallFailed) ProtoMessage()

func (*ContractCallFailed) Reset added in v0.32.0

func (m *ContractCallFailed) Reset()

func (*ContractCallFailed) Size added in v0.32.0

func (m *ContractCallFailed) Size() (n int)

func (*ContractCallFailed) String added in v0.32.0

func (m *ContractCallFailed) String() string

func (*ContractCallFailed) Unmarshal added in v0.32.0

func (m *ContractCallFailed) Unmarshal(dAtA []byte) error

func (*ContractCallFailed) XXX_DiscardUnknown added in v0.32.0

func (m *ContractCallFailed) XXX_DiscardUnknown()

func (*ContractCallFailed) XXX_Marshal added in v0.32.0

func (m *ContractCallFailed) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ContractCallFailed) XXX_Merge added in v0.32.0

func (m *ContractCallFailed) XXX_Merge(src proto.Message)

func (*ContractCallFailed) XXX_MessageName added in v0.33.1

func (*ContractCallFailed) XXX_MessageName() string

func (*ContractCallFailed) XXX_Size added in v0.32.0

func (m *ContractCallFailed) XXX_Size() int

func (*ContractCallFailed) XXX_Unmarshal added in v0.32.0

func (m *ContractCallFailed) XXX_Unmarshal(b []byte) error

type ContractCallWithMintApproved added in v0.25.0

type ContractCallWithMintApproved struct {
	Chain            github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	EventID          EventID                                                         `protobuf:"bytes,2,opt,name=event_id,json=eventId,proto3,casttype=EventID" json:"event_id,omitempty"`
	CommandID        CommandID                                                       `protobuf:"bytes,3,opt,name=command_id,json=commandId,proto3,customtype=CommandID" json:"command_id"`
	Sender           string                                                          `protobuf:"bytes,4,opt,name=sender,proto3" json:"sender,omitempty"`
	DestinationChain github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 182-byte string literal not displayed */
	ContractAddress  string                                                          `protobuf:"bytes,6,opt,name=contract_address,json=contractAddress,proto3" json:"contract_address,omitempty"`
	PayloadHash      Hash                                                            `protobuf:"bytes,7,opt,name=payload_hash,json=payloadHash,proto3,customtype=Hash" json:"payload_hash"`
	Asset            types.Coin                                                      `protobuf:"bytes,8,opt,name=asset,proto3" json:"asset"`
}

func (*ContractCallWithMintApproved) Descriptor added in v0.25.0

func (*ContractCallWithMintApproved) Descriptor() ([]byte, []int)

func (*ContractCallWithMintApproved) GetAsset added in v0.25.0

func (m *ContractCallWithMintApproved) GetAsset() types.Coin

func (*ContractCallWithMintApproved) GetChain added in v0.25.0

func (*ContractCallWithMintApproved) GetContractAddress added in v0.25.0

func (m *ContractCallWithMintApproved) GetContractAddress() string

func (*ContractCallWithMintApproved) GetDestinationChain added in v0.25.0

func (*ContractCallWithMintApproved) GetEventID added in v0.25.0

func (m *ContractCallWithMintApproved) GetEventID() EventID

func (*ContractCallWithMintApproved) GetSender added in v0.25.0

func (m *ContractCallWithMintApproved) GetSender() string

func (*ContractCallWithMintApproved) Marshal added in v0.25.0

func (m *ContractCallWithMintApproved) Marshal() (dAtA []byte, err error)

func (*ContractCallWithMintApproved) MarshalTo added in v0.25.0

func (m *ContractCallWithMintApproved) MarshalTo(dAtA []byte) (int, error)

func (*ContractCallWithMintApproved) MarshalToSizedBuffer added in v0.25.0

func (m *ContractCallWithMintApproved) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ContractCallWithMintApproved) ProtoMessage added in v0.25.0

func (*ContractCallWithMintApproved) ProtoMessage()

func (*ContractCallWithMintApproved) Reset added in v0.25.0

func (m *ContractCallWithMintApproved) Reset()

func (*ContractCallWithMintApproved) Size added in v0.25.0

func (m *ContractCallWithMintApproved) Size() (n int)

func (*ContractCallWithMintApproved) String added in v0.25.0

func (*ContractCallWithMintApproved) Unmarshal added in v0.25.0

func (m *ContractCallWithMintApproved) Unmarshal(dAtA []byte) error

func (*ContractCallWithMintApproved) XXX_DiscardUnknown added in v0.25.0

func (m *ContractCallWithMintApproved) XXX_DiscardUnknown()

func (*ContractCallWithMintApproved) XXX_Marshal added in v0.25.0

func (m *ContractCallWithMintApproved) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ContractCallWithMintApproved) XXX_Merge added in v0.25.0

func (m *ContractCallWithMintApproved) XXX_Merge(src proto.Message)

func (*ContractCallWithMintApproved) XXX_MessageName added in v0.33.1

func (*ContractCallWithMintApproved) XXX_MessageName() string

func (*ContractCallWithMintApproved) XXX_Size added in v0.25.0

func (m *ContractCallWithMintApproved) XXX_Size() int

func (*ContractCallWithMintApproved) XXX_Unmarshal added in v0.25.0

func (m *ContractCallWithMintApproved) XXX_Unmarshal(b []byte) error

type CreateBurnTokensRequest

type CreateBurnTokensRequest struct {
	Sender github_com_cosmos_cosmos_sdk_types.AccAddress                   `protobuf:"bytes,1,opt,name=sender,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"sender,omitempty"`
	Chain  github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
}

CreateBurnTokensRequest represents the message to create commands to burn tokens with AxelarGateway

func NewCreateBurnTokensRequest

func NewCreateBurnTokensRequest(sender sdk.AccAddress, chain string) *CreateBurnTokensRequest

NewCreateBurnTokensRequest is the constructor for CreateBurnTokensRequest

func (*CreateBurnTokensRequest) Descriptor

func (*CreateBurnTokensRequest) Descriptor() ([]byte, []int)

func (CreateBurnTokensRequest) GetSignBytes

func (m CreateBurnTokensRequest) GetSignBytes() []byte

GetSignBytes implements sdk.Msg

func (CreateBurnTokensRequest) GetSigners

func (m CreateBurnTokensRequest) GetSigners() []sdk.AccAddress

GetSigners implements sdk.Msg

func (*CreateBurnTokensRequest) Marshal

func (m *CreateBurnTokensRequest) Marshal() (dAtA []byte, err error)

func (*CreateBurnTokensRequest) MarshalTo

func (m *CreateBurnTokensRequest) MarshalTo(dAtA []byte) (int, error)

func (*CreateBurnTokensRequest) MarshalToSizedBuffer

func (m *CreateBurnTokensRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CreateBurnTokensRequest) ProtoMessage

func (*CreateBurnTokensRequest) ProtoMessage()

func (*CreateBurnTokensRequest) Reset

func (m *CreateBurnTokensRequest) Reset()

func (CreateBurnTokensRequest) Route

func (m CreateBurnTokensRequest) Route() string

Route implements sdk.Msg

func (*CreateBurnTokensRequest) Size

func (m *CreateBurnTokensRequest) Size() (n int)

func (*CreateBurnTokensRequest) String

func (m *CreateBurnTokensRequest) String() string

func (CreateBurnTokensRequest) Type

Type implements sdk.Msg

func (*CreateBurnTokensRequest) Unmarshal

func (m *CreateBurnTokensRequest) Unmarshal(dAtA []byte) error

func (CreateBurnTokensRequest) ValidateBasic

func (m CreateBurnTokensRequest) ValidateBasic() error

ValidateBasic implements sdk.Msg

func (*CreateBurnTokensRequest) XXX_DiscardUnknown

func (m *CreateBurnTokensRequest) XXX_DiscardUnknown()

func (*CreateBurnTokensRequest) XXX_Marshal

func (m *CreateBurnTokensRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateBurnTokensRequest) XXX_Merge

func (m *CreateBurnTokensRequest) XXX_Merge(src proto.Message)

func (*CreateBurnTokensRequest) XXX_Size

func (m *CreateBurnTokensRequest) XXX_Size() int

func (*CreateBurnTokensRequest) XXX_Unmarshal

func (m *CreateBurnTokensRequest) XXX_Unmarshal(b []byte) error

type CreateBurnTokensResponse

type CreateBurnTokensResponse struct {
}

func (*CreateBurnTokensResponse) Descriptor

func (*CreateBurnTokensResponse) Descriptor() ([]byte, []int)

func (*CreateBurnTokensResponse) Marshal

func (m *CreateBurnTokensResponse) Marshal() (dAtA []byte, err error)

func (*CreateBurnTokensResponse) MarshalTo

func (m *CreateBurnTokensResponse) MarshalTo(dAtA []byte) (int, error)

func (*CreateBurnTokensResponse) MarshalToSizedBuffer

func (m *CreateBurnTokensResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CreateBurnTokensResponse) ProtoMessage

func (*CreateBurnTokensResponse) ProtoMessage()

func (*CreateBurnTokensResponse) Reset

func (m *CreateBurnTokensResponse) Reset()

func (*CreateBurnTokensResponse) Size

func (m *CreateBurnTokensResponse) Size() (n int)

func (*CreateBurnTokensResponse) String

func (m *CreateBurnTokensResponse) String() string

func (*CreateBurnTokensResponse) Unmarshal

func (m *CreateBurnTokensResponse) Unmarshal(dAtA []byte) error

func (*CreateBurnTokensResponse) XXX_DiscardUnknown

func (m *CreateBurnTokensResponse) XXX_DiscardUnknown()

func (*CreateBurnTokensResponse) XXX_Marshal

func (m *CreateBurnTokensResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateBurnTokensResponse) XXX_Merge

func (m *CreateBurnTokensResponse) XXX_Merge(src proto.Message)

func (*CreateBurnTokensResponse) XXX_Size

func (m *CreateBurnTokensResponse) XXX_Size() int

func (*CreateBurnTokensResponse) XXX_Unmarshal

func (m *CreateBurnTokensResponse) XXX_Unmarshal(b []byte) error

type CreateDeployTokenRequest

type CreateDeployTokenRequest struct {
	Sender         github_com_cosmos_cosmos_sdk_types.AccAddress                   `protobuf:"bytes,1,opt,name=sender,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"sender,omitempty"`
	Chain          github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	Asset          Asset                                                           `protobuf:"bytes,3,opt,name=asset,proto3" json:"asset"`
	TokenDetails   TokenDetails                                                    `protobuf:"bytes,4,opt,name=token_details,json=tokenDetails,proto3" json:"token_details"`
	Address        Address                                                         `protobuf:"bytes,6,opt,name=address,proto3,customtype=Address" json:"address"`
	DailyMintLimit string                                                          `protobuf:"bytes,7,opt,name=daily_mint_limit,json=dailyMintLimit,proto3" json:"daily_mint_limit,omitempty"`
}

CreateDeployTokenRequest represents the message to create a deploy token command for AxelarGateway

func NewCreateDeployTokenRequest

func NewCreateDeployTokenRequest(sender sdk.AccAddress, chain string, asset Asset, tokenDetails TokenDetails, address Address, dailyMintLimit string) *CreateDeployTokenRequest

NewCreateDeployTokenRequest is the constructor for CreateDeployTokenRequest

func (*CreateDeployTokenRequest) Descriptor

func (*CreateDeployTokenRequest) Descriptor() ([]byte, []int)

func (CreateDeployTokenRequest) GetSignBytes

func (m CreateDeployTokenRequest) GetSignBytes() []byte

GetSignBytes implements sdk.Msg

func (CreateDeployTokenRequest) GetSigners

func (m CreateDeployTokenRequest) GetSigners() []sdk.AccAddress

GetSigners implements sdk.Msg

func (*CreateDeployTokenRequest) Marshal

func (m *CreateDeployTokenRequest) Marshal() (dAtA []byte, err error)

func (*CreateDeployTokenRequest) MarshalTo

func (m *CreateDeployTokenRequest) MarshalTo(dAtA []byte) (int, error)

func (*CreateDeployTokenRequest) MarshalToSizedBuffer

func (m *CreateDeployTokenRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CreateDeployTokenRequest) ProtoMessage

func (*CreateDeployTokenRequest) ProtoMessage()

func (*CreateDeployTokenRequest) Reset

func (m *CreateDeployTokenRequest) Reset()

func (CreateDeployTokenRequest) Route

func (m CreateDeployTokenRequest) Route() string

Route implements sdk.Msg

func (*CreateDeployTokenRequest) Size

func (m *CreateDeployTokenRequest) Size() (n int)

func (*CreateDeployTokenRequest) String

func (m *CreateDeployTokenRequest) String() string

func (CreateDeployTokenRequest) Type

Type implements sdk.Msg

func (*CreateDeployTokenRequest) Unmarshal

func (m *CreateDeployTokenRequest) Unmarshal(dAtA []byte) error

func (CreateDeployTokenRequest) ValidateBasic

func (m CreateDeployTokenRequest) ValidateBasic() error

ValidateBasic implements sdk.Msg

func (*CreateDeployTokenRequest) XXX_DiscardUnknown

func (m *CreateDeployTokenRequest) XXX_DiscardUnknown()

func (*CreateDeployTokenRequest) XXX_Marshal

func (m *CreateDeployTokenRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateDeployTokenRequest) XXX_Merge

func (m *CreateDeployTokenRequest) XXX_Merge(src proto.Message)

func (*CreateDeployTokenRequest) XXX_Size

func (m *CreateDeployTokenRequest) XXX_Size() int

func (*CreateDeployTokenRequest) XXX_Unmarshal

func (m *CreateDeployTokenRequest) XXX_Unmarshal(b []byte) error

type CreateDeployTokenResponse

type CreateDeployTokenResponse struct {
}

func (*CreateDeployTokenResponse) Descriptor

func (*CreateDeployTokenResponse) Descriptor() ([]byte, []int)

func (*CreateDeployTokenResponse) Marshal

func (m *CreateDeployTokenResponse) Marshal() (dAtA []byte, err error)

func (*CreateDeployTokenResponse) MarshalTo

func (m *CreateDeployTokenResponse) MarshalTo(dAtA []byte) (int, error)

func (*CreateDeployTokenResponse) MarshalToSizedBuffer

func (m *CreateDeployTokenResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CreateDeployTokenResponse) ProtoMessage

func (*CreateDeployTokenResponse) ProtoMessage()

func (*CreateDeployTokenResponse) Reset

func (m *CreateDeployTokenResponse) Reset()

func (*CreateDeployTokenResponse) Size

func (m *CreateDeployTokenResponse) Size() (n int)

func (*CreateDeployTokenResponse) String

func (m *CreateDeployTokenResponse) String() string

func (*CreateDeployTokenResponse) Unmarshal

func (m *CreateDeployTokenResponse) Unmarshal(dAtA []byte) error

func (*CreateDeployTokenResponse) XXX_DiscardUnknown

func (m *CreateDeployTokenResponse) XXX_DiscardUnknown()

func (*CreateDeployTokenResponse) XXX_Marshal

func (m *CreateDeployTokenResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateDeployTokenResponse) XXX_Merge

func (m *CreateDeployTokenResponse) XXX_Merge(src proto.Message)

func (*CreateDeployTokenResponse) XXX_Size

func (m *CreateDeployTokenResponse) XXX_Size() int

func (*CreateDeployTokenResponse) XXX_Unmarshal

func (m *CreateDeployTokenResponse) XXX_Unmarshal(b []byte) error

type CreatePendingTransfersRequest

type CreatePendingTransfersRequest struct {
	Sender github_com_cosmos_cosmos_sdk_types.AccAddress                   `protobuf:"bytes,1,opt,name=sender,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"sender,omitempty"`
	Chain  github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
}

CreatePendingTransfersRequest represents a message to trigger the creation of commands handling all pending transfers

func NewCreatePendingTransfersRequest

func NewCreatePendingTransfersRequest(sender sdk.AccAddress, chain string) *CreatePendingTransfersRequest

NewCreatePendingTransfersRequest - CreatePendingTransfersRequest constructor

func (*CreatePendingTransfersRequest) Descriptor

func (*CreatePendingTransfersRequest) Descriptor() ([]byte, []int)

func (CreatePendingTransfersRequest) GetSignBytes

func (m CreatePendingTransfersRequest) GetSignBytes() []byte

GetSignBytes returns the message bytes that need to be signed

func (CreatePendingTransfersRequest) GetSigners

func (m CreatePendingTransfersRequest) GetSigners() []sdk.AccAddress

GetSigners returns the set of signers for this message

func (*CreatePendingTransfersRequest) Marshal

func (m *CreatePendingTransfersRequest) Marshal() (dAtA []byte, err error)

func (*CreatePendingTransfersRequest) MarshalTo

func (m *CreatePendingTransfersRequest) MarshalTo(dAtA []byte) (int, error)

func (*CreatePendingTransfersRequest) MarshalToSizedBuffer

func (m *CreatePendingTransfersRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CreatePendingTransfersRequest) ProtoMessage

func (*CreatePendingTransfersRequest) ProtoMessage()

func (*CreatePendingTransfersRequest) Reset

func (m *CreatePendingTransfersRequest) Reset()

func (CreatePendingTransfersRequest) Route

Route returns the route for this message

func (*CreatePendingTransfersRequest) Size

func (m *CreatePendingTransfersRequest) Size() (n int)

func (*CreatePendingTransfersRequest) String

func (CreatePendingTransfersRequest) Type

Type returns the type of the message

func (*CreatePendingTransfersRequest) Unmarshal

func (m *CreatePendingTransfersRequest) Unmarshal(dAtA []byte) error

func (CreatePendingTransfersRequest) ValidateBasic

func (m CreatePendingTransfersRequest) ValidateBasic() error

ValidateBasic executes a stateless message validation

func (*CreatePendingTransfersRequest) XXX_DiscardUnknown

func (m *CreatePendingTransfersRequest) XXX_DiscardUnknown()

func (*CreatePendingTransfersRequest) XXX_Marshal

func (m *CreatePendingTransfersRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreatePendingTransfersRequest) XXX_Merge

func (m *CreatePendingTransfersRequest) XXX_Merge(src proto.Message)

func (*CreatePendingTransfersRequest) XXX_Size

func (m *CreatePendingTransfersRequest) XXX_Size() int

func (*CreatePendingTransfersRequest) XXX_Unmarshal

func (m *CreatePendingTransfersRequest) XXX_Unmarshal(b []byte) error

type CreatePendingTransfersResponse

type CreatePendingTransfersResponse struct {
}

func (*CreatePendingTransfersResponse) Descriptor

func (*CreatePendingTransfersResponse) Descriptor() ([]byte, []int)

func (*CreatePendingTransfersResponse) Marshal

func (m *CreatePendingTransfersResponse) Marshal() (dAtA []byte, err error)

func (*CreatePendingTransfersResponse) MarshalTo

func (m *CreatePendingTransfersResponse) MarshalTo(dAtA []byte) (int, error)

func (*CreatePendingTransfersResponse) MarshalToSizedBuffer

func (m *CreatePendingTransfersResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CreatePendingTransfersResponse) ProtoMessage

func (*CreatePendingTransfersResponse) ProtoMessage()

func (*CreatePendingTransfersResponse) Reset

func (m *CreatePendingTransfersResponse) Reset()

func (*CreatePendingTransfersResponse) Size

func (m *CreatePendingTransfersResponse) Size() (n int)

func (*CreatePendingTransfersResponse) String

func (*CreatePendingTransfersResponse) Unmarshal

func (m *CreatePendingTransfersResponse) Unmarshal(dAtA []byte) error

func (*CreatePendingTransfersResponse) XXX_DiscardUnknown

func (m *CreatePendingTransfersResponse) XXX_DiscardUnknown()

func (*CreatePendingTransfersResponse) XXX_Marshal

func (m *CreatePendingTransfersResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreatePendingTransfersResponse) XXX_Merge

func (m *CreatePendingTransfersResponse) XXX_Merge(src proto.Message)

func (*CreatePendingTransfersResponse) XXX_Size

func (m *CreatePendingTransfersResponse) XXX_Size() int

func (*CreatePendingTransfersResponse) XXX_Unmarshal

func (m *CreatePendingTransfersResponse) XXX_Unmarshal(b []byte) error

type CreateTransferOperatorshipRequest

type CreateTransferOperatorshipRequest struct {
	Sender github_com_cosmos_cosmos_sdk_types.AccAddress                   `protobuf:"bytes,1,opt,name=sender,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"sender,omitempty"`
	Chain  github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	KeyID  github_com_axelarnetwork_axelar_core_x_multisig_exported.KeyID  `` /* 148-byte string literal not displayed */
}

func NewCreateTransferOperatorshipRequest

func NewCreateTransferOperatorshipRequest(sender sdk.AccAddress, chain string, keyID string) *CreateTransferOperatorshipRequest

NewCreateTransferOperatorshipRequest creates a message of type CreateTransferOperatorshipRequest

func (*CreateTransferOperatorshipRequest) Descriptor

func (*CreateTransferOperatorshipRequest) Descriptor() ([]byte, []int)

func (CreateTransferOperatorshipRequest) GetSignBytes

func (m CreateTransferOperatorshipRequest) GetSignBytes() []byte

GetSignBytes implements sdk.Msg

func (CreateTransferOperatorshipRequest) GetSigners

GetSigners implements sdk.Msg

func (*CreateTransferOperatorshipRequest) Marshal

func (m *CreateTransferOperatorshipRequest) Marshal() (dAtA []byte, err error)

func (*CreateTransferOperatorshipRequest) MarshalTo

func (m *CreateTransferOperatorshipRequest) MarshalTo(dAtA []byte) (int, error)

func (*CreateTransferOperatorshipRequest) MarshalToSizedBuffer

func (m *CreateTransferOperatorshipRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CreateTransferOperatorshipRequest) ProtoMessage

func (*CreateTransferOperatorshipRequest) ProtoMessage()

func (*CreateTransferOperatorshipRequest) Reset

func (CreateTransferOperatorshipRequest) Route

Route implements sdk.Msg

func (*CreateTransferOperatorshipRequest) Size

func (m *CreateTransferOperatorshipRequest) Size() (n int)

func (*CreateTransferOperatorshipRequest) String

func (CreateTransferOperatorshipRequest) Type

Type implements sdk.Msg

func (*CreateTransferOperatorshipRequest) Unmarshal

func (m *CreateTransferOperatorshipRequest) Unmarshal(dAtA []byte) error

func (CreateTransferOperatorshipRequest) ValidateBasic

func (m CreateTransferOperatorshipRequest) ValidateBasic() error

ValidateBasic implements sdk.Msg

func (*CreateTransferOperatorshipRequest) XXX_DiscardUnknown

func (m *CreateTransferOperatorshipRequest) XXX_DiscardUnknown()

func (*CreateTransferOperatorshipRequest) XXX_Marshal

func (m *CreateTransferOperatorshipRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateTransferOperatorshipRequest) XXX_Merge

func (*CreateTransferOperatorshipRequest) XXX_Size

func (m *CreateTransferOperatorshipRequest) XXX_Size() int

func (*CreateTransferOperatorshipRequest) XXX_Unmarshal

func (m *CreateTransferOperatorshipRequest) XXX_Unmarshal(b []byte) error

type CreateTransferOperatorshipResponse

type CreateTransferOperatorshipResponse struct {
}

func (*CreateTransferOperatorshipResponse) Descriptor

func (*CreateTransferOperatorshipResponse) Descriptor() ([]byte, []int)

func (*CreateTransferOperatorshipResponse) Marshal

func (m *CreateTransferOperatorshipResponse) Marshal() (dAtA []byte, err error)

func (*CreateTransferOperatorshipResponse) MarshalTo

func (m *CreateTransferOperatorshipResponse) MarshalTo(dAtA []byte) (int, error)

func (*CreateTransferOperatorshipResponse) MarshalToSizedBuffer

func (m *CreateTransferOperatorshipResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CreateTransferOperatorshipResponse) ProtoMessage

func (*CreateTransferOperatorshipResponse) ProtoMessage()

func (*CreateTransferOperatorshipResponse) Reset

func (*CreateTransferOperatorshipResponse) Size

func (*CreateTransferOperatorshipResponse) String

func (*CreateTransferOperatorshipResponse) Unmarshal

func (m *CreateTransferOperatorshipResponse) Unmarshal(dAtA []byte) error

func (*CreateTransferOperatorshipResponse) XXX_DiscardUnknown

func (m *CreateTransferOperatorshipResponse) XXX_DiscardUnknown()

func (*CreateTransferOperatorshipResponse) XXX_Marshal

func (m *CreateTransferOperatorshipResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateTransferOperatorshipResponse) XXX_Merge

func (*CreateTransferOperatorshipResponse) XXX_Size

func (*CreateTransferOperatorshipResponse) XXX_Unmarshal

func (m *CreateTransferOperatorshipResponse) XXX_Unmarshal(b []byte) error

type CreateTransferOwnershipRequest deprecated

type CreateTransferOwnershipRequest struct {
	Sender github_com_cosmos_cosmos_sdk_types.AccAddress                   `protobuf:"bytes,1,opt,name=sender,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"sender,omitempty"`
	Chain  github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	KeyID  github_com_axelarnetwork_axelar_core_x_multisig_exported.KeyID  `` /* 148-byte string literal not displayed */
}

Deprecated: Do not use.

func NewCreateTransferOwnershipRequest

func NewCreateTransferOwnershipRequest(sender sdk.AccAddress, chain string, keyID string) *CreateTransferOwnershipRequest

NewCreateTransferOwnershipRequest is the constructor for CreateTransferOwnershipRequest

func (*CreateTransferOwnershipRequest) Descriptor

func (*CreateTransferOwnershipRequest) Descriptor() ([]byte, []int)

func (CreateTransferOwnershipRequest) GetSignBytes

func (m CreateTransferOwnershipRequest) GetSignBytes() []byte

GetSignBytes implements sdk.Msg

func (CreateTransferOwnershipRequest) GetSigners

GetSigners implements sdk.Msg

func (*CreateTransferOwnershipRequest) Marshal

func (m *CreateTransferOwnershipRequest) Marshal() (dAtA []byte, err error)

func (*CreateTransferOwnershipRequest) MarshalTo

func (m *CreateTransferOwnershipRequest) MarshalTo(dAtA []byte) (int, error)

func (*CreateTransferOwnershipRequest) MarshalToSizedBuffer

func (m *CreateTransferOwnershipRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CreateTransferOwnershipRequest) ProtoMessage

func (*CreateTransferOwnershipRequest) ProtoMessage()

func (*CreateTransferOwnershipRequest) Reset

func (m *CreateTransferOwnershipRequest) Reset()

func (CreateTransferOwnershipRequest) Route

Route implements sdk.Msg

func (*CreateTransferOwnershipRequest) Size

func (m *CreateTransferOwnershipRequest) Size() (n int)

func (*CreateTransferOwnershipRequest) String

func (CreateTransferOwnershipRequest) Type

Type implements sdk.Msg

func (*CreateTransferOwnershipRequest) Unmarshal

func (m *CreateTransferOwnershipRequest) Unmarshal(dAtA []byte) error

func (CreateTransferOwnershipRequest) ValidateBasic

func (m CreateTransferOwnershipRequest) ValidateBasic() error

ValidateBasic implements sdk.Msg

func (*CreateTransferOwnershipRequest) XXX_DiscardUnknown

func (m *CreateTransferOwnershipRequest) XXX_DiscardUnknown()

func (*CreateTransferOwnershipRequest) XXX_Marshal

func (m *CreateTransferOwnershipRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateTransferOwnershipRequest) XXX_Merge

func (m *CreateTransferOwnershipRequest) XXX_Merge(src proto.Message)

func (*CreateTransferOwnershipRequest) XXX_Size

func (m *CreateTransferOwnershipRequest) XXX_Size() int

func (*CreateTransferOwnershipRequest) XXX_Unmarshal

func (m *CreateTransferOwnershipRequest) XXX_Unmarshal(b []byte) error

type CreateTransferOwnershipResponse deprecated

type CreateTransferOwnershipResponse struct {
}

Deprecated: Do not use.

func (*CreateTransferOwnershipResponse) Descriptor

func (*CreateTransferOwnershipResponse) Descriptor() ([]byte, []int)

func (*CreateTransferOwnershipResponse) Marshal

func (m *CreateTransferOwnershipResponse) Marshal() (dAtA []byte, err error)

func (*CreateTransferOwnershipResponse) MarshalTo

func (m *CreateTransferOwnershipResponse) MarshalTo(dAtA []byte) (int, error)

func (*CreateTransferOwnershipResponse) MarshalToSizedBuffer

func (m *CreateTransferOwnershipResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CreateTransferOwnershipResponse) ProtoMessage

func (*CreateTransferOwnershipResponse) ProtoMessage()

func (*CreateTransferOwnershipResponse) Reset

func (*CreateTransferOwnershipResponse) Size

func (m *CreateTransferOwnershipResponse) Size() (n int)

func (*CreateTransferOwnershipResponse) String

func (*CreateTransferOwnershipResponse) Unmarshal

func (m *CreateTransferOwnershipResponse) Unmarshal(dAtA []byte) error

func (*CreateTransferOwnershipResponse) XXX_DiscardUnknown

func (m *CreateTransferOwnershipResponse) XXX_DiscardUnknown()

func (*CreateTransferOwnershipResponse) XXX_Marshal

func (m *CreateTransferOwnershipResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateTransferOwnershipResponse) XXX_Merge

func (m *CreateTransferOwnershipResponse) XXX_Merge(src proto.Message)

func (*CreateTransferOwnershipResponse) XXX_Size

func (m *CreateTransferOwnershipResponse) XXX_Size() int

func (*CreateTransferOwnershipResponse) XXX_Unmarshal

func (m *CreateTransferOwnershipResponse) XXX_Unmarshal(b []byte) error

type DepositQueryParams

type DepositQueryParams struct {
	Address string                                                          `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Asset   string                                                          `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	Chain   github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
}

DepositQueryParams describe the parameters used to query for an EVM deposit address

func (*DepositQueryParams) Descriptor

func (*DepositQueryParams) Descriptor() ([]byte, []int)

func (*DepositQueryParams) Marshal

func (m *DepositQueryParams) Marshal() (dAtA []byte, err error)

func (*DepositQueryParams) MarshalTo

func (m *DepositQueryParams) MarshalTo(dAtA []byte) (int, error)

func (*DepositQueryParams) MarshalToSizedBuffer

func (m *DepositQueryParams) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DepositQueryParams) ProtoMessage

func (*DepositQueryParams) ProtoMessage()

func (*DepositQueryParams) Reset

func (m *DepositQueryParams) Reset()

func (*DepositQueryParams) Size

func (m *DepositQueryParams) Size() (n int)

func (*DepositQueryParams) String

func (m *DepositQueryParams) String() string

func (*DepositQueryParams) Unmarshal

func (m *DepositQueryParams) Unmarshal(dAtA []byte) error

func (*DepositQueryParams) XXX_DiscardUnknown

func (m *DepositQueryParams) XXX_DiscardUnknown()

func (*DepositQueryParams) XXX_Marshal

func (m *DepositQueryParams) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DepositQueryParams) XXX_Merge

func (m *DepositQueryParams) XXX_Merge(src proto.Message)

func (*DepositQueryParams) XXX_Size

func (m *DepositQueryParams) XXX_Size() int

func (*DepositQueryParams) XXX_Unmarshal

func (m *DepositQueryParams) XXX_Unmarshal(b []byte) error

type DepositStateRequest deprecated added in v0.13.4

type DepositStateRequest struct {
	Chain  github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	Params *QueryDepositStateParams                                        `protobuf:"bytes,2,opt,name=params,proto3" json:"params,omitempty"`
}

Deprecated: Do not use.

func (*DepositStateRequest) Descriptor added in v0.13.4

func (*DepositStateRequest) Descriptor() ([]byte, []int)

func (*DepositStateRequest) Marshal added in v0.13.4

func (m *DepositStateRequest) Marshal() (dAtA []byte, err error)

func (*DepositStateRequest) MarshalTo added in v0.13.4

func (m *DepositStateRequest) MarshalTo(dAtA []byte) (int, error)

func (*DepositStateRequest) MarshalToSizedBuffer added in v0.13.4

func (m *DepositStateRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DepositStateRequest) ProtoMessage added in v0.13.4

func (*DepositStateRequest) ProtoMessage()

func (*DepositStateRequest) Reset added in v0.13.4

func (m *DepositStateRequest) Reset()

func (*DepositStateRequest) Size added in v0.13.4

func (m *DepositStateRequest) Size() (n int)

func (*DepositStateRequest) String added in v0.13.4

func (m *DepositStateRequest) String() string

func (*DepositStateRequest) Unmarshal added in v0.13.4

func (m *DepositStateRequest) Unmarshal(dAtA []byte) error

func (*DepositStateRequest) XXX_DiscardUnknown added in v0.13.4

func (m *DepositStateRequest) XXX_DiscardUnknown()

func (*DepositStateRequest) XXX_Marshal added in v0.13.4

func (m *DepositStateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DepositStateRequest) XXX_Merge added in v0.13.4

func (m *DepositStateRequest) XXX_Merge(src proto.Message)

func (*DepositStateRequest) XXX_Size added in v0.13.4

func (m *DepositStateRequest) XXX_Size() int

func (*DepositStateRequest) XXX_Unmarshal added in v0.13.4

func (m *DepositStateRequest) XXX_Unmarshal(b []byte) error

type DepositStateResponse deprecated added in v0.13.4

type DepositStateResponse struct {
	Status DepositStatus `protobuf:"varint,2,opt,name=status,proto3,enum=axelar.evm.v1beta1.DepositStatus" json:"status,omitempty"`
}

Deprecated: Do not use.

func (*DepositStateResponse) Descriptor added in v0.13.4

func (*DepositStateResponse) Descriptor() ([]byte, []int)

func (*DepositStateResponse) Marshal added in v0.13.4

func (m *DepositStateResponse) Marshal() (dAtA []byte, err error)

func (*DepositStateResponse) MarshalTo added in v0.13.4

func (m *DepositStateResponse) MarshalTo(dAtA []byte) (int, error)

func (*DepositStateResponse) MarshalToSizedBuffer added in v0.13.4

func (m *DepositStateResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DepositStateResponse) ProtoMessage added in v0.13.4

func (*DepositStateResponse) ProtoMessage()

func (*DepositStateResponse) Reset added in v0.13.4

func (m *DepositStateResponse) Reset()

func (*DepositStateResponse) Size added in v0.13.4

func (m *DepositStateResponse) Size() (n int)

func (*DepositStateResponse) String added in v0.13.4

func (m *DepositStateResponse) String() string

func (*DepositStateResponse) Unmarshal added in v0.13.4

func (m *DepositStateResponse) Unmarshal(dAtA []byte) error

func (*DepositStateResponse) XXX_DiscardUnknown added in v0.13.4

func (m *DepositStateResponse) XXX_DiscardUnknown()

func (*DepositStateResponse) XXX_Marshal added in v0.13.4

func (m *DepositStateResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DepositStateResponse) XXX_Merge added in v0.13.4

func (m *DepositStateResponse) XXX_Merge(src proto.Message)

func (*DepositStateResponse) XXX_Size added in v0.13.4

func (m *DepositStateResponse) XXX_Size() int

func (*DepositStateResponse) XXX_Unmarshal added in v0.13.4

func (m *DepositStateResponse) XXX_Unmarshal(b []byte) error

type DepositStatus

type DepositStatus int32
const (
	DepositStatus_None      DepositStatus = 0
	DepositStatus_Pending   DepositStatus = 1
	DepositStatus_Confirmed DepositStatus = 2
	DepositStatus_Burned    DepositStatus = 3
)

func (DepositStatus) EnumDescriptor

func (DepositStatus) EnumDescriptor() ([]byte, []int)

func (DepositStatus) String

func (x DepositStatus) String() string

type ERC20Deposit

type ERC20Deposit struct {
	TxID             Hash                                                            `protobuf:"bytes,1,opt,name=tx_id,json=txId,proto3,customtype=Hash" json:"tx_id"`
	Amount           github_com_cosmos_cosmos_sdk_types.Uint                         `protobuf:"bytes,2,opt,name=amount,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Uint" json:"amount"`
	Asset            string                                                          `protobuf:"bytes,3,opt,name=asset,proto3" json:"asset,omitempty"`
	DestinationChain github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 182-byte string literal not displayed */
	BurnerAddress    Address                                                         `protobuf:"bytes,5,opt,name=burner_address,json=burnerAddress,proto3,customtype=Address" json:"burner_address"`
	LogIndex         uint64                                                          `protobuf:"varint,6,opt,name=log_index,json=logIndex,proto3" json:"log_index,omitempty"`
}

ERC20Deposit contains information for an ERC20 deposit

func (*ERC20Deposit) Descriptor

func (*ERC20Deposit) Descriptor() ([]byte, []int)

func (*ERC20Deposit) Marshal

func (m *ERC20Deposit) Marshal() (dAtA []byte, err error)

func (*ERC20Deposit) MarshalTo

func (m *ERC20Deposit) MarshalTo(dAtA []byte) (int, error)

func (*ERC20Deposit) MarshalToSizedBuffer

func (m *ERC20Deposit) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ERC20Deposit) ProtoMessage

func (*ERC20Deposit) ProtoMessage()

func (*ERC20Deposit) Reset

func (m *ERC20Deposit) Reset()

func (*ERC20Deposit) Size

func (m *ERC20Deposit) Size() (n int)

func (*ERC20Deposit) String

func (m *ERC20Deposit) String() string

func (*ERC20Deposit) Unmarshal

func (m *ERC20Deposit) Unmarshal(dAtA []byte) error

func (*ERC20Deposit) ValidateBasic added in v0.9.0

func (m *ERC20Deposit) ValidateBasic() error

ValidateBasic does stateless validation of the object

func (*ERC20Deposit) XXX_DiscardUnknown

func (m *ERC20Deposit) XXX_DiscardUnknown()

func (*ERC20Deposit) XXX_Marshal

func (m *ERC20Deposit) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ERC20Deposit) XXX_Merge

func (m *ERC20Deposit) XXX_Merge(src proto.Message)

func (*ERC20Deposit) XXX_Size

func (m *ERC20Deposit) XXX_Size() int

func (*ERC20Deposit) XXX_Unmarshal

func (m *ERC20Deposit) XXX_Unmarshal(b []byte) error

type ERC20Token

type ERC20Token struct {
	// contains filtered or unexported fields
}

ERC20Token represents an ERC20 token and its respective state

func CreateERC20Token

func CreateERC20Token(setter func(meta ERC20TokenMetadata), meta ERC20TokenMetadata) ERC20Token

CreateERC20Token returns an ERC20Token struct

func (*ERC20Token) ConfirmDeployment

func (t *ERC20Token) ConfirmDeployment() error

ConfirmDeployment signals that the token was successfully confirmed

func (*ERC20Token) CreateDeployCommand

func (t *ERC20Token) CreateDeployCommand(keyID multisig.KeyID, dailyMintLimit sdk.Uint) (Command, error)

CreateDeployCommand returns a token deployment command for the token

func (*ERC20Token) CreateMintCommand

func (t *ERC20Token) CreateMintCommand(keyID multisig.KeyID, transfer nexus.CrossChainTransfer) (Command, error)

CreateMintCommand returns a mint deployment command for the token

func (ERC20Token) GetAddress

func (t ERC20Token) GetAddress() Address

GetAddress returns the token's address

func (ERC20Token) GetAsset

func (t ERC20Token) GetAsset() string

GetAsset returns the asset name

func (ERC20Token) GetBurnerCode added in v0.14.0

func (t ERC20Token) GetBurnerCode() []byte

GetBurnerCode returns the version of the burner the token is deployed with

func (ERC20Token) GetBurnerCodeHash added in v0.14.0

func (t ERC20Token) GetBurnerCodeHash() (Hash, bool)

GetBurnerCodeHash returns the version of the burner the token is deployed with if it exists

func (ERC20Token) GetDetails

func (t ERC20Token) GetDetails() TokenDetails

GetDetails returns the details of the token

func (ERC20Token) GetTxID

func (t ERC20Token) GetTxID() Hash

GetTxID returns the tx ID set with StartConfirmation

func (ERC20Token) Is

func (t ERC20Token) Is(status Status) bool

Is returns true if the given status matches the token's status

func (ERC20Token) IsExternal added in v0.14.0

func (t ERC20Token) IsExternal() bool

IsExternal returns true if the given token is external; false otherwise

func (*ERC20Token) RecordDeployment

func (t *ERC20Token) RecordDeployment(txID Hash) error

RecordDeployment signals that the token confirmation is underway for the given tx ID

func (*ERC20Token) RejectDeployment

func (t *ERC20Token) RejectDeployment() error

RejectDeployment reverts the token state back to Initialized

type ERC20TokenMetadata

type ERC20TokenMetadata struct {
	Asset        string                                 `protobuf:"bytes,1,opt,name=asset,proto3" json:"asset,omitempty"`
	ChainID      github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,2,opt,name=chain_id,json=chainId,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"chain_id"`
	Details      TokenDetails                           `protobuf:"bytes,3,opt,name=details,proto3" json:"details"`
	TokenAddress Address                                `protobuf:"bytes,4,opt,name=token_address,json=tokenAddress,proto3,customtype=Address" json:"token_address"`
	TxHash       Hash                                   `protobuf:"bytes,5,opt,name=tx_hash,json=txHash,proto3,customtype=Hash" json:"tx_hash"`
	Status       Status                                 `protobuf:"varint,7,opt,name=status,proto3,enum=axelar.evm.v1beta1.Status" json:"status,omitempty"`
	IsExternal   bool                                   `protobuf:"varint,8,opt,name=is_external,json=isExternal,proto3" json:"is_external,omitempty"`
	BurnerCode   []byte                                 `protobuf:"bytes,9,opt,name=burner_code,json=burnerCode,proto3" json:"burner_code,omitempty"`
}

ERC20TokenMetadata describes information about an ERC20 token

func (*ERC20TokenMetadata) Descriptor

func (*ERC20TokenMetadata) Descriptor() ([]byte, []int)

func (*ERC20TokenMetadata) Marshal

func (m *ERC20TokenMetadata) Marshal() (dAtA []byte, err error)

func (*ERC20TokenMetadata) MarshalTo

func (m *ERC20TokenMetadata) MarshalTo(dAtA []byte) (int, error)

func (*ERC20TokenMetadata) MarshalToSizedBuffer

func (m *ERC20TokenMetadata) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ERC20TokenMetadata) ProtoMessage

func (*ERC20TokenMetadata) ProtoMessage()

func (*ERC20TokenMetadata) Reset

func (m *ERC20TokenMetadata) Reset()

func (*ERC20TokenMetadata) Size

func (m *ERC20TokenMetadata) Size() (n int)

func (*ERC20TokenMetadata) String

func (m *ERC20TokenMetadata) String() string

func (*ERC20TokenMetadata) Unmarshal

func (m *ERC20TokenMetadata) Unmarshal(dAtA []byte) error

func (*ERC20TokenMetadata) ValidateBasic added in v0.9.0

func (m *ERC20TokenMetadata) ValidateBasic() error

ValidateBasic does stateless validation of the object

func (*ERC20TokenMetadata) XXX_DiscardUnknown

func (m *ERC20TokenMetadata) XXX_DiscardUnknown()

func (*ERC20TokenMetadata) XXX_Marshal

func (m *ERC20TokenMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ERC20TokenMetadata) XXX_Merge

func (m *ERC20TokenMetadata) XXX_Merge(src proto.Message)

func (*ERC20TokenMetadata) XXX_Size

func (m *ERC20TokenMetadata) XXX_Size() int

func (*ERC20TokenMetadata) XXX_Unmarshal

func (m *ERC20TokenMetadata) XXX_Unmarshal(b []byte) error

type ERC20TokensRequest added in v0.19.2

type ERC20TokensRequest struct {
	Chain string    `protobuf:"bytes,1,opt,name=chain,proto3" json:"chain,omitempty"`
	Type  TokenType `protobuf:"varint,2,opt,name=type,proto3,enum=axelar.evm.v1beta1.TokenType" json:"type,omitempty"`
}

ERC20TokensRequest describes the chain for which the type of ERC20 tokens are requested.

func (*ERC20TokensRequest) Descriptor added in v0.19.2

func (*ERC20TokensRequest) Descriptor() ([]byte, []int)

func (*ERC20TokensRequest) Marshal added in v0.19.2

func (m *ERC20TokensRequest) Marshal() (dAtA []byte, err error)

func (*ERC20TokensRequest) MarshalTo added in v0.19.2

func (m *ERC20TokensRequest) MarshalTo(dAtA []byte) (int, error)

func (*ERC20TokensRequest) MarshalToSizedBuffer added in v0.19.2

func (m *ERC20TokensRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ERC20TokensRequest) ProtoMessage added in v0.19.2

func (*ERC20TokensRequest) ProtoMessage()

func (*ERC20TokensRequest) Reset added in v0.19.2

func (m *ERC20TokensRequest) Reset()

func (*ERC20TokensRequest) Size added in v0.19.2

func (m *ERC20TokensRequest) Size() (n int)

func (*ERC20TokensRequest) String added in v0.19.2

func (m *ERC20TokensRequest) String() string

func (*ERC20TokensRequest) Unmarshal added in v0.19.2

func (m *ERC20TokensRequest) Unmarshal(dAtA []byte) error

func (*ERC20TokensRequest) XXX_DiscardUnknown added in v0.19.2

func (m *ERC20TokensRequest) XXX_DiscardUnknown()

func (*ERC20TokensRequest) XXX_Marshal added in v0.19.2

func (m *ERC20TokensRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ERC20TokensRequest) XXX_Merge added in v0.19.2

func (m *ERC20TokensRequest) XXX_Merge(src proto.Message)

func (*ERC20TokensRequest) XXX_Size added in v0.19.2

func (m *ERC20TokensRequest) XXX_Size() int

func (*ERC20TokensRequest) XXX_Unmarshal added in v0.19.2

func (m *ERC20TokensRequest) XXX_Unmarshal(b []byte) error

type ERC20TokensResponse added in v0.19.2

type ERC20TokensResponse struct {
	Tokens []ERC20TokensResponse_Token `protobuf:"bytes,1,rep,name=tokens,proto3" json:"tokens"`
}

ERC20TokensResponse describes the asset and symbol for all ERC20 tokens requested for a chain

func (*ERC20TokensResponse) Descriptor added in v0.19.2

func (*ERC20TokensResponse) Descriptor() ([]byte, []int)

func (*ERC20TokensResponse) Marshal added in v0.19.2

func (m *ERC20TokensResponse) Marshal() (dAtA []byte, err error)

func (*ERC20TokensResponse) MarshalTo added in v0.19.2

func (m *ERC20TokensResponse) MarshalTo(dAtA []byte) (int, error)

func (*ERC20TokensResponse) MarshalToSizedBuffer added in v0.19.2

func (m *ERC20TokensResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ERC20TokensResponse) ProtoMessage added in v0.19.2

func (*ERC20TokensResponse) ProtoMessage()

func (*ERC20TokensResponse) Reset added in v0.19.2

func (m *ERC20TokensResponse) Reset()

func (*ERC20TokensResponse) Size added in v0.19.2

func (m *ERC20TokensResponse) Size() (n int)

func (*ERC20TokensResponse) String added in v0.19.2

func (m *ERC20TokensResponse) String() string

func (*ERC20TokensResponse) Unmarshal added in v0.19.2

func (m *ERC20TokensResponse) Unmarshal(dAtA []byte) error

func (*ERC20TokensResponse) XXX_DiscardUnknown added in v0.19.2

func (m *ERC20TokensResponse) XXX_DiscardUnknown()

func (*ERC20TokensResponse) XXX_Marshal added in v0.19.2

func (m *ERC20TokensResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ERC20TokensResponse) XXX_Merge added in v0.19.2

func (m *ERC20TokensResponse) XXX_Merge(src proto.Message)

func (*ERC20TokensResponse) XXX_Size added in v0.19.2

func (m *ERC20TokensResponse) XXX_Size() int

func (*ERC20TokensResponse) XXX_Unmarshal added in v0.19.2

func (m *ERC20TokensResponse) XXX_Unmarshal(b []byte) error

type ERC20TokensResponse_Token added in v0.19.4

type ERC20TokensResponse_Token struct {
	Asset  string `protobuf:"bytes,1,opt,name=asset,proto3" json:"asset,omitempty"`
	Symbol string `protobuf:"bytes,2,opt,name=symbol,proto3" json:"symbol,omitempty"`
}

func (*ERC20TokensResponse_Token) Descriptor added in v0.19.4

func (*ERC20TokensResponse_Token) Descriptor() ([]byte, []int)

func (*ERC20TokensResponse_Token) Marshal added in v0.19.4

func (m *ERC20TokensResponse_Token) Marshal() (dAtA []byte, err error)

func (*ERC20TokensResponse_Token) MarshalTo added in v0.19.4

func (m *ERC20TokensResponse_Token) MarshalTo(dAtA []byte) (int, error)

func (*ERC20TokensResponse_Token) MarshalToSizedBuffer added in v0.19.4

func (m *ERC20TokensResponse_Token) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ERC20TokensResponse_Token) ProtoMessage added in v0.19.4

func (*ERC20TokensResponse_Token) ProtoMessage()

func (*ERC20TokensResponse_Token) Reset added in v0.19.4

func (m *ERC20TokensResponse_Token) Reset()

func (*ERC20TokensResponse_Token) Size added in v0.19.4

func (m *ERC20TokensResponse_Token) Size() (n int)

func (*ERC20TokensResponse_Token) String added in v0.19.4

func (m *ERC20TokensResponse_Token) String() string

func (*ERC20TokensResponse_Token) Unmarshal added in v0.19.4

func (m *ERC20TokensResponse_Token) Unmarshal(dAtA []byte) error

func (*ERC20TokensResponse_Token) XXX_DiscardUnknown added in v0.19.4

func (m *ERC20TokensResponse_Token) XXX_DiscardUnknown()

func (*ERC20TokensResponse_Token) XXX_Marshal added in v0.19.4

func (m *ERC20TokensResponse_Token) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ERC20TokensResponse_Token) XXX_Merge added in v0.19.4

func (m *ERC20TokensResponse_Token) XXX_Merge(src proto.Message)

func (*ERC20TokensResponse_Token) XXX_Size added in v0.19.4

func (m *ERC20TokensResponse_Token) XXX_Size() int

func (*ERC20TokensResponse_Token) XXX_Unmarshal added in v0.19.4

func (m *ERC20TokensResponse_Token) XXX_Unmarshal(b []byte) error

type EVMConfig

type EVMConfig struct {
	Name             string               `mapstructure:"name"`
	RPCAddr          string               `mapstructure:"rpc_addr"`
	WithBridge       bool                 `mapstructure:"start-with-bridge"`
	L1ChainName      *string              `mapstructure:"l1_chain_name"` // Deprecated: Do not use.
	FinalityOverride rpc.FinalityOverride `mapstructure:"finality_override"`
}

EVMConfig contains all EVM module configuration values

func DefaultConfig

func DefaultConfig() []EVMConfig

DefaultConfig returns a configuration populated with default values

type EVMEventCompleted added in v0.25.0

type EVMEventCompleted struct {
	Chain   github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	EventID EventID                                                         `protobuf:"bytes,2,opt,name=event_id,json=eventId,proto3,casttype=EventID" json:"event_id,omitempty"`
	Type    string                                                          `protobuf:"bytes,3,opt,name=type,proto3" json:"type,omitempty"`
}

func (*EVMEventCompleted) Descriptor added in v0.25.0

func (*EVMEventCompleted) Descriptor() ([]byte, []int)

func (*EVMEventCompleted) GetChain added in v0.25.0

func (*EVMEventCompleted) GetEventID added in v0.25.0

func (m *EVMEventCompleted) GetEventID() EventID

func (*EVMEventCompleted) GetType added in v0.25.0

func (m *EVMEventCompleted) GetType() string

func (*EVMEventCompleted) Marshal added in v0.25.0

func (m *EVMEventCompleted) Marshal() (dAtA []byte, err error)

func (*EVMEventCompleted) MarshalTo added in v0.25.0

func (m *EVMEventCompleted) MarshalTo(dAtA []byte) (int, error)

func (*EVMEventCompleted) MarshalToSizedBuffer added in v0.25.0

func (m *EVMEventCompleted) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EVMEventCompleted) ProtoMessage added in v0.25.0

func (*EVMEventCompleted) ProtoMessage()

func (*EVMEventCompleted) Reset added in v0.25.0

func (m *EVMEventCompleted) Reset()

func (*EVMEventCompleted) Size added in v0.25.0

func (m *EVMEventCompleted) Size() (n int)

func (*EVMEventCompleted) String added in v0.25.0

func (m *EVMEventCompleted) String() string

func (*EVMEventCompleted) Unmarshal added in v0.25.0

func (m *EVMEventCompleted) Unmarshal(dAtA []byte) error

func (*EVMEventCompleted) XXX_DiscardUnknown added in v0.25.0

func (m *EVMEventCompleted) XXX_DiscardUnknown()

func (*EVMEventCompleted) XXX_Marshal added in v0.25.0

func (m *EVMEventCompleted) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EVMEventCompleted) XXX_Merge added in v0.25.0

func (m *EVMEventCompleted) XXX_Merge(src proto.Message)

func (*EVMEventCompleted) XXX_MessageName added in v0.33.1

func (*EVMEventCompleted) XXX_MessageName() string

func (*EVMEventCompleted) XXX_Size added in v0.25.0

func (m *EVMEventCompleted) XXX_Size() int

func (*EVMEventCompleted) XXX_Unmarshal added in v0.25.0

func (m *EVMEventCompleted) XXX_Unmarshal(b []byte) error

type EVMEventConfirmed added in v0.25.0

type EVMEventConfirmed struct {
	Chain   github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	EventID EventID                                                         `protobuf:"bytes,2,opt,name=event_id,json=eventId,proto3,casttype=EventID" json:"event_id,omitempty"`
	Type    string                                                          `protobuf:"bytes,3,opt,name=type,proto3" json:"type,omitempty"`
}

func (*EVMEventConfirmed) Descriptor added in v0.25.0

func (*EVMEventConfirmed) Descriptor() ([]byte, []int)

func (*EVMEventConfirmed) GetChain added in v0.25.0

func (*EVMEventConfirmed) GetEventID added in v0.25.0

func (m *EVMEventConfirmed) GetEventID() EventID

func (*EVMEventConfirmed) GetType added in v0.25.0

func (m *EVMEventConfirmed) GetType() string

func (*EVMEventConfirmed) Marshal added in v0.25.0

func (m *EVMEventConfirmed) Marshal() (dAtA []byte, err error)

func (*EVMEventConfirmed) MarshalTo added in v0.25.0

func (m *EVMEventConfirmed) MarshalTo(dAtA []byte) (int, error)

func (*EVMEventConfirmed) MarshalToSizedBuffer added in v0.25.0

func (m *EVMEventConfirmed) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EVMEventConfirmed) ProtoMessage added in v0.25.0

func (*EVMEventConfirmed) ProtoMessage()

func (*EVMEventConfirmed) Reset added in v0.25.0

func (m *EVMEventConfirmed) Reset()

func (*EVMEventConfirmed) Size added in v0.25.0

func (m *EVMEventConfirmed) Size() (n int)

func (*EVMEventConfirmed) String added in v0.25.0

func (m *EVMEventConfirmed) String() string

func (*EVMEventConfirmed) Unmarshal added in v0.25.0

func (m *EVMEventConfirmed) Unmarshal(dAtA []byte) error

func (*EVMEventConfirmed) XXX_DiscardUnknown added in v0.25.0

func (m *EVMEventConfirmed) XXX_DiscardUnknown()

func (*EVMEventConfirmed) XXX_Marshal added in v0.25.0

func (m *EVMEventConfirmed) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EVMEventConfirmed) XXX_Merge added in v0.25.0

func (m *EVMEventConfirmed) XXX_Merge(src proto.Message)

func (*EVMEventConfirmed) XXX_MessageName added in v0.33.1

func (*EVMEventConfirmed) XXX_MessageName() string

func (*EVMEventConfirmed) XXX_Size added in v0.25.0

func (m *EVMEventConfirmed) XXX_Size() int

func (*EVMEventConfirmed) XXX_Unmarshal added in v0.25.0

func (m *EVMEventConfirmed) XXX_Unmarshal(b []byte) error

type EVMEventFailed added in v0.25.0

type EVMEventFailed struct {
	Chain   github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	EventID EventID                                                         `protobuf:"bytes,2,opt,name=event_id,json=eventId,proto3,casttype=EventID" json:"event_id,omitempty"`
	Type    string                                                          `protobuf:"bytes,3,opt,name=type,proto3" json:"type,omitempty"`
}

func (*EVMEventFailed) Descriptor added in v0.25.0

func (*EVMEventFailed) Descriptor() ([]byte, []int)

func (*EVMEventFailed) GetChain added in v0.25.0

func (*EVMEventFailed) GetEventID added in v0.25.0

func (m *EVMEventFailed) GetEventID() EventID

func (*EVMEventFailed) GetType added in v0.25.0

func (m *EVMEventFailed) GetType() string

func (*EVMEventFailed) Marshal added in v0.25.0

func (m *EVMEventFailed) Marshal() (dAtA []byte, err error)

func (*EVMEventFailed) MarshalTo added in v0.25.0

func (m *EVMEventFailed) MarshalTo(dAtA []byte) (int, error)

func (*EVMEventFailed) MarshalToSizedBuffer added in v0.25.0

func (m *EVMEventFailed) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EVMEventFailed) ProtoMessage added in v0.25.0

func (*EVMEventFailed) ProtoMessage()

func (*EVMEventFailed) Reset added in v0.25.0

func (m *EVMEventFailed) Reset()

func (*EVMEventFailed) Size added in v0.25.0

func (m *EVMEventFailed) Size() (n int)

func (*EVMEventFailed) String added in v0.25.0

func (m *EVMEventFailed) String() string

func (*EVMEventFailed) Unmarshal added in v0.25.0

func (m *EVMEventFailed) Unmarshal(dAtA []byte) error

func (*EVMEventFailed) XXX_DiscardUnknown added in v0.25.0

func (m *EVMEventFailed) XXX_DiscardUnknown()

func (*EVMEventFailed) XXX_Marshal added in v0.25.0

func (m *EVMEventFailed) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EVMEventFailed) XXX_Merge added in v0.25.0

func (m *EVMEventFailed) XXX_Merge(src proto.Message)

func (*EVMEventFailed) XXX_MessageName added in v0.33.1

func (*EVMEventFailed) XXX_MessageName() string

func (*EVMEventFailed) XXX_Size added in v0.25.0

func (m *EVMEventFailed) XXX_Size() int

func (*EVMEventFailed) XXX_Unmarshal added in v0.25.0

func (m *EVMEventFailed) XXX_Unmarshal(b []byte) error

type EVMEventRetryFailed added in v0.25.0

type EVMEventRetryFailed struct {
	Chain   github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	EventID EventID                                                         `protobuf:"bytes,2,opt,name=event_id,json=eventId,proto3,casttype=EventID" json:"event_id,omitempty"`
	Type    string                                                          `protobuf:"bytes,3,opt,name=type,proto3" json:"type,omitempty"`
}

func (*EVMEventRetryFailed) Descriptor added in v0.25.0

func (*EVMEventRetryFailed) Descriptor() ([]byte, []int)

func (*EVMEventRetryFailed) GetChain added in v0.25.0

func (*EVMEventRetryFailed) GetEventID added in v0.25.0

func (m *EVMEventRetryFailed) GetEventID() EventID

func (*EVMEventRetryFailed) GetType added in v0.25.0

func (m *EVMEventRetryFailed) GetType() string

func (*EVMEventRetryFailed) Marshal added in v0.25.0

func (m *EVMEventRetryFailed) Marshal() (dAtA []byte, err error)

func (*EVMEventRetryFailed) MarshalTo added in v0.25.0

func (m *EVMEventRetryFailed) MarshalTo(dAtA []byte) (int, error)

func (*EVMEventRetryFailed) MarshalToSizedBuffer added in v0.25.0

func (m *EVMEventRetryFailed) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EVMEventRetryFailed) ProtoMessage added in v0.25.0

func (*EVMEventRetryFailed) ProtoMessage()

func (*EVMEventRetryFailed) Reset added in v0.25.0

func (m *EVMEventRetryFailed) Reset()

func (*EVMEventRetryFailed) Size added in v0.25.0

func (m *EVMEventRetryFailed) Size() (n int)

func (*EVMEventRetryFailed) String added in v0.25.0

func (m *EVMEventRetryFailed) String() string

func (*EVMEventRetryFailed) Unmarshal added in v0.25.0

func (m *EVMEventRetryFailed) Unmarshal(dAtA []byte) error

func (*EVMEventRetryFailed) XXX_DiscardUnknown added in v0.25.0

func (m *EVMEventRetryFailed) XXX_DiscardUnknown()

func (*EVMEventRetryFailed) XXX_Marshal added in v0.25.0

func (m *EVMEventRetryFailed) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EVMEventRetryFailed) XXX_Merge added in v0.25.0

func (m *EVMEventRetryFailed) XXX_Merge(src proto.Message)

func (*EVMEventRetryFailed) XXX_MessageName added in v0.33.1

func (*EVMEventRetryFailed) XXX_MessageName() string

func (*EVMEventRetryFailed) XXX_Size added in v0.25.0

func (m *EVMEventRetryFailed) XXX_Size() int

func (*EVMEventRetryFailed) XXX_Unmarshal added in v0.25.0

func (m *EVMEventRetryFailed) XXX_Unmarshal(b []byte) error

type Event added in v0.17.0

type Event struct {
	Chain  github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	TxID   Hash                                                            `protobuf:"bytes,2,opt,name=tx_id,json=txId,proto3,customtype=Hash" json:"tx_id"`
	Index  uint64                                                          `protobuf:"varint,3,opt,name=index,proto3" json:"index,omitempty"`
	Status Event_Status                                                    `protobuf:"varint,4,opt,name=status,proto3,enum=axelar.evm.v1beta1.Event_Status" json:"status,omitempty"`
	// Types that are valid to be assigned to Event:
	//	*Event_TokenSent
	//	*Event_ContractCall
	//	*Event_ContractCallWithToken
	//	*Event_Transfer
	//	*Event_TokenDeployed
	//	*Event_MultisigOwnershipTransferred
	//	*Event_MultisigOperatorshipTransferred
	Event isEvent_Event `protobuf_oneof:"event"`
}

func (*Event) Descriptor added in v0.17.0

func (*Event) Descriptor() ([]byte, []int)

func (*Event) GetContractCall added in v0.17.0

func (m *Event) GetContractCall() *EventContractCall

func (*Event) GetContractCallWithToken added in v0.17.0

func (m *Event) GetContractCallWithToken() *EventContractCallWithToken

func (*Event) GetEvent added in v0.17.0

func (m *Event) GetEvent() isEvent_Event

func (Event) GetEventType added in v0.18.0

func (m Event) GetEventType() string

GetEventType returns the type for the event

func (Event) GetID added in v0.17.0

func (m Event) GetID() EventID

GetID returns an unique ID for the event

func (*Event) GetMultisigOperatorshipTransferred added in v0.17.0

func (m *Event) GetMultisigOperatorshipTransferred() *EventMultisigOperatorshipTransferred

func (*Event) GetMultisigOwnershipTransferred deprecated added in v0.17.0

func (m *Event) GetMultisigOwnershipTransferred() *EventMultisigOwnershipTransferred

Deprecated: Do not use.

func (*Event) GetTokenDeployed added in v0.17.0

func (m *Event) GetTokenDeployed() *EventTokenDeployed

func (*Event) GetTokenSent added in v0.17.0

func (m *Event) GetTokenSent() *EventTokenSent

func (*Event) GetTransfer added in v0.17.0

func (m *Event) GetTransfer() *EventTransfer

func (*Event) Marshal added in v0.17.0

func (m *Event) Marshal() (dAtA []byte, err error)

func (*Event) MarshalTo added in v0.17.0

func (m *Event) MarshalTo(dAtA []byte) (int, error)

func (*Event) MarshalToSizedBuffer added in v0.17.0

func (m *Event) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Event) ProtoMessage added in v0.17.0

func (*Event) ProtoMessage()

func (*Event) Reset added in v0.17.0

func (m *Event) Reset()

func (*Event) Size added in v0.17.0

func (m *Event) Size() (n int)

func (*Event) String added in v0.17.0

func (m *Event) String() string

func (*Event) Unmarshal added in v0.17.0

func (m *Event) Unmarshal(dAtA []byte) error

func (Event) ValidateBasic added in v0.17.0

func (m Event) ValidateBasic() error

ValidateBasic returns an error if the event is invalid

func (*Event) XXX_DiscardUnknown added in v0.17.0

func (m *Event) XXX_DiscardUnknown()

func (*Event) XXX_Marshal added in v0.17.0

func (m *Event) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Event) XXX_Merge added in v0.17.0

func (m *Event) XXX_Merge(src proto.Message)

func (*Event) XXX_OneofWrappers added in v0.17.0

func (*Event) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*Event) XXX_Size added in v0.17.0

func (m *Event) XXX_Size() int

func (*Event) XXX_Unmarshal added in v0.17.0

func (m *Event) XXX_Unmarshal(b []byte) error

type EventContractCall added in v0.17.0

type EventContractCall struct {
	Sender           Address                                                         `protobuf:"bytes,1,opt,name=sender,proto3,customtype=Address" json:"sender"`
	DestinationChain github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 182-byte string literal not displayed */
	ContractAddress  string                                                          `protobuf:"bytes,3,opt,name=contract_address,json=contractAddress,proto3" json:"contract_address,omitempty"`
	PayloadHash      Hash                                                            `protobuf:"bytes,4,opt,name=payload_hash,json=payloadHash,proto3,customtype=Hash" json:"payload_hash"`
}

func (*EventContractCall) Descriptor added in v0.17.0

func (*EventContractCall) Descriptor() ([]byte, []int)

func (*EventContractCall) Marshal added in v0.17.0

func (m *EventContractCall) Marshal() (dAtA []byte, err error)

func (*EventContractCall) MarshalTo added in v0.17.0

func (m *EventContractCall) MarshalTo(dAtA []byte) (int, error)

func (*EventContractCall) MarshalToSizedBuffer added in v0.17.0

func (m *EventContractCall) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EventContractCall) ProtoMessage added in v0.17.0

func (*EventContractCall) ProtoMessage()

func (*EventContractCall) Reset added in v0.17.0

func (m *EventContractCall) Reset()

func (*EventContractCall) Size added in v0.17.0

func (m *EventContractCall) Size() (n int)

func (*EventContractCall) String added in v0.17.0

func (m *EventContractCall) String() string

func (*EventContractCall) Unmarshal added in v0.17.0

func (m *EventContractCall) Unmarshal(dAtA []byte) error

func (EventContractCall) ValidateBasic added in v0.17.0

func (m EventContractCall) ValidateBasic() error

ValidateBasic returns an error if the event contract call is invalid

func (*EventContractCall) XXX_DiscardUnknown added in v0.17.0

func (m *EventContractCall) XXX_DiscardUnknown()

func (*EventContractCall) XXX_Marshal added in v0.17.0

func (m *EventContractCall) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventContractCall) XXX_Merge added in v0.17.0

func (m *EventContractCall) XXX_Merge(src proto.Message)

func (*EventContractCall) XXX_Size added in v0.17.0

func (m *EventContractCall) XXX_Size() int

func (*EventContractCall) XXX_Unmarshal added in v0.17.0

func (m *EventContractCall) XXX_Unmarshal(b []byte) error

type EventContractCallWithToken added in v0.17.0

type EventContractCallWithToken struct {
	Sender           Address                                                         `protobuf:"bytes,1,opt,name=sender,proto3,customtype=Address" json:"sender"`
	DestinationChain github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 182-byte string literal not displayed */
	ContractAddress  string                                                          `protobuf:"bytes,3,opt,name=contract_address,json=contractAddress,proto3" json:"contract_address,omitempty"`
	PayloadHash      Hash                                                            `protobuf:"bytes,4,opt,name=payload_hash,json=payloadHash,proto3,customtype=Hash" json:"payload_hash"`
	Symbol           string                                                          `protobuf:"bytes,5,opt,name=symbol,proto3" json:"symbol,omitempty"`
	Amount           github_com_cosmos_cosmos_sdk_types.Uint                         `protobuf:"bytes,6,opt,name=amount,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Uint" json:"amount"`
}

func (*EventContractCallWithToken) Descriptor added in v0.17.0

func (*EventContractCallWithToken) Descriptor() ([]byte, []int)

func (*EventContractCallWithToken) Marshal added in v0.17.0

func (m *EventContractCallWithToken) Marshal() (dAtA []byte, err error)

func (*EventContractCallWithToken) MarshalTo added in v0.17.0

func (m *EventContractCallWithToken) MarshalTo(dAtA []byte) (int, error)

func (*EventContractCallWithToken) MarshalToSizedBuffer added in v0.17.0

func (m *EventContractCallWithToken) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EventContractCallWithToken) ProtoMessage added in v0.17.0

func (*EventContractCallWithToken) ProtoMessage()

func (*EventContractCallWithToken) Reset added in v0.17.0

func (m *EventContractCallWithToken) Reset()

func (*EventContractCallWithToken) Size added in v0.17.0

func (m *EventContractCallWithToken) Size() (n int)

func (*EventContractCallWithToken) String added in v0.17.0

func (m *EventContractCallWithToken) String() string

func (*EventContractCallWithToken) Unmarshal added in v0.17.0

func (m *EventContractCallWithToken) Unmarshal(dAtA []byte) error

func (EventContractCallWithToken) ValidateBasic added in v0.17.0

func (m EventContractCallWithToken) ValidateBasic() error

ValidateBasic returns an error if the event contract call with token is invalid

func (*EventContractCallWithToken) XXX_DiscardUnknown added in v0.17.0

func (m *EventContractCallWithToken) XXX_DiscardUnknown()

func (*EventContractCallWithToken) XXX_Marshal added in v0.17.0

func (m *EventContractCallWithToken) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventContractCallWithToken) XXX_Merge added in v0.17.0

func (m *EventContractCallWithToken) XXX_Merge(src proto.Message)

func (*EventContractCallWithToken) XXX_Size added in v0.17.0

func (m *EventContractCallWithToken) XXX_Size() int

func (*EventContractCallWithToken) XXX_Unmarshal added in v0.17.0

func (m *EventContractCallWithToken) XXX_Unmarshal(b []byte) error

type EventID added in v0.18.0

type EventID string

EventID ensures a correctly formatted event ID

func NewEventID added in v0.35.0

func NewEventID(txID Hash, index uint64) EventID

NewEventID returns a new event ID

func (EventID) Validate added in v0.18.0

func (id EventID) Validate() error

Validate returns an error, if the event ID is not in format of txID-index

type EventMultisigOperatorshipTransferred added in v0.17.0

type EventMultisigOperatorshipTransferred struct {
	NewOperators []Address                                 `protobuf:"bytes,3,rep,name=new_operators,json=newOperators,proto3,customtype=Address" json:"new_operators"`
	NewThreshold github_com_cosmos_cosmos_sdk_types.Uint   `` /* 138-byte string literal not displayed */
	NewWeights   []github_com_cosmos_cosmos_sdk_types.Uint `` /* 132-byte string literal not displayed */
}

func (*EventMultisigOperatorshipTransferred) Descriptor added in v0.17.0

func (*EventMultisigOperatorshipTransferred) Descriptor() ([]byte, []int)

func (*EventMultisigOperatorshipTransferred) Marshal added in v0.17.0

func (m *EventMultisigOperatorshipTransferred) Marshal() (dAtA []byte, err error)

func (*EventMultisigOperatorshipTransferred) MarshalTo added in v0.17.0

func (m *EventMultisigOperatorshipTransferred) MarshalTo(dAtA []byte) (int, error)

func (*EventMultisigOperatorshipTransferred) MarshalToSizedBuffer added in v0.17.0

func (m *EventMultisigOperatorshipTransferred) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EventMultisigOperatorshipTransferred) ProtoMessage added in v0.17.0

func (*EventMultisigOperatorshipTransferred) ProtoMessage()

func (*EventMultisigOperatorshipTransferred) Reset added in v0.17.0

func (*EventMultisigOperatorshipTransferred) Size added in v0.17.0

func (*EventMultisigOperatorshipTransferred) String added in v0.17.0

func (*EventMultisigOperatorshipTransferred) Unmarshal added in v0.17.0

func (m *EventMultisigOperatorshipTransferred) Unmarshal(dAtA []byte) error

func (EventMultisigOperatorshipTransferred) ValidateBasic added in v0.21.0

func (m EventMultisigOperatorshipTransferred) ValidateBasic() error

ValidateBasic returns an error if the event multisig operatorship transferred is invalid

func (*EventMultisigOperatorshipTransferred) XXX_DiscardUnknown added in v0.17.0

func (m *EventMultisigOperatorshipTransferred) XXX_DiscardUnknown()

func (*EventMultisigOperatorshipTransferred) XXX_Marshal added in v0.17.0

func (m *EventMultisigOperatorshipTransferred) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventMultisigOperatorshipTransferred) XXX_Merge added in v0.17.0

func (*EventMultisigOperatorshipTransferred) XXX_Size added in v0.17.0

func (*EventMultisigOperatorshipTransferred) XXX_Unmarshal added in v0.17.0

func (m *EventMultisigOperatorshipTransferred) XXX_Unmarshal(b []byte) error

type EventMultisigOwnershipTransferred deprecated added in v0.17.0

type EventMultisigOwnershipTransferred struct {
	PreOwners     []Address                               `protobuf:"bytes,1,rep,name=pre_owners,json=preOwners,proto3,customtype=Address" json:"pre_owners"`
	PrevThreshold github_com_cosmos_cosmos_sdk_types.Uint `` /* 141-byte string literal not displayed */
	NewOwners     []Address                               `protobuf:"bytes,3,rep,name=new_owners,json=newOwners,proto3,customtype=Address" json:"new_owners"`
	NewThreshold  github_com_cosmos_cosmos_sdk_types.Uint `` /* 138-byte string literal not displayed */
}

Deprecated: Do not use.

func (*EventMultisigOwnershipTransferred) Descriptor added in v0.17.0

func (*EventMultisigOwnershipTransferred) Descriptor() ([]byte, []int)

func (*EventMultisigOwnershipTransferred) Marshal added in v0.17.0

func (m *EventMultisigOwnershipTransferred) Marshal() (dAtA []byte, err error)

func (*EventMultisigOwnershipTransferred) MarshalTo added in v0.17.0

func (m *EventMultisigOwnershipTransferred) MarshalTo(dAtA []byte) (int, error)

func (*EventMultisigOwnershipTransferred) MarshalToSizedBuffer added in v0.17.0

func (m *EventMultisigOwnershipTransferred) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EventMultisigOwnershipTransferred) ProtoMessage added in v0.17.0

func (*EventMultisigOwnershipTransferred) ProtoMessage()

func (*EventMultisigOwnershipTransferred) Reset added in v0.17.0

func (*EventMultisigOwnershipTransferred) Size added in v0.17.0

func (m *EventMultisigOwnershipTransferred) Size() (n int)

func (*EventMultisigOwnershipTransferred) String added in v0.17.0

func (*EventMultisigOwnershipTransferred) Unmarshal added in v0.17.0

func (m *EventMultisigOwnershipTransferred) Unmarshal(dAtA []byte) error

func (*EventMultisigOwnershipTransferred) XXX_DiscardUnknown added in v0.17.0

func (m *EventMultisigOwnershipTransferred) XXX_DiscardUnknown()

func (*EventMultisigOwnershipTransferred) XXX_Marshal added in v0.17.0

func (m *EventMultisigOwnershipTransferred) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventMultisigOwnershipTransferred) XXX_Merge added in v0.17.0

func (*EventMultisigOwnershipTransferred) XXX_Size added in v0.17.0

func (m *EventMultisigOwnershipTransferred) XXX_Size() int

func (*EventMultisigOwnershipTransferred) XXX_Unmarshal added in v0.17.0

func (m *EventMultisigOwnershipTransferred) XXX_Unmarshal(b []byte) error

type EventRequest added in v0.17.0

type EventRequest struct {
	Chain   string `protobuf:"bytes,1,opt,name=chain,proto3" json:"chain,omitempty"`
	EventId string `protobuf:"bytes,2,opt,name=event_id,json=eventId,proto3" json:"event_id,omitempty"`
}

func (*EventRequest) Descriptor added in v0.17.0

func (*EventRequest) Descriptor() ([]byte, []int)

func (*EventRequest) Marshal added in v0.17.0

func (m *EventRequest) Marshal() (dAtA []byte, err error)

func (*EventRequest) MarshalTo added in v0.17.0

func (m *EventRequest) MarshalTo(dAtA []byte) (int, error)

func (*EventRequest) MarshalToSizedBuffer added in v0.17.0

func (m *EventRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EventRequest) ProtoMessage added in v0.17.0

func (*EventRequest) ProtoMessage()

func (*EventRequest) Reset added in v0.17.0

func (m *EventRequest) Reset()

func (*EventRequest) Size added in v0.17.0

func (m *EventRequest) Size() (n int)

func (*EventRequest) String added in v0.17.0

func (m *EventRequest) String() string

func (*EventRequest) Unmarshal added in v0.17.0

func (m *EventRequest) Unmarshal(dAtA []byte) error

func (*EventRequest) XXX_DiscardUnknown added in v0.17.0

func (m *EventRequest) XXX_DiscardUnknown()

func (*EventRequest) XXX_Marshal added in v0.17.0

func (m *EventRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventRequest) XXX_Merge added in v0.17.0

func (m *EventRequest) XXX_Merge(src proto.Message)

func (*EventRequest) XXX_Size added in v0.17.0

func (m *EventRequest) XXX_Size() int

func (*EventRequest) XXX_Unmarshal added in v0.17.0

func (m *EventRequest) XXX_Unmarshal(b []byte) error

type EventResponse added in v0.17.0

type EventResponse struct {
	Event *Event `protobuf:"bytes,1,opt,name=event,proto3" json:"event,omitempty"`
}

func (*EventResponse) Descriptor added in v0.17.0

func (*EventResponse) Descriptor() ([]byte, []int)

func (*EventResponse) Marshal added in v0.17.0

func (m *EventResponse) Marshal() (dAtA []byte, err error)

func (*EventResponse) MarshalTo added in v0.17.0

func (m *EventResponse) MarshalTo(dAtA []byte) (int, error)

func (*EventResponse) MarshalToSizedBuffer added in v0.17.0

func (m *EventResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EventResponse) ProtoMessage added in v0.17.0

func (*EventResponse) ProtoMessage()

func (*EventResponse) Reset added in v0.17.0

func (m *EventResponse) Reset()

func (*EventResponse) Size added in v0.17.0

func (m *EventResponse) Size() (n int)

func (*EventResponse) String added in v0.17.0

func (m *EventResponse) String() string

func (*EventResponse) Unmarshal added in v0.17.0

func (m *EventResponse) Unmarshal(dAtA []byte) error

func (*EventResponse) XXX_DiscardUnknown added in v0.17.0

func (m *EventResponse) XXX_DiscardUnknown()

func (*EventResponse) XXX_Marshal added in v0.17.0

func (m *EventResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventResponse) XXX_Merge added in v0.17.0

func (m *EventResponse) XXX_Merge(src proto.Message)

func (*EventResponse) XXX_Size added in v0.17.0

func (m *EventResponse) XXX_Size() int

func (*EventResponse) XXX_Unmarshal added in v0.17.0

func (m *EventResponse) XXX_Unmarshal(b []byte) error

type EventTokenDeployed added in v0.17.0

type EventTokenDeployed struct {
	Symbol       string  `protobuf:"bytes,1,opt,name=symbol,proto3" json:"symbol,omitempty"`
	TokenAddress Address `protobuf:"bytes,2,opt,name=token_address,json=tokenAddress,proto3,customtype=Address" json:"token_address"`
}

func (*EventTokenDeployed) Descriptor added in v0.17.0

func (*EventTokenDeployed) Descriptor() ([]byte, []int)

func (*EventTokenDeployed) Marshal added in v0.17.0

func (m *EventTokenDeployed) Marshal() (dAtA []byte, err error)

func (*EventTokenDeployed) MarshalTo added in v0.17.0

func (m *EventTokenDeployed) MarshalTo(dAtA []byte) (int, error)

func (*EventTokenDeployed) MarshalToSizedBuffer added in v0.17.0

func (m *EventTokenDeployed) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EventTokenDeployed) ProtoMessage added in v0.17.0

func (*EventTokenDeployed) ProtoMessage()

func (*EventTokenDeployed) Reset added in v0.17.0

func (m *EventTokenDeployed) Reset()

func (*EventTokenDeployed) Size added in v0.17.0

func (m *EventTokenDeployed) Size() (n int)

func (*EventTokenDeployed) String added in v0.17.0

func (m *EventTokenDeployed) String() string

func (*EventTokenDeployed) Unmarshal added in v0.17.0

func (m *EventTokenDeployed) Unmarshal(dAtA []byte) error

func (EventTokenDeployed) ValidateBasic added in v0.17.0

func (m EventTokenDeployed) ValidateBasic() error

ValidateBasic returns an error if the event token deployed is invalid

func (*EventTokenDeployed) XXX_DiscardUnknown added in v0.17.0

func (m *EventTokenDeployed) XXX_DiscardUnknown()

func (*EventTokenDeployed) XXX_Marshal added in v0.17.0

func (m *EventTokenDeployed) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventTokenDeployed) XXX_Merge added in v0.17.0

func (m *EventTokenDeployed) XXX_Merge(src proto.Message)

func (*EventTokenDeployed) XXX_Size added in v0.17.0

func (m *EventTokenDeployed) XXX_Size() int

func (*EventTokenDeployed) XXX_Unmarshal added in v0.17.0

func (m *EventTokenDeployed) XXX_Unmarshal(b []byte) error

type EventTokenSent added in v0.17.0

type EventTokenSent struct {
	Sender             Address                                                         `protobuf:"bytes,1,opt,name=sender,proto3,customtype=Address" json:"sender"`
	DestinationChain   github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 182-byte string literal not displayed */
	DestinationAddress string                                                          `protobuf:"bytes,3,opt,name=destination_address,json=destinationAddress,proto3" json:"destination_address,omitempty"`
	Symbol             string                                                          `protobuf:"bytes,4,opt,name=symbol,proto3" json:"symbol,omitempty"`
	Amount             github_com_cosmos_cosmos_sdk_types.Uint                         `protobuf:"bytes,5,opt,name=amount,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Uint" json:"amount"`
}

func (*EventTokenSent) Descriptor added in v0.17.0

func (*EventTokenSent) Descriptor() ([]byte, []int)

func (*EventTokenSent) Marshal added in v0.17.0

func (m *EventTokenSent) Marshal() (dAtA []byte, err error)

func (*EventTokenSent) MarshalTo added in v0.17.0

func (m *EventTokenSent) MarshalTo(dAtA []byte) (int, error)

func (*EventTokenSent) MarshalToSizedBuffer added in v0.17.0

func (m *EventTokenSent) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EventTokenSent) ProtoMessage added in v0.17.0

func (*EventTokenSent) ProtoMessage()

func (*EventTokenSent) Reset added in v0.17.0

func (m *EventTokenSent) Reset()

func (*EventTokenSent) Size added in v0.17.0

func (m *EventTokenSent) Size() (n int)

func (*EventTokenSent) String added in v0.17.0

func (m *EventTokenSent) String() string

func (*EventTokenSent) Unmarshal added in v0.17.0

func (m *EventTokenSent) Unmarshal(dAtA []byte) error

func (EventTokenSent) ValidateBasic added in v0.17.0

func (m EventTokenSent) ValidateBasic() error

ValidateBasic returns an error if the event token sent is invalid

func (*EventTokenSent) XXX_DiscardUnknown added in v0.17.0

func (m *EventTokenSent) XXX_DiscardUnknown()

func (*EventTokenSent) XXX_Marshal added in v0.17.0

func (m *EventTokenSent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventTokenSent) XXX_Merge added in v0.17.0

func (m *EventTokenSent) XXX_Merge(src proto.Message)

func (*EventTokenSent) XXX_Size added in v0.17.0

func (m *EventTokenSent) XXX_Size() int

func (*EventTokenSent) XXX_Unmarshal added in v0.17.0

func (m *EventTokenSent) XXX_Unmarshal(b []byte) error

type EventTransfer added in v0.17.0

type EventTransfer struct {
	To     Address                                 `protobuf:"bytes,1,opt,name=to,proto3,customtype=Address" json:"to"`
	Amount github_com_cosmos_cosmos_sdk_types.Uint `protobuf:"bytes,2,opt,name=amount,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Uint" json:"amount"`
}

func (*EventTransfer) Descriptor added in v0.17.0

func (*EventTransfer) Descriptor() ([]byte, []int)

func (*EventTransfer) Marshal added in v0.17.0

func (m *EventTransfer) Marshal() (dAtA []byte, err error)

func (*EventTransfer) MarshalTo added in v0.17.0

func (m *EventTransfer) MarshalTo(dAtA []byte) (int, error)

func (*EventTransfer) MarshalToSizedBuffer added in v0.17.0

func (m *EventTransfer) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EventTransfer) ProtoMessage added in v0.17.0

func (*EventTransfer) ProtoMessage()

func (*EventTransfer) Reset added in v0.17.0

func (m *EventTransfer) Reset()

func (*EventTransfer) Size added in v0.17.0

func (m *EventTransfer) Size() (n int)

func (*EventTransfer) String added in v0.17.0

func (m *EventTransfer) String() string

func (*EventTransfer) Unmarshal added in v0.17.0

func (m *EventTransfer) Unmarshal(dAtA []byte) error

func (EventTransfer) ValidateBasic added in v0.17.0

func (m EventTransfer) ValidateBasic() error

ValidateBasic returns an error if the event transfer is invalid

func (*EventTransfer) XXX_DiscardUnknown added in v0.17.0

func (m *EventTransfer) XXX_DiscardUnknown()

func (*EventTransfer) XXX_Marshal added in v0.17.0

func (m *EventTransfer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventTransfer) XXX_Merge added in v0.17.0

func (m *EventTransfer) XXX_Merge(src proto.Message)

func (*EventTransfer) XXX_Size added in v0.17.0

func (m *EventTransfer) XXX_Size() int

func (*EventTransfer) XXX_Unmarshal added in v0.17.0

func (m *EventTransfer) XXX_Unmarshal(b []byte) error

type Event_ContractCall added in v0.17.0

type Event_ContractCall struct {
	ContractCall *EventContractCall `protobuf:"bytes,6,opt,name=contract_call,json=contractCall,proto3,oneof" json:"contract_call,omitempty"`
}

func (*Event_ContractCall) MarshalTo added in v0.17.0

func (m *Event_ContractCall) MarshalTo(dAtA []byte) (int, error)

func (*Event_ContractCall) MarshalToSizedBuffer added in v0.17.0

func (m *Event_ContractCall) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Event_ContractCall) Size added in v0.17.0

func (m *Event_ContractCall) Size() (n int)

type Event_ContractCallWithToken added in v0.17.0

type Event_ContractCallWithToken struct {
	ContractCallWithToken *EventContractCallWithToken `` /* 134-byte string literal not displayed */
}

func (*Event_ContractCallWithToken) MarshalTo added in v0.17.0

func (m *Event_ContractCallWithToken) MarshalTo(dAtA []byte) (int, error)

func (*Event_ContractCallWithToken) MarshalToSizedBuffer added in v0.17.0

func (m *Event_ContractCallWithToken) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Event_ContractCallWithToken) Size added in v0.17.0

func (m *Event_ContractCallWithToken) Size() (n int)

type Event_MultisigOperatorshipTransferred added in v0.17.0

type Event_MultisigOperatorshipTransferred struct {
	MultisigOperatorshipTransferred *EventMultisigOperatorshipTransferred `` /* 163-byte string literal not displayed */
}

func (*Event_MultisigOperatorshipTransferred) MarshalTo added in v0.17.0

func (m *Event_MultisigOperatorshipTransferred) MarshalTo(dAtA []byte) (int, error)

func (*Event_MultisigOperatorshipTransferred) MarshalToSizedBuffer added in v0.17.0

func (m *Event_MultisigOperatorshipTransferred) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Event_MultisigOperatorshipTransferred) Size added in v0.17.0

type Event_MultisigOwnershipTransferred added in v0.17.0

type Event_MultisigOwnershipTransferred struct {
	MultisigOwnershipTransferred *EventMultisigOwnershipTransferred `` /* 154-byte string literal not displayed */
}

func (*Event_MultisigOwnershipTransferred) MarshalTo added in v0.17.0

func (m *Event_MultisigOwnershipTransferred) MarshalTo(dAtA []byte) (int, error)

func (*Event_MultisigOwnershipTransferred) MarshalToSizedBuffer added in v0.17.0

func (m *Event_MultisigOwnershipTransferred) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Event_MultisigOwnershipTransferred) Size added in v0.17.0

type Event_Status added in v0.17.0

type Event_Status int32
const (
	EventNonExistent Event_Status = 0
	EventConfirmed   Event_Status = 1
	EventCompleted   Event_Status = 2
	EventFailed      Event_Status = 3
)

func (Event_Status) EnumDescriptor added in v0.17.0

func (Event_Status) EnumDescriptor() ([]byte, []int)

func (Event_Status) String added in v0.17.0

func (x Event_Status) String() string

type Event_TokenDeployed added in v0.17.0

type Event_TokenDeployed struct {
	TokenDeployed *EventTokenDeployed `protobuf:"bytes,9,opt,name=token_deployed,json=tokenDeployed,proto3,oneof" json:"token_deployed,omitempty"`
}

func (*Event_TokenDeployed) MarshalTo added in v0.17.0

func (m *Event_TokenDeployed) MarshalTo(dAtA []byte) (int, error)

func (*Event_TokenDeployed) MarshalToSizedBuffer added in v0.17.0

func (m *Event_TokenDeployed) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Event_TokenDeployed) Size added in v0.17.0

func (m *Event_TokenDeployed) Size() (n int)

type Event_TokenSent added in v0.17.0

type Event_TokenSent struct {
	TokenSent *EventTokenSent `protobuf:"bytes,5,opt,name=token_sent,json=tokenSent,proto3,oneof" json:"token_sent,omitempty"`
}

func (*Event_TokenSent) MarshalTo added in v0.17.0

func (m *Event_TokenSent) MarshalTo(dAtA []byte) (int, error)

func (*Event_TokenSent) MarshalToSizedBuffer added in v0.17.0

func (m *Event_TokenSent) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Event_TokenSent) Size added in v0.17.0

func (m *Event_TokenSent) Size() (n int)

type Event_Transfer added in v0.17.0

type Event_Transfer struct {
	Transfer *EventTransfer `protobuf:"bytes,8,opt,name=transfer,proto3,oneof" json:"transfer,omitempty"`
}

func (*Event_Transfer) MarshalTo added in v0.17.0

func (m *Event_Transfer) MarshalTo(dAtA []byte) (int, error)

func (*Event_Transfer) MarshalToSizedBuffer added in v0.17.0

func (m *Event_Transfer) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Event_Transfer) Size added in v0.17.0

func (m *Event_Transfer) Size() (n int)

type Gateway

type Gateway struct {
	Address Address `protobuf:"bytes,1,opt,name=address,proto3,customtype=Address" json:"address"`
}

func (*Gateway) Descriptor

func (*Gateway) Descriptor() ([]byte, []int)

func (*Gateway) Marshal

func (m *Gateway) Marshal() (dAtA []byte, err error)

func (*Gateway) MarshalTo

func (m *Gateway) MarshalTo(dAtA []byte) (int, error)

func (*Gateway) MarshalToSizedBuffer

func (m *Gateway) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Gateway) ProtoMessage

func (*Gateway) ProtoMessage()

func (*Gateway) Reset

func (m *Gateway) Reset()

func (*Gateway) Size

func (m *Gateway) Size() (n int)

func (*Gateway) String

func (m *Gateway) String() string

func (*Gateway) Unmarshal

func (m *Gateway) Unmarshal(dAtA []byte) error

func (Gateway) ValidateBasic added in v0.9.0

func (m Gateway) ValidateBasic() error

ValidateBasic returns an error if the Gateway address is invalid

func (*Gateway) XXX_DiscardUnknown

func (m *Gateway) XXX_DiscardUnknown()

func (*Gateway) XXX_Marshal

func (m *Gateway) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Gateway) XXX_Merge

func (m *Gateway) XXX_Merge(src proto.Message)

func (*Gateway) XXX_Size

func (m *Gateway) XXX_Size() int

func (*Gateway) XXX_Unmarshal

func (m *Gateway) XXX_Unmarshal(b []byte) error

type GatewayAddressRequest added in v0.16.0

type GatewayAddressRequest struct {
	Chain string `protobuf:"bytes,1,opt,name=chain,proto3" json:"chain,omitempty"`
}

func (*GatewayAddressRequest) Descriptor added in v0.16.0

func (*GatewayAddressRequest) Descriptor() ([]byte, []int)

func (*GatewayAddressRequest) Marshal added in v0.16.0

func (m *GatewayAddressRequest) Marshal() (dAtA []byte, err error)

func (*GatewayAddressRequest) MarshalTo added in v0.16.0

func (m *GatewayAddressRequest) MarshalTo(dAtA []byte) (int, error)

func (*GatewayAddressRequest) MarshalToSizedBuffer added in v0.16.0

func (m *GatewayAddressRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GatewayAddressRequest) ProtoMessage added in v0.16.0

func (*GatewayAddressRequest) ProtoMessage()

func (*GatewayAddressRequest) Reset added in v0.16.0

func (m *GatewayAddressRequest) Reset()

func (*GatewayAddressRequest) Size added in v0.16.0

func (m *GatewayAddressRequest) Size() (n int)

func (*GatewayAddressRequest) String added in v0.16.0

func (m *GatewayAddressRequest) String() string

func (*GatewayAddressRequest) Unmarshal added in v0.16.0

func (m *GatewayAddressRequest) Unmarshal(dAtA []byte) error

func (*GatewayAddressRequest) XXX_DiscardUnknown added in v0.16.0

func (m *GatewayAddressRequest) XXX_DiscardUnknown()

func (*GatewayAddressRequest) XXX_Marshal added in v0.16.0

func (m *GatewayAddressRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GatewayAddressRequest) XXX_Merge added in v0.16.0

func (m *GatewayAddressRequest) XXX_Merge(src proto.Message)

func (*GatewayAddressRequest) XXX_Size added in v0.16.0

func (m *GatewayAddressRequest) XXX_Size() int

func (*GatewayAddressRequest) XXX_Unmarshal added in v0.16.0

func (m *GatewayAddressRequest) XXX_Unmarshal(b []byte) error

type GatewayAddressResponse added in v0.16.0

type GatewayAddressResponse struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
}

func (*GatewayAddressResponse) Descriptor added in v0.16.0

func (*GatewayAddressResponse) Descriptor() ([]byte, []int)

func (*GatewayAddressResponse) Marshal added in v0.16.0

func (m *GatewayAddressResponse) Marshal() (dAtA []byte, err error)

func (*GatewayAddressResponse) MarshalTo added in v0.16.0

func (m *GatewayAddressResponse) MarshalTo(dAtA []byte) (int, error)

func (*GatewayAddressResponse) MarshalToSizedBuffer added in v0.16.0

func (m *GatewayAddressResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GatewayAddressResponse) ProtoMessage added in v0.16.0

func (*GatewayAddressResponse) ProtoMessage()

func (*GatewayAddressResponse) Reset added in v0.16.0

func (m *GatewayAddressResponse) Reset()

func (*GatewayAddressResponse) Size added in v0.16.0

func (m *GatewayAddressResponse) Size() (n int)

func (*GatewayAddressResponse) String added in v0.16.0

func (m *GatewayAddressResponse) String() string

func (*GatewayAddressResponse) Unmarshal added in v0.16.0

func (m *GatewayAddressResponse) Unmarshal(dAtA []byte) error

func (*GatewayAddressResponse) XXX_DiscardUnknown added in v0.16.0

func (m *GatewayAddressResponse) XXX_DiscardUnknown()

func (*GatewayAddressResponse) XXX_Marshal added in v0.16.0

func (m *GatewayAddressResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GatewayAddressResponse) XXX_Merge added in v0.16.0

func (m *GatewayAddressResponse) XXX_Merge(src proto.Message)

func (*GatewayAddressResponse) XXX_Size added in v0.16.0

func (m *GatewayAddressResponse) XXX_Size() int

func (*GatewayAddressResponse) XXX_Unmarshal added in v0.16.0

func (m *GatewayAddressResponse) XXX_Unmarshal(b []byte) error

type GenesisState

type GenesisState struct {
	Chains []GenesisState_Chain `protobuf:"bytes,3,rep,name=chains,proto3" json:"chains"`
}

GenesisState represents the genesis state

func DefaultGenesisState

func DefaultGenesisState() GenesisState

DefaultGenesisState returns a default genesis state

func GetGenesisStateFromAppState

func GetGenesisStateFromAppState(cdc codec.JSONCodec, appState map[string]json.RawMessage) GenesisState

GetGenesisStateFromAppState returns x/evm GenesisState given raw application genesis state.

func NewGenesisState added in v0.9.0

func NewGenesisState(chains []GenesisState_Chain) GenesisState

NewGenesisState returns a new genesis state

func (*GenesisState) Descriptor

func (*GenesisState) Descriptor() ([]byte, []int)

func (*GenesisState) Marshal

func (m *GenesisState) Marshal() (dAtA []byte, err error)

func (*GenesisState) MarshalTo

func (m *GenesisState) MarshalTo(dAtA []byte) (int, error)

func (*GenesisState) MarshalToSizedBuffer

func (m *GenesisState) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GenesisState) ProtoMessage

func (*GenesisState) ProtoMessage()

func (*GenesisState) Reset

func (m *GenesisState) Reset()

func (*GenesisState) Size

func (m *GenesisState) Size() (n int)

func (*GenesisState) String

func (m *GenesisState) String() string

func (*GenesisState) Unmarshal

func (m *GenesisState) Unmarshal(dAtA []byte) error

func (GenesisState) Validate

func (m GenesisState) Validate() error

Validate validates the genesis state

func (*GenesisState) XXX_DiscardUnknown

func (m *GenesisState) XXX_DiscardUnknown()

func (*GenesisState) XXX_Marshal

func (m *GenesisState) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GenesisState) XXX_Merge

func (m *GenesisState) XXX_Merge(src proto.Message)

func (*GenesisState) XXX_Size

func (m *GenesisState) XXX_Size() int

func (*GenesisState) XXX_Unmarshal

func (m *GenesisState) XXX_Unmarshal(b []byte) error

type GenesisState_Chain added in v0.9.0

type GenesisState_Chain struct {
	Params                  Params                 `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
	BurnerInfos             []BurnerInfo           `protobuf:"bytes,2,rep,name=burner_infos,json=burnerInfos,proto3" json:"burner_infos"`
	CommandQueue            utils.QueueState       `protobuf:"bytes,3,opt,name=command_queue,json=commandQueue,proto3" json:"command_queue"`
	ConfirmedDeposits       []ERC20Deposit         `protobuf:"bytes,4,rep,name=confirmed_deposits,json=confirmedDeposits,proto3" json:"confirmed_deposits"`
	BurnedDeposits          []ERC20Deposit         `protobuf:"bytes,5,rep,name=burned_deposits,json=burnedDeposits,proto3" json:"burned_deposits"`
	CommandBatches          []CommandBatchMetadata `protobuf:"bytes,8,rep,name=command_batches,json=commandBatches,proto3" json:"command_batches"`
	Gateway                 Gateway                `protobuf:"bytes,9,opt,name=gateway,proto3" json:"gateway"`
	Tokens                  []ERC20TokenMetadata   `protobuf:"bytes,10,rep,name=tokens,proto3" json:"tokens"`
	Events                  []Event                `protobuf:"bytes,11,rep,name=events,proto3" json:"events"`
	ConfirmedEventQueue     utils.QueueState       `protobuf:"bytes,12,opt,name=confirmed_event_queue,json=confirmedEventQueue,proto3" json:"confirmed_event_queue"`
	LegacyConfirmedDeposits []ERC20Deposit         `protobuf:"bytes,13,rep,name=legacy_confirmed_deposits,json=legacyConfirmedDeposits,proto3" json:"legacy_confirmed_deposits"`
	LegacyBurnedDeposits    []ERC20Deposit         `protobuf:"bytes,14,rep,name=legacy_burned_deposits,json=legacyBurnedDeposits,proto3" json:"legacy_burned_deposits"`
}

func DefaultChains added in v0.9.0

func DefaultChains() []GenesisState_Chain

DefaultChains returns the default chains for a genesis state

func (*GenesisState_Chain) Descriptor added in v0.9.0

func (*GenesisState_Chain) Descriptor() ([]byte, []int)

func (*GenesisState_Chain) Marshal added in v0.9.0

func (m *GenesisState_Chain) Marshal() (dAtA []byte, err error)

func (*GenesisState_Chain) MarshalTo added in v0.9.0

func (m *GenesisState_Chain) MarshalTo(dAtA []byte) (int, error)

func (*GenesisState_Chain) MarshalToSizedBuffer added in v0.9.0

func (m *GenesisState_Chain) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GenesisState_Chain) ProtoMessage added in v0.9.0

func (*GenesisState_Chain) ProtoMessage()

func (*GenesisState_Chain) Reset added in v0.9.0

func (m *GenesisState_Chain) Reset()

func (*GenesisState_Chain) Size added in v0.9.0

func (m *GenesisState_Chain) Size() (n int)

func (*GenesisState_Chain) String added in v0.9.0

func (m *GenesisState_Chain) String() string

func (*GenesisState_Chain) Unmarshal added in v0.9.0

func (m *GenesisState_Chain) Unmarshal(dAtA []byte) error

func (*GenesisState_Chain) XXX_DiscardUnknown added in v0.9.0

func (m *GenesisState_Chain) XXX_DiscardUnknown()

func (*GenesisState_Chain) XXX_Marshal added in v0.9.0

func (m *GenesisState_Chain) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GenesisState_Chain) XXX_Merge added in v0.9.0

func (m *GenesisState_Chain) XXX_Merge(src proto.Message)

func (*GenesisState_Chain) XXX_Size added in v0.9.0

func (m *GenesisState_Chain) XXX_Size() int

func (*GenesisState_Chain) XXX_Unmarshal added in v0.9.0

func (m *GenesisState_Chain) XXX_Unmarshal(b []byte) error

type Hash

type Hash common.Hash

Hash wraps EVM Hash

func (Hash) Bytes

func (h Hash) Bytes() []byte

Bytes returns the actual byte array of the hash

func (Hash) Hex

func (h Hash) Hex() string

Hex converts a hash to a hex string.

func (Hash) IsZero added in v0.17.0

func (h Hash) IsZero() bool

IsZero returns true if the hash is empty; otherwise false

func (Hash) Marshal

func (h Hash) Marshal() ([]byte, error)

Marshal implements codec.ProtoMarshaler

func (Hash) MarshalTo

func (h Hash) MarshalTo(data []byte) (n int, err error)

MarshalTo implements codec.ProtoMarshaler

func (Hash) Size

func (h Hash) Size() int

Size implements codec.ProtoMarshaler

func (*Hash) Unmarshal

func (h *Hash) Unmarshal(data []byte) error

Unmarshal implements codec.ProtoMarshaler

type InitPoller

type InitPoller = interface {
	InitializePoll(ctx sdk.Context, pollBuilder vote.PollBuilder) (vote.PollID, error)
}

InitPoller is a minimal interface to start a poll. This must be a type alias instead of a type definition, because the concrete implementation of Signer (specifically StartSign) is defined in a different package using another (identical) InitPoller interface. Go cannot match the types otherwise

type KeyAddressRequest added in v0.16.0

type KeyAddressRequest struct {
	Chain string                                                         `protobuf:"bytes,1,opt,name=chain,proto3" json:"chain,omitempty"`
	KeyID github_com_axelarnetwork_axelar_core_x_multisig_exported.KeyID `` /* 148-byte string literal not displayed */
}

func (*KeyAddressRequest) Descriptor added in v0.16.0

func (*KeyAddressRequest) Descriptor() ([]byte, []int)

func (*KeyAddressRequest) Marshal added in v0.16.0

func (m *KeyAddressRequest) Marshal() (dAtA []byte, err error)

func (*KeyAddressRequest) MarshalTo added in v0.16.0

func (m *KeyAddressRequest) MarshalTo(dAtA []byte) (int, error)

func (*KeyAddressRequest) MarshalToSizedBuffer added in v0.16.0

func (m *KeyAddressRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*KeyAddressRequest) ProtoMessage added in v0.16.0

func (*KeyAddressRequest) ProtoMessage()

func (*KeyAddressRequest) Reset added in v0.16.0

func (m *KeyAddressRequest) Reset()

func (*KeyAddressRequest) Size added in v0.16.0

func (m *KeyAddressRequest) Size() (n int)

func (*KeyAddressRequest) String added in v0.16.0

func (m *KeyAddressRequest) String() string

func (*KeyAddressRequest) Unmarshal added in v0.16.0

func (m *KeyAddressRequest) Unmarshal(dAtA []byte) error

func (*KeyAddressRequest) XXX_DiscardUnknown added in v0.16.0

func (m *KeyAddressRequest) XXX_DiscardUnknown()

func (*KeyAddressRequest) XXX_Marshal added in v0.16.0

func (m *KeyAddressRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*KeyAddressRequest) XXX_Merge added in v0.16.0

func (m *KeyAddressRequest) XXX_Merge(src proto.Message)

func (*KeyAddressRequest) XXX_Size added in v0.16.0

func (m *KeyAddressRequest) XXX_Size() int

func (*KeyAddressRequest) XXX_Unmarshal added in v0.16.0

func (m *KeyAddressRequest) XXX_Unmarshal(b []byte) error

type KeyAddressResponse added in v0.16.0

type KeyAddressResponse struct {
	KeyID     github_com_axelarnetwork_axelar_core_x_multisig_exported.KeyID `` /* 148-byte string literal not displayed */
	Addresses []KeyAddressResponse_WeightedAddress                           `protobuf:"bytes,2,rep,name=addresses,proto3" json:"addresses"`
	Threshold string                                                         `protobuf:"bytes,3,opt,name=threshold,proto3" json:"threshold,omitempty"`
}

func (*KeyAddressResponse) Descriptor added in v0.16.0

func (*KeyAddressResponse) Descriptor() ([]byte, []int)

func (*KeyAddressResponse) Marshal added in v0.16.0

func (m *KeyAddressResponse) Marshal() (dAtA []byte, err error)

func (*KeyAddressResponse) MarshalTo added in v0.16.0

func (m *KeyAddressResponse) MarshalTo(dAtA []byte) (int, error)

func (*KeyAddressResponse) MarshalToSizedBuffer added in v0.16.0

func (m *KeyAddressResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*KeyAddressResponse) ProtoMessage added in v0.16.0

func (*KeyAddressResponse) ProtoMessage()

func (*KeyAddressResponse) Reset added in v0.16.0

func (m *KeyAddressResponse) Reset()

func (*KeyAddressResponse) Size added in v0.16.0

func (m *KeyAddressResponse) Size() (n int)

func (*KeyAddressResponse) String added in v0.16.0

func (m *KeyAddressResponse) String() string

func (*KeyAddressResponse) Unmarshal added in v0.16.0

func (m *KeyAddressResponse) Unmarshal(dAtA []byte) error

func (*KeyAddressResponse) XXX_DiscardUnknown added in v0.16.0

func (m *KeyAddressResponse) XXX_DiscardUnknown()

func (*KeyAddressResponse) XXX_Marshal added in v0.16.0

func (m *KeyAddressResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*KeyAddressResponse) XXX_Merge added in v0.16.0

func (m *KeyAddressResponse) XXX_Merge(src proto.Message)

func (*KeyAddressResponse) XXX_Size added in v0.16.0

func (m *KeyAddressResponse) XXX_Size() int

func (*KeyAddressResponse) XXX_Unmarshal added in v0.16.0

func (m *KeyAddressResponse) XXX_Unmarshal(b []byte) error

type KeyAddressResponse_WeightedAddress added in v0.21.0

type KeyAddressResponse_WeightedAddress struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Weight  string `protobuf:"bytes,2,opt,name=weight,proto3" json:"weight,omitempty"`
}

func (*KeyAddressResponse_WeightedAddress) Descriptor added in v0.21.0

func (*KeyAddressResponse_WeightedAddress) Descriptor() ([]byte, []int)

func (*KeyAddressResponse_WeightedAddress) Marshal added in v0.21.0

func (m *KeyAddressResponse_WeightedAddress) Marshal() (dAtA []byte, err error)

func (*KeyAddressResponse_WeightedAddress) MarshalTo added in v0.21.0

func (m *KeyAddressResponse_WeightedAddress) MarshalTo(dAtA []byte) (int, error)

func (*KeyAddressResponse_WeightedAddress) MarshalToSizedBuffer added in v0.21.0

func (m *KeyAddressResponse_WeightedAddress) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*KeyAddressResponse_WeightedAddress) ProtoMessage added in v0.21.0

func (*KeyAddressResponse_WeightedAddress) ProtoMessage()

func (*KeyAddressResponse_WeightedAddress) Reset added in v0.21.0

func (*KeyAddressResponse_WeightedAddress) Size added in v0.21.0

func (*KeyAddressResponse_WeightedAddress) String added in v0.21.0

func (*KeyAddressResponse_WeightedAddress) Unmarshal added in v0.21.0

func (m *KeyAddressResponse_WeightedAddress) Unmarshal(dAtA []byte) error

func (*KeyAddressResponse_WeightedAddress) XXX_DiscardUnknown added in v0.21.0

func (m *KeyAddressResponse_WeightedAddress) XXX_DiscardUnknown()

func (*KeyAddressResponse_WeightedAddress) XXX_Marshal added in v0.21.0

func (m *KeyAddressResponse_WeightedAddress) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*KeyAddressResponse_WeightedAddress) XXX_Merge added in v0.21.0

func (*KeyAddressResponse_WeightedAddress) XXX_Size added in v0.21.0

func (*KeyAddressResponse_WeightedAddress) XXX_Unmarshal added in v0.21.0

func (m *KeyAddressResponse_WeightedAddress) XXX_Unmarshal(b []byte) error

type LinkRequest

type LinkRequest struct {
	Sender         github_com_cosmos_cosmos_sdk_types.AccAddress                   `protobuf:"bytes,1,opt,name=sender,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"sender,omitempty"`
	Chain          github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	RecipientAddr  string                                                          `protobuf:"bytes,3,opt,name=recipient_addr,json=recipientAddr,proto3" json:"recipient_addr,omitempty"`
	Asset          string                                                          `protobuf:"bytes,4,opt,name=asset,proto3" json:"asset,omitempty"`
	RecipientChain github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 176-byte string literal not displayed */
}

MsgLink represents the message that links a cross chain address to a burner address

func NewLinkRequest

func NewLinkRequest(sender sdk.AccAddress, chain, recipientChain, recipientAddr, asset string) *LinkRequest

NewLinkRequest creates a message of type LinkRequest

func (*LinkRequest) Descriptor

func (*LinkRequest) Descriptor() ([]byte, []int)

func (LinkRequest) GetSignBytes

func (m LinkRequest) GetSignBytes() []byte

GetSignBytes implements sdk.Msg

func (LinkRequest) GetSigners

func (m LinkRequest) GetSigners() []sdk.AccAddress

GetSigners implements sdk.Msg

func (*LinkRequest) Marshal

func (m *LinkRequest) Marshal() (dAtA []byte, err error)

func (*LinkRequest) MarshalTo

func (m *LinkRequest) MarshalTo(dAtA []byte) (int, error)

func (*LinkRequest) MarshalToSizedBuffer

func (m *LinkRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*LinkRequest) ProtoMessage

func (*LinkRequest) ProtoMessage()

func (*LinkRequest) Reset

func (m *LinkRequest) Reset()

func (LinkRequest) Route

func (m LinkRequest) Route() string

Route implements sdk.Msg

func (*LinkRequest) Size

func (m *LinkRequest) Size() (n int)

func (*LinkRequest) String

func (m *LinkRequest) String() string

func (LinkRequest) Type

func (m LinkRequest) Type() string

Type implements sdk.Msg

func (*LinkRequest) Unmarshal

func (m *LinkRequest) Unmarshal(dAtA []byte) error

func (LinkRequest) ValidateBasic

func (m LinkRequest) ValidateBasic() error

ValidateBasic implements sdk.Msg

func (*LinkRequest) XXX_DiscardUnknown

func (m *LinkRequest) XXX_DiscardUnknown()

func (*LinkRequest) XXX_Marshal

func (m *LinkRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LinkRequest) XXX_Merge

func (m *LinkRequest) XXX_Merge(src proto.Message)

func (*LinkRequest) XXX_Size

func (m *LinkRequest) XXX_Size() int

func (*LinkRequest) XXX_Unmarshal

func (m *LinkRequest) XXX_Unmarshal(b []byte) error

type LinkResponse

type LinkResponse struct {
	DepositAddr string `protobuf:"bytes,1,opt,name=deposit_addr,json=depositAddr,proto3" json:"deposit_addr,omitempty"`
}

func (*LinkResponse) Descriptor

func (*LinkResponse) Descriptor() ([]byte, []int)

func (*LinkResponse) Marshal

func (m *LinkResponse) Marshal() (dAtA []byte, err error)

func (*LinkResponse) MarshalTo

func (m *LinkResponse) MarshalTo(dAtA []byte) (int, error)

func (*LinkResponse) MarshalToSizedBuffer

func (m *LinkResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*LinkResponse) ProtoMessage

func (*LinkResponse) ProtoMessage()

func (*LinkResponse) Reset

func (m *LinkResponse) Reset()

func (*LinkResponse) Size

func (m *LinkResponse) Size() (n int)

func (*LinkResponse) String

func (m *LinkResponse) String() string

func (*LinkResponse) Unmarshal

func (m *LinkResponse) Unmarshal(dAtA []byte) error

func (*LinkResponse) XXX_DiscardUnknown

func (m *LinkResponse) XXX_DiscardUnknown()

func (*LinkResponse) XXX_Marshal

func (m *LinkResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LinkResponse) XXX_Merge

func (m *LinkResponse) XXX_Merge(src proto.Message)

func (*LinkResponse) XXX_Size

func (m *LinkResponse) XXX_Size() int

func (*LinkResponse) XXX_Unmarshal

func (m *LinkResponse) XXX_Unmarshal(b []byte) error

type MintCommand added in v0.25.0

type MintCommand struct {
	Chain              github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName  `` /* 136-byte string literal not displayed */
	TransferID         github_com_axelarnetwork_axelar_core_x_nexus_exported.TransferID `` /* 166-byte string literal not displayed */
	CommandID          CommandID                                                        `protobuf:"bytes,3,opt,name=command_id,json=commandId,proto3,customtype=CommandID" json:"command_id"`
	DestinationChain   github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName  `` /* 182-byte string literal not displayed */
	DestinationAddress string                                                           `protobuf:"bytes,5,opt,name=destination_address,json=destinationAddress,proto3" json:"destination_address,omitempty"`
	Asset              types.Coin                                                       `protobuf:"bytes,6,opt,name=asset,proto3" json:"asset"`
}

func (*MintCommand) Descriptor added in v0.25.0

func (*MintCommand) Descriptor() ([]byte, []int)

func (*MintCommand) GetAsset added in v0.25.0

func (m *MintCommand) GetAsset() types.Coin

func (*MintCommand) GetChain added in v0.25.0

func (*MintCommand) GetDestinationAddress added in v0.25.0

func (m *MintCommand) GetDestinationAddress() string

func (*MintCommand) GetDestinationChain added in v0.25.0

func (*MintCommand) GetTransferID added in v0.25.0

func (*MintCommand) Marshal added in v0.25.0

func (m *MintCommand) Marshal() (dAtA []byte, err error)

func (*MintCommand) MarshalTo added in v0.25.0

func (m *MintCommand) MarshalTo(dAtA []byte) (int, error)

func (*MintCommand) MarshalToSizedBuffer added in v0.25.0

func (m *MintCommand) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MintCommand) ProtoMessage added in v0.25.0

func (*MintCommand) ProtoMessage()

func (*MintCommand) Reset added in v0.25.0

func (m *MintCommand) Reset()

func (*MintCommand) Size added in v0.25.0

func (m *MintCommand) Size() (n int)

func (*MintCommand) String added in v0.25.0

func (m *MintCommand) String() string

func (*MintCommand) Unmarshal added in v0.25.0

func (m *MintCommand) Unmarshal(dAtA []byte) error

func (*MintCommand) XXX_DiscardUnknown added in v0.25.0

func (m *MintCommand) XXX_DiscardUnknown()

func (*MintCommand) XXX_Marshal added in v0.25.0

func (m *MintCommand) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MintCommand) XXX_Merge added in v0.25.0

func (m *MintCommand) XXX_Merge(src proto.Message)

func (*MintCommand) XXX_MessageName added in v0.33.1

func (*MintCommand) XXX_MessageName() string

func (*MintCommand) XXX_Size added in v0.25.0

func (m *MintCommand) XXX_Size() int

func (*MintCommand) XXX_Unmarshal added in v0.25.0

func (m *MintCommand) XXX_Unmarshal(b []byte) error

type MsgServiceClient

type MsgServiceClient interface {
	SetGateway(ctx context.Context, in *SetGatewayRequest, opts ...grpc.CallOption) (*SetGatewayResponse, error)
	// Deprecated: use ConfirmGatewayTxs instead
	ConfirmGatewayTx(ctx context.Context, in *ConfirmGatewayTxRequest, opts ...grpc.CallOption) (*ConfirmGatewayTxResponse, error)
	ConfirmGatewayTxs(ctx context.Context, in *ConfirmGatewayTxsRequest, opts ...grpc.CallOption) (*ConfirmGatewayTxsResponse, error)
	Link(ctx context.Context, in *LinkRequest, opts ...grpc.CallOption) (*LinkResponse, error)
	ConfirmToken(ctx context.Context, in *ConfirmTokenRequest, opts ...grpc.CallOption) (*ConfirmTokenResponse, error)
	ConfirmDeposit(ctx context.Context, in *ConfirmDepositRequest, opts ...grpc.CallOption) (*ConfirmDepositResponse, error)
	ConfirmTransferKey(ctx context.Context, in *ConfirmTransferKeyRequest, opts ...grpc.CallOption) (*ConfirmTransferKeyResponse, error)
	CreateDeployToken(ctx context.Context, in *CreateDeployTokenRequest, opts ...grpc.CallOption) (*CreateDeployTokenResponse, error)
	CreateBurnTokens(ctx context.Context, in *CreateBurnTokensRequest, opts ...grpc.CallOption) (*CreateBurnTokensResponse, error)
	CreatePendingTransfers(ctx context.Context, in *CreatePendingTransfersRequest, opts ...grpc.CallOption) (*CreatePendingTransfersResponse, error)
	CreateTransferOperatorship(ctx context.Context, in *CreateTransferOperatorshipRequest, opts ...grpc.CallOption) (*CreateTransferOperatorshipResponse, error)
	SignCommands(ctx context.Context, in *SignCommandsRequest, opts ...grpc.CallOption) (*SignCommandsResponse, error)
	AddChain(ctx context.Context, in *AddChainRequest, opts ...grpc.CallOption) (*AddChainResponse, error)
	RetryFailedEvent(ctx context.Context, in *RetryFailedEventRequest, opts ...grpc.CallOption) (*RetryFailedEventResponse, error)
}

MsgServiceClient is the client API for MsgService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewMsgServiceClient

func NewMsgServiceClient(cc grpc1.ClientConn) MsgServiceClient

type MultisigKeeper added in v0.21.0

type MultisigKeeper interface {
	GetCurrentKeyID(ctx sdk.Context, chainName nexus.ChainName) (multisig.KeyID, bool)
	GetNextKeyID(ctx sdk.Context, chainName nexus.ChainName) (multisig.KeyID, bool)
	GetKey(ctx sdk.Context, keyID multisig.KeyID) (multisig.Key, bool)
	AssignKey(ctx sdk.Context, chainName nexus.ChainName, keyID multisig.KeyID) error
	RotateKey(ctx sdk.Context, chainName nexus.ChainName) error
	Sign(ctx sdk.Context, keyID multisig.KeyID, payloadHash multisig.Hash, module string, moduleMetadata ...codec.ProtoMarshaler) error
}

MultisigKeeper provides functionality to the multisig module

type NetworkInfo

type NetworkInfo struct {
	Name string                                 `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Id   github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,2,opt,name=id,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"id"`
}

NetworkInfo describes information about a network

func (*NetworkInfo) Descriptor

func (*NetworkInfo) Descriptor() ([]byte, []int)

func (*NetworkInfo) Marshal

func (m *NetworkInfo) Marshal() (dAtA []byte, err error)

func (*NetworkInfo) MarshalTo

func (m *NetworkInfo) MarshalTo(dAtA []byte) (int, error)

func (*NetworkInfo) MarshalToSizedBuffer

func (m *NetworkInfo) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*NetworkInfo) ProtoMessage

func (*NetworkInfo) ProtoMessage()

func (*NetworkInfo) Reset

func (m *NetworkInfo) Reset()

func (*NetworkInfo) Size

func (m *NetworkInfo) Size() (n int)

func (*NetworkInfo) String

func (m *NetworkInfo) String() string

func (*NetworkInfo) Unmarshal

func (m *NetworkInfo) Unmarshal(dAtA []byte) error

func (*NetworkInfo) XXX_DiscardUnknown

func (m *NetworkInfo) XXX_DiscardUnknown()

func (*NetworkInfo) XXX_Marshal

func (m *NetworkInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*NetworkInfo) XXX_Merge

func (m *NetworkInfo) XXX_Merge(src proto.Message)

func (*NetworkInfo) XXX_Size

func (m *NetworkInfo) XXX_Size() int

func (*NetworkInfo) XXX_Unmarshal

func (m *NetworkInfo) XXX_Unmarshal(b []byte) error

type Nexus

type Nexus interface {
	LinkAddresses(ctx sdk.Context, sender nexus.CrossChainAddress, recipient nexus.CrossChainAddress) error
	GetRecipient(ctx sdk.Context, sender nexus.CrossChainAddress) (nexus.CrossChainAddress, bool)
	EnqueueTransfer(ctx sdk.Context, senderChain nexus.Chain, recipient nexus.CrossChainAddress, asset sdk.Coin) (nexus.TransferID, error)
	EnqueueForTransfer(ctx sdk.Context, sender nexus.CrossChainAddress, amount sdk.Coin) (nexus.TransferID, error)
	GetTransfersForChainPaginated(ctx sdk.Context, chain nexus.Chain, state nexus.TransferState, pageRequest *query.PageRequest) ([]nexus.CrossChainTransfer, *query.PageResponse, error)
	ArchivePendingTransfer(ctx sdk.Context, transfer nexus.CrossChainTransfer)
	SetChain(ctx sdk.Context, chain nexus.Chain)
	GetChains(ctx sdk.Context) []nexus.Chain
	GetChain(ctx sdk.Context, chain nexus.ChainName) (nexus.Chain, bool)
	IsAssetRegistered(ctx sdk.Context, chain nexus.Chain, denom string) bool
	RegisterAsset(ctx sdk.Context, chain nexus.Chain, asset nexus.Asset, limit sdk.Uint, window time.Duration) error
	GetChainMaintainers(ctx sdk.Context, chain nexus.Chain) []sdk.ValAddress
	IsChainActivated(ctx sdk.Context, chain nexus.Chain) bool
	GetChainByNativeAsset(ctx sdk.Context, asset string) (chain nexus.Chain, ok bool)
	ComputeTransferFee(ctx sdk.Context, sourceChain nexus.Chain, destinationChain nexus.Chain, asset sdk.Coin) (sdk.Coin, error)
	AddTransferFee(ctx sdk.Context, coin sdk.Coin)
	GetChainMaintainerState(ctx sdk.Context, chain nexus.Chain, address sdk.ValAddress) (nexus.MaintainerState, bool)
	SetChainMaintainerState(ctx sdk.Context, maintainerState nexus.MaintainerState) error
	RateLimitTransfer(ctx sdk.Context, chain nexus.ChainName, asset sdk.Coin, direction nexus.TransferDirection) error
	SetNewMessage(ctx sdk.Context, m nexus.GeneralMessage) error
	GetProcessingMessages(ctx sdk.Context, chain nexus.ChainName, limit int64) []nexus.GeneralMessage
	SetMessageFailed(ctx sdk.Context, id string) error
	SetMessageExecuted(ctx sdk.Context, id string) error
	EnqueueRouteMessage(ctx sdk.Context, id string) error
}

Nexus provides functionality to manage cross-chain transfers

type NoEventsConfirmed added in v0.21.0

type NoEventsConfirmed struct {
	TxID   Hash                                                            `protobuf:"bytes,1,opt,name=tx_id,json=txId,proto3,customtype=Hash" json:"tx_id"`
	Chain  github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	PollID github_com_axelarnetwork_axelar_core_x_vote_exported.PollID     `` /* 141-byte string literal not displayed */
}

func (*NoEventsConfirmed) Descriptor added in v0.21.0

func (*NoEventsConfirmed) Descriptor() ([]byte, []int)

func (*NoEventsConfirmed) GetChain added in v0.21.0

func (*NoEventsConfirmed) Marshal added in v0.21.0

func (m *NoEventsConfirmed) Marshal() (dAtA []byte, err error)

func (*NoEventsConfirmed) MarshalTo added in v0.21.0

func (m *NoEventsConfirmed) MarshalTo(dAtA []byte) (int, error)

func (*NoEventsConfirmed) MarshalToSizedBuffer added in v0.21.0

func (m *NoEventsConfirmed) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*NoEventsConfirmed) ProtoMessage added in v0.21.0

func (*NoEventsConfirmed) ProtoMessage()

func (*NoEventsConfirmed) Reset added in v0.21.0

func (m *NoEventsConfirmed) Reset()

func (*NoEventsConfirmed) Size added in v0.21.0

func (m *NoEventsConfirmed) Size() (n int)

func (*NoEventsConfirmed) String added in v0.21.0

func (m *NoEventsConfirmed) String() string

func (*NoEventsConfirmed) Unmarshal added in v0.21.0

func (m *NoEventsConfirmed) Unmarshal(dAtA []byte) error

func (*NoEventsConfirmed) XXX_DiscardUnknown added in v0.21.0

func (m *NoEventsConfirmed) XXX_DiscardUnknown()

func (*NoEventsConfirmed) XXX_Marshal added in v0.21.0

func (m *NoEventsConfirmed) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*NoEventsConfirmed) XXX_Merge added in v0.21.0

func (m *NoEventsConfirmed) XXX_Merge(src proto.Message)

func (*NoEventsConfirmed) XXX_MessageName added in v0.33.1

func (*NoEventsConfirmed) XXX_MessageName() string

func (*NoEventsConfirmed) XXX_Size added in v0.21.0

func (m *NoEventsConfirmed) XXX_Size() int

func (*NoEventsConfirmed) XXX_Unmarshal added in v0.21.0

func (m *NoEventsConfirmed) XXX_Unmarshal(b []byte) error

type Operator added in v0.21.0

type Operator struct {
	Address   common.Address
	Signature []byte
	Weight    sdk.Uint
}

Operator binds the signer's address, signature and weight

type Params

type Params struct {
	Chain               github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	ConfirmationHeight  uint64                                                          `protobuf:"varint,2,opt,name=confirmation_height,json=confirmationHeight,proto3" json:"confirmation_height,omitempty"`
	Network             string                                                          `protobuf:"bytes,3,opt,name=network,proto3" json:"network,omitempty"`
	TokenCode           []byte                                                          `protobuf:"bytes,5,opt,name=token_code,json=tokenCode,proto3" json:"token_code,omitempty"`
	Burnable            []byte                                                          `protobuf:"bytes,6,opt,name=burnable,proto3" json:"burnable,omitempty"`
	RevoteLockingPeriod int64                                                           `protobuf:"varint,7,opt,name=revote_locking_period,json=revoteLockingPeriod,proto3" json:"revote_locking_period,omitempty"`
	Networks            []NetworkInfo                                                   `protobuf:"bytes,8,rep,name=networks,proto3" json:"networks"`
	VotingThreshold     utils.Threshold                                                 `protobuf:"bytes,9,opt,name=voting_threshold,json=votingThreshold,proto3" json:"voting_threshold"`
	MinVoterCount       int64                                                           `protobuf:"varint,10,opt,name=min_voter_count,json=minVoterCount,proto3" json:"min_voter_count,omitempty"`
	CommandsGasLimit    uint32                                                          `protobuf:"varint,11,opt,name=commands_gas_limit,json=commandsGasLimit,proto3" json:"commands_gas_limit,omitempty"`
	VotingGracePeriod   int64                                                           `protobuf:"varint,13,opt,name=voting_grace_period,json=votingGracePeriod,proto3" json:"voting_grace_period,omitempty"`
	EndBlockerLimit     int64                                                           `protobuf:"varint,14,opt,name=end_blocker_limit,json=endBlockerLimit,proto3" json:"end_blocker_limit,omitempty"`
	TransferLimit       uint64                                                          `protobuf:"varint,15,opt,name=transfer_limit,json=transferLimit,proto3" json:"transfer_limit,omitempty"`
}

Params is the parameter set for this module

func DefaultParams

func DefaultParams() []Params

DefaultParams returns the module's parameter set initialized with default values

func (*Params) Descriptor

func (*Params) Descriptor() ([]byte, []int)

func (*Params) Marshal

func (m *Params) Marshal() (dAtA []byte, err error)

func (*Params) MarshalTo

func (m *Params) MarshalTo(dAtA []byte) (int, error)

func (*Params) MarshalToSizedBuffer

func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Params) ParamSetPairs

func (m *Params) ParamSetPairs() params.ParamSetPairs

ParamSetPairs implements the ParamSet interface and returns all the key/value pairs pairs of evm module's parameters.

func (*Params) ProtoMessage

func (*Params) ProtoMessage()

func (*Params) Reset

func (m *Params) Reset()

func (*Params) Size

func (m *Params) Size() (n int)

func (*Params) String

func (m *Params) String() string

func (*Params) Unmarshal

func (m *Params) Unmarshal(dAtA []byte) error

func (Params) Validate

func (m Params) Validate() error

Validate checks the validity of the values of the parameter set

func (*Params) XXX_DiscardUnknown

func (m *Params) XXX_DiscardUnknown()

func (*Params) XXX_Marshal

func (m *Params) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Params) XXX_Merge

func (m *Params) XXX_Merge(src proto.Message)

func (*Params) XXX_Size

func (m *Params) XXX_Size() int

func (*Params) XXX_Unmarshal

func (m *Params) XXX_Unmarshal(b []byte) error

type ParamsKeeper

type ParamsKeeper interface {
	Subspace(s string) params.Subspace
	GetSubspace(s string) (params.Subspace, bool)
}

ParamsKeeper represents a global paramstore

type ParamsRequest added in v0.34.0

type ParamsRequest struct {
	Chain string `protobuf:"bytes,1,opt,name=chain,proto3" json:"chain,omitempty"`
}

ParamsRequest represents a message that queries the params

func (*ParamsRequest) Descriptor added in v0.34.0

func (*ParamsRequest) Descriptor() ([]byte, []int)

func (*ParamsRequest) Marshal added in v0.34.0

func (m *ParamsRequest) Marshal() (dAtA []byte, err error)

func (*ParamsRequest) MarshalTo added in v0.34.0

func (m *ParamsRequest) MarshalTo(dAtA []byte) (int, error)

func (*ParamsRequest) MarshalToSizedBuffer added in v0.34.0

func (m *ParamsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ParamsRequest) ProtoMessage added in v0.34.0

func (*ParamsRequest) ProtoMessage()

func (*ParamsRequest) Reset added in v0.34.0

func (m *ParamsRequest) Reset()

func (*ParamsRequest) Size added in v0.34.0

func (m *ParamsRequest) Size() (n int)

func (*ParamsRequest) String added in v0.34.0

func (m *ParamsRequest) String() string

func (*ParamsRequest) Unmarshal added in v0.34.0

func (m *ParamsRequest) Unmarshal(dAtA []byte) error

func (*ParamsRequest) XXX_DiscardUnknown added in v0.34.0

func (m *ParamsRequest) XXX_DiscardUnknown()

func (*ParamsRequest) XXX_Marshal added in v0.34.0

func (m *ParamsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ParamsRequest) XXX_Merge added in v0.34.0

func (m *ParamsRequest) XXX_Merge(src proto.Message)

func (*ParamsRequest) XXX_Size added in v0.34.0

func (m *ParamsRequest) XXX_Size() int

func (*ParamsRequest) XXX_Unmarshal added in v0.34.0

func (m *ParamsRequest) XXX_Unmarshal(b []byte) error

type ParamsResponse added in v0.34.0

type ParamsResponse struct {
	Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
}

func (*ParamsResponse) Descriptor added in v0.34.0

func (*ParamsResponse) Descriptor() ([]byte, []int)

func (*ParamsResponse) Marshal added in v0.34.0

func (m *ParamsResponse) Marshal() (dAtA []byte, err error)

func (*ParamsResponse) MarshalTo added in v0.34.0

func (m *ParamsResponse) MarshalTo(dAtA []byte) (int, error)

func (*ParamsResponse) MarshalToSizedBuffer added in v0.34.0

func (m *ParamsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ParamsResponse) ProtoMessage added in v0.34.0

func (*ParamsResponse) ProtoMessage()

func (*ParamsResponse) Reset added in v0.34.0

func (m *ParamsResponse) Reset()

func (*ParamsResponse) Size added in v0.34.0

func (m *ParamsResponse) Size() (n int)

func (*ParamsResponse) String added in v0.34.0

func (m *ParamsResponse) String() string

func (*ParamsResponse) Unmarshal added in v0.34.0

func (m *ParamsResponse) Unmarshal(dAtA []byte) error

func (*ParamsResponse) XXX_DiscardUnknown added in v0.34.0

func (m *ParamsResponse) XXX_DiscardUnknown()

func (*ParamsResponse) XXX_Marshal added in v0.34.0

func (m *ParamsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ParamsResponse) XXX_Merge added in v0.34.0

func (m *ParamsResponse) XXX_Merge(src proto.Message)

func (*ParamsResponse) XXX_Size added in v0.34.0

func (m *ParamsResponse) XXX_Size() int

func (*ParamsResponse) XXX_Unmarshal added in v0.34.0

func (m *ParamsResponse) XXX_Unmarshal(b []byte) error

type PendingChain added in v0.9.0

type PendingChain struct {
	Params Params         `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
	Chain  exported.Chain `protobuf:"bytes,2,opt,name=chain,proto3" json:"chain"`
}

func (*PendingChain) Descriptor added in v0.9.0

func (*PendingChain) Descriptor() ([]byte, []int)

func (*PendingChain) Marshal added in v0.9.0

func (m *PendingChain) Marshal() (dAtA []byte, err error)

func (*PendingChain) MarshalTo added in v0.9.0

func (m *PendingChain) MarshalTo(dAtA []byte) (int, error)

func (*PendingChain) MarshalToSizedBuffer added in v0.9.0

func (m *PendingChain) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PendingChain) ProtoMessage added in v0.9.0

func (*PendingChain) ProtoMessage()

func (*PendingChain) Reset added in v0.9.0

func (m *PendingChain) Reset()

func (*PendingChain) Size added in v0.9.0

func (m *PendingChain) Size() (n int)

func (*PendingChain) String added in v0.9.0

func (m *PendingChain) String() string

func (*PendingChain) Unmarshal added in v0.9.0

func (m *PendingChain) Unmarshal(dAtA []byte) error

func (*PendingChain) XXX_DiscardUnknown added in v0.9.0

func (m *PendingChain) XXX_DiscardUnknown()

func (*PendingChain) XXX_Marshal added in v0.9.0

func (m *PendingChain) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PendingChain) XXX_Merge added in v0.9.0

func (m *PendingChain) XXX_Merge(src proto.Message)

func (*PendingChain) XXX_Size added in v0.9.0

func (m *PendingChain) XXX_Size() int

func (*PendingChain) XXX_Unmarshal added in v0.9.0

func (m *PendingChain) XXX_Unmarshal(b []byte) error

type PendingCommandsRequest added in v0.16.0

type PendingCommandsRequest struct {
	Chain string `protobuf:"bytes,1,opt,name=chain,proto3" json:"chain,omitempty"`
}

func (*PendingCommandsRequest) Descriptor added in v0.16.0

func (*PendingCommandsRequest) Descriptor() ([]byte, []int)

func (*PendingCommandsRequest) Marshal added in v0.16.0

func (m *PendingCommandsRequest) Marshal() (dAtA []byte, err error)

func (*PendingCommandsRequest) MarshalTo added in v0.16.0

func (m *PendingCommandsRequest) MarshalTo(dAtA []byte) (int, error)

func (*PendingCommandsRequest) MarshalToSizedBuffer added in v0.16.0

func (m *PendingCommandsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PendingCommandsRequest) ProtoMessage added in v0.16.0

func (*PendingCommandsRequest) ProtoMessage()

func (*PendingCommandsRequest) Reset added in v0.16.0

func (m *PendingCommandsRequest) Reset()

func (*PendingCommandsRequest) Size added in v0.16.0

func (m *PendingCommandsRequest) Size() (n int)

func (*PendingCommandsRequest) String added in v0.16.0

func (m *PendingCommandsRequest) String() string

func (*PendingCommandsRequest) Unmarshal added in v0.16.0

func (m *PendingCommandsRequest) Unmarshal(dAtA []byte) error

func (*PendingCommandsRequest) XXX_DiscardUnknown added in v0.16.0

func (m *PendingCommandsRequest) XXX_DiscardUnknown()

func (*PendingCommandsRequest) XXX_Marshal added in v0.16.0

func (m *PendingCommandsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PendingCommandsRequest) XXX_Merge added in v0.16.0

func (m *PendingCommandsRequest) XXX_Merge(src proto.Message)

func (*PendingCommandsRequest) XXX_Size added in v0.16.0

func (m *PendingCommandsRequest) XXX_Size() int

func (*PendingCommandsRequest) XXX_Unmarshal added in v0.16.0

func (m *PendingCommandsRequest) XXX_Unmarshal(b []byte) error

type PendingCommandsResponse added in v0.16.0

type PendingCommandsResponse struct {
	Commands []QueryCommandResponse `protobuf:"bytes,1,rep,name=commands,proto3" json:"commands"`
}

func (*PendingCommandsResponse) Descriptor added in v0.16.0

func (*PendingCommandsResponse) Descriptor() ([]byte, []int)

func (*PendingCommandsResponse) Marshal added in v0.16.0

func (m *PendingCommandsResponse) Marshal() (dAtA []byte, err error)

func (*PendingCommandsResponse) MarshalTo added in v0.16.0

func (m *PendingCommandsResponse) MarshalTo(dAtA []byte) (int, error)

func (*PendingCommandsResponse) MarshalToSizedBuffer added in v0.16.0

func (m *PendingCommandsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PendingCommandsResponse) ProtoMessage added in v0.16.0

func (*PendingCommandsResponse) ProtoMessage()

func (*PendingCommandsResponse) Reset added in v0.16.0

func (m *PendingCommandsResponse) Reset()

func (*PendingCommandsResponse) Size added in v0.16.0

func (m *PendingCommandsResponse) Size() (n int)

func (*PendingCommandsResponse) String added in v0.16.0

func (m *PendingCommandsResponse) String() string

func (*PendingCommandsResponse) Unmarshal added in v0.16.0

func (m *PendingCommandsResponse) Unmarshal(dAtA []byte) error

func (*PendingCommandsResponse) XXX_DiscardUnknown added in v0.16.0

func (m *PendingCommandsResponse) XXX_DiscardUnknown()

func (*PendingCommandsResponse) XXX_Marshal added in v0.16.0

func (m *PendingCommandsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PendingCommandsResponse) XXX_Merge added in v0.16.0

func (m *PendingCommandsResponse) XXX_Merge(src proto.Message)

func (*PendingCommandsResponse) XXX_Size added in v0.16.0

func (m *PendingCommandsResponse) XXX_Size() int

func (*PendingCommandsResponse) XXX_Unmarshal added in v0.16.0

func (m *PendingCommandsResponse) XXX_Unmarshal(b []byte) error

type PollCompleted added in v0.25.0

type PollCompleted struct {
	TxID   Hash                                                            `protobuf:"bytes,1,opt,name=tx_id,json=txId,proto3,customtype=Hash" json:"tx_id"`
	Chain  github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	PollID github_com_axelarnetwork_axelar_core_x_vote_exported.PollID     `` /* 141-byte string literal not displayed */
}

func (*PollCompleted) Descriptor added in v0.25.0

func (*PollCompleted) Descriptor() ([]byte, []int)

func (*PollCompleted) GetChain added in v0.25.0

func (*PollCompleted) Marshal added in v0.25.0

func (m *PollCompleted) Marshal() (dAtA []byte, err error)

func (*PollCompleted) MarshalTo added in v0.25.0

func (m *PollCompleted) MarshalTo(dAtA []byte) (int, error)

func (*PollCompleted) MarshalToSizedBuffer added in v0.25.0

func (m *PollCompleted) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PollCompleted) ProtoMessage added in v0.25.0

func (*PollCompleted) ProtoMessage()

func (*PollCompleted) Reset added in v0.25.0

func (m *PollCompleted) Reset()

func (*PollCompleted) Size added in v0.25.0

func (m *PollCompleted) Size() (n int)

func (*PollCompleted) String added in v0.25.0

func (m *PollCompleted) String() string

func (*PollCompleted) Unmarshal added in v0.25.0

func (m *PollCompleted) Unmarshal(dAtA []byte) error

func (*PollCompleted) XXX_DiscardUnknown added in v0.25.0

func (m *PollCompleted) XXX_DiscardUnknown()

func (*PollCompleted) XXX_Marshal added in v0.25.0

func (m *PollCompleted) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PollCompleted) XXX_Merge added in v0.25.0

func (m *PollCompleted) XXX_Merge(src proto.Message)

func (*PollCompleted) XXX_MessageName added in v0.33.1

func (*PollCompleted) XXX_MessageName() string

func (*PollCompleted) XXX_Size added in v0.25.0

func (m *PollCompleted) XXX_Size() int

func (*PollCompleted) XXX_Unmarshal added in v0.25.0

func (m *PollCompleted) XXX_Unmarshal(b []byte) error

type PollExpired added in v0.21.0

type PollExpired struct {
	TxID   Hash                                                            `protobuf:"bytes,1,opt,name=tx_id,json=txId,proto3,customtype=Hash" json:"tx_id"`
	Chain  github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	PollID github_com_axelarnetwork_axelar_core_x_vote_exported.PollID     `` /* 141-byte string literal not displayed */
}

func (*PollExpired) Descriptor added in v0.21.0

func (*PollExpired) Descriptor() ([]byte, []int)

func (*PollExpired) GetChain added in v0.21.0

func (*PollExpired) Marshal added in v0.21.0

func (m *PollExpired) Marshal() (dAtA []byte, err error)

func (*PollExpired) MarshalTo added in v0.21.0

func (m *PollExpired) MarshalTo(dAtA []byte) (int, error)

func (*PollExpired) MarshalToSizedBuffer added in v0.21.0

func (m *PollExpired) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PollExpired) ProtoMessage added in v0.21.0

func (*PollExpired) ProtoMessage()

func (*PollExpired) Reset added in v0.21.0

func (m *PollExpired) Reset()

func (*PollExpired) Size added in v0.21.0

func (m *PollExpired) Size() (n int)

func (*PollExpired) String added in v0.21.0

func (m *PollExpired) String() string

func (*PollExpired) Unmarshal added in v0.21.0

func (m *PollExpired) Unmarshal(dAtA []byte) error

func (*PollExpired) XXX_DiscardUnknown added in v0.21.0

func (m *PollExpired) XXX_DiscardUnknown()

func (*PollExpired) XXX_Marshal added in v0.21.0

func (m *PollExpired) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PollExpired) XXX_Merge added in v0.21.0

func (m *PollExpired) XXX_Merge(src proto.Message)

func (*PollExpired) XXX_MessageName added in v0.33.1

func (*PollExpired) XXX_MessageName() string

func (*PollExpired) XXX_Size added in v0.21.0

func (m *PollExpired) XXX_Size() int

func (*PollExpired) XXX_Unmarshal added in v0.21.0

func (m *PollExpired) XXX_Unmarshal(b []byte) error

type PollFailed added in v0.21.0

type PollFailed struct {
	TxID   Hash                                                            `protobuf:"bytes,1,opt,name=tx_id,json=txId,proto3,customtype=Hash" json:"tx_id"`
	Chain  github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	PollID github_com_axelarnetwork_axelar_core_x_vote_exported.PollID     `` /* 141-byte string literal not displayed */
}

func (*PollFailed) Descriptor added in v0.21.0

func (*PollFailed) Descriptor() ([]byte, []int)

func (*PollFailed) GetChain added in v0.21.0

func (*PollFailed) Marshal added in v0.21.0

func (m *PollFailed) Marshal() (dAtA []byte, err error)

func (*PollFailed) MarshalTo added in v0.21.0

func (m *PollFailed) MarshalTo(dAtA []byte) (int, error)

func (*PollFailed) MarshalToSizedBuffer added in v0.21.0

func (m *PollFailed) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PollFailed) ProtoMessage added in v0.21.0

func (*PollFailed) ProtoMessage()

func (*PollFailed) Reset added in v0.21.0

func (m *PollFailed) Reset()

func (*PollFailed) Size added in v0.21.0

func (m *PollFailed) Size() (n int)

func (*PollFailed) String added in v0.21.0

func (m *PollFailed) String() string

func (*PollFailed) Unmarshal added in v0.21.0

func (m *PollFailed) Unmarshal(dAtA []byte) error

func (*PollFailed) XXX_DiscardUnknown added in v0.21.0

func (m *PollFailed) XXX_DiscardUnknown()

func (*PollFailed) XXX_Marshal added in v0.21.0

func (m *PollFailed) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PollFailed) XXX_Merge added in v0.21.0

func (m *PollFailed) XXX_Merge(src proto.Message)

func (*PollFailed) XXX_MessageName added in v0.33.1

func (*PollFailed) XXX_MessageName() string

func (*PollFailed) XXX_Size added in v0.21.0

func (m *PollFailed) XXX_Size() int

func (*PollFailed) XXX_Unmarshal added in v0.21.0

func (m *PollFailed) XXX_Unmarshal(b []byte) error

type PollMapping added in v0.34.0

type PollMapping struct {
	TxID   Hash                                                        `protobuf:"bytes,1,opt,name=tx_id,json=txId,proto3,customtype=Hash" json:"tx_id"`
	PollID github_com_axelarnetwork_axelar_core_x_vote_exported.PollID `` /* 141-byte string literal not displayed */
}

func (*PollMapping) Descriptor added in v0.34.0

func (*PollMapping) Descriptor() ([]byte, []int)

func (*PollMapping) Marshal added in v0.34.0

func (m *PollMapping) Marshal() (dAtA []byte, err error)

func (*PollMapping) MarshalTo added in v0.34.0

func (m *PollMapping) MarshalTo(dAtA []byte) (int, error)

func (*PollMapping) MarshalToSizedBuffer added in v0.34.0

func (m *PollMapping) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PollMapping) ProtoMessage added in v0.34.0

func (*PollMapping) ProtoMessage()

func (*PollMapping) Reset added in v0.34.0

func (m *PollMapping) Reset()

func (*PollMapping) Size added in v0.34.0

func (m *PollMapping) Size() (n int)

func (*PollMapping) String added in v0.34.0

func (m *PollMapping) String() string

func (*PollMapping) Unmarshal added in v0.34.0

func (m *PollMapping) Unmarshal(dAtA []byte) error

func (*PollMapping) XXX_DiscardUnknown added in v0.34.0

func (m *PollMapping) XXX_DiscardUnknown()

func (*PollMapping) XXX_Marshal added in v0.34.0

func (m *PollMapping) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PollMapping) XXX_Merge added in v0.34.0

func (m *PollMapping) XXX_Merge(src proto.Message)

func (*PollMapping) XXX_MessageName added in v0.34.0

func (*PollMapping) XXX_MessageName() string

func (*PollMapping) XXX_Size added in v0.34.0

func (m *PollMapping) XXX_Size() int

func (*PollMapping) XXX_Unmarshal added in v0.34.0

func (m *PollMapping) XXX_Unmarshal(b []byte) error

type PollMetadata added in v0.21.0

type PollMetadata struct {
	Chain github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	TxID  Hash                                                            `protobuf:"bytes,2,opt,name=tx_id,json=txId,proto3,customtype=Hash" json:"tx_id"`
}

func (*PollMetadata) Descriptor added in v0.21.0

func (*PollMetadata) Descriptor() ([]byte, []int)

func (*PollMetadata) Marshal added in v0.21.0

func (m *PollMetadata) Marshal() (dAtA []byte, err error)

func (*PollMetadata) MarshalTo added in v0.21.0

func (m *PollMetadata) MarshalTo(dAtA []byte) (int, error)

func (*PollMetadata) MarshalToSizedBuffer added in v0.21.0

func (m *PollMetadata) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PollMetadata) ProtoMessage added in v0.21.0

func (*PollMetadata) ProtoMessage()

func (*PollMetadata) Reset added in v0.21.0

func (m *PollMetadata) Reset()

func (*PollMetadata) Size added in v0.21.0

func (m *PollMetadata) Size() (n int)

func (*PollMetadata) String added in v0.21.0

func (m *PollMetadata) String() string

func (*PollMetadata) Unmarshal added in v0.21.0

func (m *PollMetadata) Unmarshal(dAtA []byte) error

func (*PollMetadata) XXX_DiscardUnknown added in v0.21.0

func (m *PollMetadata) XXX_DiscardUnknown()

func (*PollMetadata) XXX_Marshal added in v0.21.0

func (m *PollMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PollMetadata) XXX_Merge added in v0.21.0

func (m *PollMetadata) XXX_Merge(src proto.Message)

func (*PollMetadata) XXX_Size added in v0.21.0

func (m *PollMetadata) XXX_Size() int

func (*PollMetadata) XXX_Unmarshal added in v0.21.0

func (m *PollMetadata) XXX_Unmarshal(b []byte) error

type Proof added in v0.21.0

type Proof struct {
	Addresses  []string `protobuf:"bytes,1,rep,name=addresses,proto3" json:"addresses,omitempty"`
	Weights    []string `protobuf:"bytes,2,rep,name=weights,proto3" json:"weights,omitempty"`
	Threshold  string   `protobuf:"bytes,3,opt,name=threshold,proto3" json:"threshold,omitempty"`
	Signatures []string `protobuf:"bytes,4,rep,name=signatures,proto3" json:"signatures,omitempty"`
}

func (*Proof) Descriptor added in v0.21.0

func (*Proof) Descriptor() ([]byte, []int)

func (*Proof) Marshal added in v0.21.0

func (m *Proof) Marshal() (dAtA []byte, err error)

func (*Proof) MarshalTo added in v0.21.0

func (m *Proof) MarshalTo(dAtA []byte) (int, error)

func (*Proof) MarshalToSizedBuffer added in v0.21.0

func (m *Proof) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Proof) ProtoMessage added in v0.21.0

func (*Proof) ProtoMessage()

func (*Proof) Reset added in v0.21.0

func (m *Proof) Reset()

func (*Proof) Size added in v0.21.0

func (m *Proof) Size() (n int)

func (*Proof) String added in v0.21.0

func (m *Proof) String() string

func (*Proof) Unmarshal added in v0.21.0

func (m *Proof) Unmarshal(dAtA []byte) error

func (*Proof) XXX_DiscardUnknown added in v0.21.0

func (m *Proof) XXX_DiscardUnknown()

func (*Proof) XXX_Marshal added in v0.21.0

func (m *Proof) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Proof) XXX_Merge added in v0.21.0

func (m *Proof) XXX_Merge(src proto.Message)

func (*Proof) XXX_Size added in v0.21.0

func (m *Proof) XXX_Size() int

func (*Proof) XXX_Unmarshal added in v0.21.0

func (m *Proof) XXX_Unmarshal(b []byte) error

type QueryBurnerAddressResponse added in v0.9.0

type QueryBurnerAddressResponse struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
}

func (*QueryBurnerAddressResponse) Descriptor added in v0.9.0

func (*QueryBurnerAddressResponse) Descriptor() ([]byte, []int)

func (*QueryBurnerAddressResponse) Marshal added in v0.9.0

func (m *QueryBurnerAddressResponse) Marshal() (dAtA []byte, err error)

func (*QueryBurnerAddressResponse) MarshalTo added in v0.9.0

func (m *QueryBurnerAddressResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryBurnerAddressResponse) MarshalToSizedBuffer added in v0.9.0

func (m *QueryBurnerAddressResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryBurnerAddressResponse) ProtoMessage added in v0.9.0

func (*QueryBurnerAddressResponse) ProtoMessage()

func (*QueryBurnerAddressResponse) Reset added in v0.9.0

func (m *QueryBurnerAddressResponse) Reset()

func (*QueryBurnerAddressResponse) Size added in v0.9.0

func (m *QueryBurnerAddressResponse) Size() (n int)

func (*QueryBurnerAddressResponse) String added in v0.9.0

func (m *QueryBurnerAddressResponse) String() string

func (*QueryBurnerAddressResponse) Unmarshal added in v0.9.0

func (m *QueryBurnerAddressResponse) Unmarshal(dAtA []byte) error

func (*QueryBurnerAddressResponse) XXX_DiscardUnknown added in v0.9.0

func (m *QueryBurnerAddressResponse) XXX_DiscardUnknown()

func (*QueryBurnerAddressResponse) XXX_Marshal added in v0.9.0

func (m *QueryBurnerAddressResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryBurnerAddressResponse) XXX_Merge added in v0.9.0

func (m *QueryBurnerAddressResponse) XXX_Merge(src proto.Message)

func (*QueryBurnerAddressResponse) XXX_Size added in v0.9.0

func (m *QueryBurnerAddressResponse) XXX_Size() int

func (*QueryBurnerAddressResponse) XXX_Unmarshal added in v0.9.0

func (m *QueryBurnerAddressResponse) XXX_Unmarshal(b []byte) error

type QueryCommandResponse added in v0.10.0

type QueryCommandResponse struct {
	ID         string            `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Type       string            `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
	Params     map[string]string `` /* 143-byte string literal not displayed */
	KeyID      string            `protobuf:"bytes,4,opt,name=key_id,json=keyId,proto3" json:"key_id,omitempty"`
	MaxGasCost uint32            `protobuf:"varint,5,opt,name=max_gas_cost,json=maxGasCost,proto3" json:"max_gas_cost,omitempty"`
}

func (*QueryCommandResponse) Descriptor added in v0.10.0

func (*QueryCommandResponse) Descriptor() ([]byte, []int)

func (*QueryCommandResponse) Marshal added in v0.10.0

func (m *QueryCommandResponse) Marshal() (dAtA []byte, err error)

func (*QueryCommandResponse) MarshalTo added in v0.10.0

func (m *QueryCommandResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryCommandResponse) MarshalToSizedBuffer added in v0.10.0

func (m *QueryCommandResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryCommandResponse) ProtoMessage added in v0.10.0

func (*QueryCommandResponse) ProtoMessage()

func (*QueryCommandResponse) Reset added in v0.10.0

func (m *QueryCommandResponse) Reset()

func (*QueryCommandResponse) Size added in v0.10.0

func (m *QueryCommandResponse) Size() (n int)

func (*QueryCommandResponse) String added in v0.10.0

func (m *QueryCommandResponse) String() string

func (*QueryCommandResponse) Unmarshal added in v0.10.0

func (m *QueryCommandResponse) Unmarshal(dAtA []byte) error

func (*QueryCommandResponse) XXX_DiscardUnknown added in v0.10.0

func (m *QueryCommandResponse) XXX_DiscardUnknown()

func (*QueryCommandResponse) XXX_Marshal added in v0.10.0

func (m *QueryCommandResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryCommandResponse) XXX_Merge added in v0.10.0

func (m *QueryCommandResponse) XXX_Merge(src proto.Message)

func (*QueryCommandResponse) XXX_Size added in v0.10.0

func (m *QueryCommandResponse) XXX_Size() int

func (*QueryCommandResponse) XXX_Unmarshal added in v0.10.0

func (m *QueryCommandResponse) XXX_Unmarshal(b []byte) error

type QueryDepositStateParams deprecated

type QueryDepositStateParams struct {
	TxID          Hash    `protobuf:"bytes,1,opt,name=tx_id,json=txId,proto3,customtype=Hash" json:"tx_id"`
	BurnerAddress Address `protobuf:"bytes,2,opt,name=burner_address,json=burnerAddress,proto3,customtype=Address" json:"burner_address"`
}

Deprecated: Do not use.

func (*QueryDepositStateParams) Descriptor

func (*QueryDepositStateParams) Descriptor() ([]byte, []int)

func (*QueryDepositStateParams) Marshal

func (m *QueryDepositStateParams) Marshal() (dAtA []byte, err error)

func (*QueryDepositStateParams) MarshalTo

func (m *QueryDepositStateParams) MarshalTo(dAtA []byte) (int, error)

func (*QueryDepositStateParams) MarshalToSizedBuffer

func (m *QueryDepositStateParams) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryDepositStateParams) ProtoMessage

func (*QueryDepositStateParams) ProtoMessage()

func (*QueryDepositStateParams) Reset

func (m *QueryDepositStateParams) Reset()

func (*QueryDepositStateParams) Size

func (m *QueryDepositStateParams) Size() (n int)

func (*QueryDepositStateParams) String

func (m *QueryDepositStateParams) String() string

func (*QueryDepositStateParams) Unmarshal

func (m *QueryDepositStateParams) Unmarshal(dAtA []byte) error

func (*QueryDepositStateParams) XXX_DiscardUnknown

func (m *QueryDepositStateParams) XXX_DiscardUnknown()

func (*QueryDepositStateParams) XXX_Marshal

func (m *QueryDepositStateParams) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryDepositStateParams) XXX_Merge

func (m *QueryDepositStateParams) XXX_Merge(src proto.Message)

func (*QueryDepositStateParams) XXX_Size

func (m *QueryDepositStateParams) XXX_Size() int

func (*QueryDepositStateParams) XXX_Unmarshal

func (m *QueryDepositStateParams) XXX_Unmarshal(b []byte) error

type QueryServiceClient added in v0.13.3

type QueryServiceClient interface {
	// BatchedCommands queries the batched commands for a specified chain and
	// BatchedCommandsID if no BatchedCommandsID is specified, then it returns the
	// latest batched commands
	BatchedCommands(ctx context.Context, in *BatchedCommandsRequest, opts ...grpc.CallOption) (*BatchedCommandsResponse, error)
	// BurnerInfo queries the burner info for the specified address
	BurnerInfo(ctx context.Context, in *BurnerInfoRequest, opts ...grpc.CallOption) (*BurnerInfoResponse, error)
	// ConfirmationHeight queries the confirmation height for the specified chain
	ConfirmationHeight(ctx context.Context, in *ConfirmationHeightRequest, opts ...grpc.CallOption) (*ConfirmationHeightResponse, error)
	// DepositState queries the state of the specified deposit
	DepositState(ctx context.Context, in *DepositStateRequest, opts ...grpc.CallOption) (*DepositStateResponse, error)
	// PendingCommands queries the pending commands for the specified chain
	PendingCommands(ctx context.Context, in *PendingCommandsRequest, opts ...grpc.CallOption) (*PendingCommandsResponse, error)
	// Chains queries the available evm chains
	Chains(ctx context.Context, in *ChainsRequest, opts ...grpc.CallOption) (*ChainsResponse, error)
	// Command queries the command of a chain provided the command id
	Command(ctx context.Context, in *CommandRequest, opts ...grpc.CallOption) (*CommandResponse, error)
	// KeyAddress queries the address of key of a chain
	KeyAddress(ctx context.Context, in *KeyAddressRequest, opts ...grpc.CallOption) (*KeyAddressResponse, error)
	// GatewayAddress queries the address of axelar gateway at the specified
	// chain
	GatewayAddress(ctx context.Context, in *GatewayAddressRequest, opts ...grpc.CallOption) (*GatewayAddressResponse, error)
	// Bytecode queries the bytecode of a specified gateway at the specified
	// chain
	Bytecode(ctx context.Context, in *BytecodeRequest, opts ...grpc.CallOption) (*BytecodeResponse, error)
	// Event queries an event at the specified chain
	Event(ctx context.Context, in *EventRequest, opts ...grpc.CallOption) (*EventResponse, error)
	// ERC20Tokens queries the ERC20 tokens registered for a chain
	ERC20Tokens(ctx context.Context, in *ERC20TokensRequest, opts ...grpc.CallOption) (*ERC20TokensResponse, error)
	// TokenInfo queries the token info for a registered ERC20 Token
	TokenInfo(ctx context.Context, in *TokenInfoRequest, opts ...grpc.CallOption) (*TokenInfoResponse, error)
	Params(ctx context.Context, in *ParamsRequest, opts ...grpc.CallOption) (*ParamsResponse, error)
}

QueryServiceClient is the client API for QueryService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewQueryServiceClient added in v0.13.3

func NewQueryServiceClient(cc grpc1.ClientConn) QueryServiceClient

type QueryServiceServer added in v0.13.3

type QueryServiceServer interface {
	// BatchedCommands queries the batched commands for a specified chain and
	// BatchedCommandsID if no BatchedCommandsID is specified, then it returns the
	// latest batched commands
	BatchedCommands(context.Context, *BatchedCommandsRequest) (*BatchedCommandsResponse, error)
	// BurnerInfo queries the burner info for the specified address
	BurnerInfo(context.Context, *BurnerInfoRequest) (*BurnerInfoResponse, error)
	// ConfirmationHeight queries the confirmation height for the specified chain
	ConfirmationHeight(context.Context, *ConfirmationHeightRequest) (*ConfirmationHeightResponse, error)
	// DepositState queries the state of the specified deposit
	DepositState(context.Context, *DepositStateRequest) (*DepositStateResponse, error)
	// PendingCommands queries the pending commands for the specified chain
	PendingCommands(context.Context, *PendingCommandsRequest) (*PendingCommandsResponse, error)
	// Chains queries the available evm chains
	Chains(context.Context, *ChainsRequest) (*ChainsResponse, error)
	// Command queries the command of a chain provided the command id
	Command(context.Context, *CommandRequest) (*CommandResponse, error)
	// KeyAddress queries the address of key of a chain
	KeyAddress(context.Context, *KeyAddressRequest) (*KeyAddressResponse, error)
	// GatewayAddress queries the address of axelar gateway at the specified
	// chain
	GatewayAddress(context.Context, *GatewayAddressRequest) (*GatewayAddressResponse, error)
	// Bytecode queries the bytecode of a specified gateway at the specified
	// chain
	Bytecode(context.Context, *BytecodeRequest) (*BytecodeResponse, error)
	// Event queries an event at the specified chain
	Event(context.Context, *EventRequest) (*EventResponse, error)
	// ERC20Tokens queries the ERC20 tokens registered for a chain
	ERC20Tokens(context.Context, *ERC20TokensRequest) (*ERC20TokensResponse, error)
	// TokenInfo queries the token info for a registered ERC20 Token
	TokenInfo(context.Context, *TokenInfoRequest) (*TokenInfoResponse, error)
	Params(context.Context, *ParamsRequest) (*ParamsResponse, error)
}

QueryServiceServer is the server API for QueryService service.

type QueryTokenAddressResponse deprecated

type QueryTokenAddressResponse struct {
	Address   string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Confirmed bool   `protobuf:"varint,2,opt,name=confirmed,proto3" json:"confirmed,omitempty"`
}

Deprecated: Do not use.

func (*QueryTokenAddressResponse) Descriptor

func (*QueryTokenAddressResponse) Descriptor() ([]byte, []int)

func (*QueryTokenAddressResponse) Marshal

func (m *QueryTokenAddressResponse) Marshal() (dAtA []byte, err error)

func (*QueryTokenAddressResponse) MarshalTo

func (m *QueryTokenAddressResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryTokenAddressResponse) MarshalToSizedBuffer

func (m *QueryTokenAddressResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryTokenAddressResponse) ProtoMessage

func (*QueryTokenAddressResponse) ProtoMessage()

func (*QueryTokenAddressResponse) Reset

func (m *QueryTokenAddressResponse) Reset()

func (*QueryTokenAddressResponse) Size

func (m *QueryTokenAddressResponse) Size() (n int)

func (*QueryTokenAddressResponse) String

func (m *QueryTokenAddressResponse) String() string

func (*QueryTokenAddressResponse) Unmarshal

func (m *QueryTokenAddressResponse) Unmarshal(dAtA []byte) error

func (*QueryTokenAddressResponse) XXX_DiscardUnknown

func (m *QueryTokenAddressResponse) XXX_DiscardUnknown()

func (*QueryTokenAddressResponse) XXX_Marshal

func (m *QueryTokenAddressResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryTokenAddressResponse) XXX_Merge

func (m *QueryTokenAddressResponse) XXX_Merge(src proto.Message)

func (*QueryTokenAddressResponse) XXX_Size

func (m *QueryTokenAddressResponse) XXX_Size() int

func (*QueryTokenAddressResponse) XXX_Unmarshal

func (m *QueryTokenAddressResponse) XXX_Unmarshal(b []byte) error

type RetryFailedEventRequest added in v0.18.0

type RetryFailedEventRequest struct {
	Sender  github_com_cosmos_cosmos_sdk_types.AccAddress                   `protobuf:"bytes,1,opt,name=sender,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"sender,omitempty"`
	Chain   github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	EventID EventID                                                         `protobuf:"bytes,3,opt,name=event_id,json=eventId,proto3,casttype=EventID" json:"event_id,omitempty"`
}

func NewRetryFailedEventRequest added in v0.18.0

func NewRetryFailedEventRequest(sender sdk.AccAddress, chain string, eventID string) *RetryFailedEventRequest

NewRetryFailedEventRequest - RetryFailedEventRequest constructor

func (*RetryFailedEventRequest) Descriptor added in v0.18.0

func (*RetryFailedEventRequest) Descriptor() ([]byte, []int)

func (RetryFailedEventRequest) GetSignBytes added in v0.18.0

func (m RetryFailedEventRequest) GetSignBytes() []byte

GetSignBytes returns the message bytes that need to be signed

func (RetryFailedEventRequest) GetSigners added in v0.18.0

func (m RetryFailedEventRequest) GetSigners() []sdk.AccAddress

GetSigners returns the set of signers for this message

func (*RetryFailedEventRequest) Marshal added in v0.18.0

func (m *RetryFailedEventRequest) Marshal() (dAtA []byte, err error)

func (*RetryFailedEventRequest) MarshalTo added in v0.18.0

func (m *RetryFailedEventRequest) MarshalTo(dAtA []byte) (int, error)

func (*RetryFailedEventRequest) MarshalToSizedBuffer added in v0.18.0

func (m *RetryFailedEventRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RetryFailedEventRequest) ProtoMessage added in v0.18.0

func (*RetryFailedEventRequest) ProtoMessage()

func (*RetryFailedEventRequest) Reset added in v0.18.0

func (m *RetryFailedEventRequest) Reset()

func (RetryFailedEventRequest) Route added in v0.18.0

func (m RetryFailedEventRequest) Route() string

Route returns the route for this message

func (*RetryFailedEventRequest) Size added in v0.18.0

func (m *RetryFailedEventRequest) Size() (n int)

func (*RetryFailedEventRequest) String added in v0.18.0

func (m *RetryFailedEventRequest) String() string

func (RetryFailedEventRequest) Type added in v0.18.0

Type returns the type of the message

func (*RetryFailedEventRequest) Unmarshal added in v0.18.0

func (m *RetryFailedEventRequest) Unmarshal(dAtA []byte) error

func (RetryFailedEventRequest) ValidateBasic added in v0.18.0

func (m RetryFailedEventRequest) ValidateBasic() error

ValidateBasic executes a stateless message validation

func (*RetryFailedEventRequest) XXX_DiscardUnknown added in v0.18.0

func (m *RetryFailedEventRequest) XXX_DiscardUnknown()

func (*RetryFailedEventRequest) XXX_Marshal added in v0.18.0

func (m *RetryFailedEventRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RetryFailedEventRequest) XXX_Merge added in v0.18.0

func (m *RetryFailedEventRequest) XXX_Merge(src proto.Message)

func (*RetryFailedEventRequest) XXX_Size added in v0.18.0

func (m *RetryFailedEventRequest) XXX_Size() int

func (*RetryFailedEventRequest) XXX_Unmarshal added in v0.18.0

func (m *RetryFailedEventRequest) XXX_Unmarshal(b []byte) error

type RetryFailedEventResponse added in v0.18.0

type RetryFailedEventResponse struct {
}

func (*RetryFailedEventResponse) Descriptor added in v0.18.0

func (*RetryFailedEventResponse) Descriptor() ([]byte, []int)

func (*RetryFailedEventResponse) Marshal added in v0.18.0

func (m *RetryFailedEventResponse) Marshal() (dAtA []byte, err error)

func (*RetryFailedEventResponse) MarshalTo added in v0.18.0

func (m *RetryFailedEventResponse) MarshalTo(dAtA []byte) (int, error)

func (*RetryFailedEventResponse) MarshalToSizedBuffer added in v0.18.0

func (m *RetryFailedEventResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RetryFailedEventResponse) ProtoMessage added in v0.18.0

func (*RetryFailedEventResponse) ProtoMessage()

func (*RetryFailedEventResponse) Reset added in v0.18.0

func (m *RetryFailedEventResponse) Reset()

func (*RetryFailedEventResponse) Size added in v0.18.0

func (m *RetryFailedEventResponse) Size() (n int)

func (*RetryFailedEventResponse) String added in v0.18.0

func (m *RetryFailedEventResponse) String() string

func (*RetryFailedEventResponse) Unmarshal added in v0.18.0

func (m *RetryFailedEventResponse) Unmarshal(dAtA []byte) error

func (*RetryFailedEventResponse) XXX_DiscardUnknown added in v0.18.0

func (m *RetryFailedEventResponse) XXX_DiscardUnknown()

func (*RetryFailedEventResponse) XXX_Marshal added in v0.18.0

func (m *RetryFailedEventResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RetryFailedEventResponse) XXX_Merge added in v0.18.0

func (m *RetryFailedEventResponse) XXX_Merge(src proto.Message)

func (*RetryFailedEventResponse) XXX_Size added in v0.18.0

func (m *RetryFailedEventResponse) XXX_Size() int

func (*RetryFailedEventResponse) XXX_Unmarshal added in v0.18.0

func (m *RetryFailedEventResponse) XXX_Unmarshal(b []byte) error

type Rewarder added in v0.18.0

type Rewarder interface {
	GetPool(ctx sdk.Context, name string) reward.RewardPool
}

Rewarder provides reward functionality

type SetGatewayRequest added in v0.17.0

type SetGatewayRequest struct {
	Sender  github_com_cosmos_cosmos_sdk_types.AccAddress                   `protobuf:"bytes,1,opt,name=sender,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"sender,omitempty"`
	Chain   github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	Address Address                                                         `protobuf:"bytes,3,opt,name=address,proto3,customtype=Address" json:"address"`
}

func NewSetGatewayRequest added in v0.17.0

func NewSetGatewayRequest(sender sdk.AccAddress, chain string, address Address) *SetGatewayRequest

NewSetGatewayRequest creates a message of type SetGatewayRequest

func (*SetGatewayRequest) Descriptor added in v0.17.0

func (*SetGatewayRequest) Descriptor() ([]byte, []int)

func (SetGatewayRequest) GetSignBytes added in v0.17.0

func (m SetGatewayRequest) GetSignBytes() []byte

GetSignBytes implements sdk.Msg

func (SetGatewayRequest) GetSigners added in v0.17.0

func (m SetGatewayRequest) GetSigners() []sdk.AccAddress

GetSigners implements sdk.Msg

func (*SetGatewayRequest) Marshal added in v0.17.0

func (m *SetGatewayRequest) Marshal() (dAtA []byte, err error)

func (*SetGatewayRequest) MarshalTo added in v0.17.0

func (m *SetGatewayRequest) MarshalTo(dAtA []byte) (int, error)

func (*SetGatewayRequest) MarshalToSizedBuffer added in v0.17.0

func (m *SetGatewayRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*SetGatewayRequest) ProtoMessage added in v0.17.0

func (*SetGatewayRequest) ProtoMessage()

func (*SetGatewayRequest) Reset added in v0.17.0

func (m *SetGatewayRequest) Reset()

func (SetGatewayRequest) Route added in v0.17.0

func (m SetGatewayRequest) Route() string

Route implements sdk.Msg

func (*SetGatewayRequest) Size added in v0.17.0

func (m *SetGatewayRequest) Size() (n int)

func (*SetGatewayRequest) String added in v0.17.0

func (m *SetGatewayRequest) String() string

func (SetGatewayRequest) Type added in v0.17.0

func (m SetGatewayRequest) Type() string

Type implements sdk.Msg

func (*SetGatewayRequest) Unmarshal added in v0.17.0

func (m *SetGatewayRequest) Unmarshal(dAtA []byte) error

func (SetGatewayRequest) ValidateBasic added in v0.17.0

func (m SetGatewayRequest) ValidateBasic() error

ValidateBasic implements sdk.Msg

func (*SetGatewayRequest) XXX_DiscardUnknown added in v0.17.0

func (m *SetGatewayRequest) XXX_DiscardUnknown()

func (*SetGatewayRequest) XXX_Marshal added in v0.17.0

func (m *SetGatewayRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SetGatewayRequest) XXX_Merge added in v0.17.0

func (m *SetGatewayRequest) XXX_Merge(src proto.Message)

func (*SetGatewayRequest) XXX_Size added in v0.17.0

func (m *SetGatewayRequest) XXX_Size() int

func (*SetGatewayRequest) XXX_Unmarshal added in v0.17.0

func (m *SetGatewayRequest) XXX_Unmarshal(b []byte) error

type SetGatewayResponse added in v0.17.0

type SetGatewayResponse struct {
}

func (*SetGatewayResponse) Descriptor added in v0.17.0

func (*SetGatewayResponse) Descriptor() ([]byte, []int)

func (*SetGatewayResponse) Marshal added in v0.17.0

func (m *SetGatewayResponse) Marshal() (dAtA []byte, err error)

func (*SetGatewayResponse) MarshalTo added in v0.17.0

func (m *SetGatewayResponse) MarshalTo(dAtA []byte) (int, error)

func (*SetGatewayResponse) MarshalToSizedBuffer added in v0.17.0

func (m *SetGatewayResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*SetGatewayResponse) ProtoMessage added in v0.17.0

func (*SetGatewayResponse) ProtoMessage()

func (*SetGatewayResponse) Reset added in v0.17.0

func (m *SetGatewayResponse) Reset()

func (*SetGatewayResponse) Size added in v0.17.0

func (m *SetGatewayResponse) Size() (n int)

func (*SetGatewayResponse) String added in v0.17.0

func (m *SetGatewayResponse) String() string

func (*SetGatewayResponse) Unmarshal added in v0.17.0

func (m *SetGatewayResponse) Unmarshal(dAtA []byte) error

func (*SetGatewayResponse) XXX_DiscardUnknown added in v0.17.0

func (m *SetGatewayResponse) XXX_DiscardUnknown()

func (*SetGatewayResponse) XXX_Marshal added in v0.17.0

func (m *SetGatewayResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SetGatewayResponse) XXX_Merge added in v0.17.0

func (m *SetGatewayResponse) XXX_Merge(src proto.Message)

func (*SetGatewayResponse) XXX_Size added in v0.17.0

func (m *SetGatewayResponse) XXX_Size() int

func (*SetGatewayResponse) XXX_Unmarshal added in v0.17.0

func (m *SetGatewayResponse) XXX_Unmarshal(b []byte) error

type SigMetadata

type SigMetadata struct {
	Type           SigType                                                         `protobuf:"varint,1,opt,name=type,proto3,enum=axelar.evm.v1beta1.SigType" json:"type,omitempty"`
	Chain          github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	CommandBatchID []byte                                                          `protobuf:"bytes,3,opt,name=command_batch_id,json=commandBatchId,proto3" json:"command_batch_id,omitempty"`
}

SigMetadata stores necessary information for external apps to map signature results to evm relay transaction types

func NewSigMetadata added in v0.21.0

func NewSigMetadata(sigType SigType, chain nexus.ChainName, commandBatchID []byte) *SigMetadata

NewSigMetadata is the constructor for sig metadata

func (*SigMetadata) Descriptor

func (*SigMetadata) Descriptor() ([]byte, []int)

func (*SigMetadata) Marshal

func (m *SigMetadata) Marshal() (dAtA []byte, err error)

func (*SigMetadata) MarshalTo

func (m *SigMetadata) MarshalTo(dAtA []byte) (int, error)

func (*SigMetadata) MarshalToSizedBuffer

func (m *SigMetadata) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*SigMetadata) ProtoMessage

func (*SigMetadata) ProtoMessage()

func (*SigMetadata) Reset

func (m *SigMetadata) Reset()

func (*SigMetadata) Size

func (m *SigMetadata) Size() (n int)

func (*SigMetadata) String

func (m *SigMetadata) String() string

func (*SigMetadata) Unmarshal

func (m *SigMetadata) Unmarshal(dAtA []byte) error

func (*SigMetadata) XXX_DiscardUnknown

func (m *SigMetadata) XXX_DiscardUnknown()

func (*SigMetadata) XXX_Marshal

func (m *SigMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SigMetadata) XXX_Merge

func (m *SigMetadata) XXX_Merge(src proto.Message)

func (*SigMetadata) XXX_Size

func (m *SigMetadata) XXX_Size() int

func (*SigMetadata) XXX_Unmarshal

func (m *SigMetadata) XXX_Unmarshal(b []byte) error

type SigType

type SigType int32
const (
	None       SigType = 0
	SigTx      SigType = 1
	SigCommand SigType = 2
)

func (SigType) EnumDescriptor

func (SigType) EnumDescriptor() ([]byte, []int)

func (SigType) String

func (x SigType) String() string

type SignCommandsRequest

type SignCommandsRequest struct {
	Sender github_com_cosmos_cosmos_sdk_types.AccAddress                   `protobuf:"bytes,1,opt,name=sender,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"sender,omitempty"`
	Chain  github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
}

func NewSignCommandsRequest

func NewSignCommandsRequest(sender sdk.AccAddress, chain string) *SignCommandsRequest

NewSignCommandsRequest creates a message of type SignCommandsRequest

func (*SignCommandsRequest) Descriptor

func (*SignCommandsRequest) Descriptor() ([]byte, []int)

func (SignCommandsRequest) GetSignBytes

func (m SignCommandsRequest) GetSignBytes() []byte

GetSignBytes implements sdk.Msg

func (SignCommandsRequest) GetSigners

func (m SignCommandsRequest) GetSigners() []sdk.AccAddress

GetSigners implements sdk.Msg

func (*SignCommandsRequest) Marshal

func (m *SignCommandsRequest) Marshal() (dAtA []byte, err error)

func (*SignCommandsRequest) MarshalTo

func (m *SignCommandsRequest) MarshalTo(dAtA []byte) (int, error)

func (*SignCommandsRequest) MarshalToSizedBuffer

func (m *SignCommandsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*SignCommandsRequest) ProtoMessage

func (*SignCommandsRequest) ProtoMessage()

func (*SignCommandsRequest) Reset

func (m *SignCommandsRequest) Reset()

func (SignCommandsRequest) Route

func (m SignCommandsRequest) Route() string

Route implements sdk.Msg

func (*SignCommandsRequest) Size

func (m *SignCommandsRequest) Size() (n int)

func (*SignCommandsRequest) String

func (m *SignCommandsRequest) String() string

func (SignCommandsRequest) Type

func (m SignCommandsRequest) Type() string

Type implements sdk.Msg

func (*SignCommandsRequest) Unmarshal

func (m *SignCommandsRequest) Unmarshal(dAtA []byte) error

func (SignCommandsRequest) ValidateBasic

func (m SignCommandsRequest) ValidateBasic() error

ValidateBasic implements sdk.Msg

func (*SignCommandsRequest) XXX_DiscardUnknown

func (m *SignCommandsRequest) XXX_DiscardUnknown()

func (*SignCommandsRequest) XXX_Marshal

func (m *SignCommandsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SignCommandsRequest) XXX_Merge

func (m *SignCommandsRequest) XXX_Merge(src proto.Message)

func (*SignCommandsRequest) XXX_Size

func (m *SignCommandsRequest) XXX_Size() int

func (*SignCommandsRequest) XXX_Unmarshal

func (m *SignCommandsRequest) XXX_Unmarshal(b []byte) error

type SignCommandsResponse

type SignCommandsResponse struct {
	BatchedCommandsID []byte `protobuf:"bytes,1,opt,name=batched_commands_id,json=batchedCommandsId,proto3" json:"batched_commands_id,omitempty"`
	CommandCount      uint32 `protobuf:"varint,2,opt,name=command_count,json=commandCount,proto3" json:"command_count,omitempty"`
}

func (*SignCommandsResponse) Descriptor

func (*SignCommandsResponse) Descriptor() ([]byte, []int)

func (*SignCommandsResponse) Marshal

func (m *SignCommandsResponse) Marshal() (dAtA []byte, err error)

func (*SignCommandsResponse) MarshalTo

func (m *SignCommandsResponse) MarshalTo(dAtA []byte) (int, error)

func (*SignCommandsResponse) MarshalToSizedBuffer

func (m *SignCommandsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*SignCommandsResponse) ProtoMessage

func (*SignCommandsResponse) ProtoMessage()

func (*SignCommandsResponse) Reset

func (m *SignCommandsResponse) Reset()

func (*SignCommandsResponse) Size

func (m *SignCommandsResponse) Size() (n int)

func (*SignCommandsResponse) String

func (m *SignCommandsResponse) String() string

func (*SignCommandsResponse) Unmarshal

func (m *SignCommandsResponse) Unmarshal(dAtA []byte) error

func (*SignCommandsResponse) XXX_DiscardUnknown

func (m *SignCommandsResponse) XXX_DiscardUnknown()

func (*SignCommandsResponse) XXX_Marshal

func (m *SignCommandsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SignCommandsResponse) XXX_Merge

func (m *SignCommandsResponse) XXX_Merge(src proto.Message)

func (*SignCommandsResponse) XXX_Size

func (m *SignCommandsResponse) XXX_Size() int

func (*SignCommandsResponse) XXX_Unmarshal

func (m *SignCommandsResponse) XXX_Unmarshal(b []byte) error

type Signature

type Signature [crypto.SignatureLength]byte

Signature encodes the parameters R,S,V in the byte format expected by an EVM chain

func NewSignature added in v0.21.0

func NewSignature(bz []byte) (sig Signature, err error)

NewSignature is the constructor of Signature

func ToSignature

func ToSignature(sig ec.Signature, hash common.Hash, pk ecdsa.PublicKey) (Signature, error)

ToSignature transforms an Axelar generated signature into a recoverable signature

func (Signature) Hex added in v0.21.0

func (s Signature) Hex() string

Hex returns the hex-encoding of the given Signature

func (Signature) ToHomesteadSig added in v0.21.0

func (s Signature) ToHomesteadSig() []byte

ToHomesteadSig converts signature to openzeppelin compatible

type SlashingKeeper added in v0.21.0

type SlashingKeeper interface {
	IsTombstoned(ctx sdk.Context, consAddr sdk.ConsAddress) bool
}

SlashingKeeper provides functionality to manage slashing info for a validator

type Snapshotter

type Snapshotter interface {
	CreateSnapshot(ctx sdk.Context, candidates []sdk.ValAddress, filterFunc func(snapshot.ValidatorI) bool, weightFunc func(consensusPower sdk.Uint) sdk.Uint, threshold utils.Threshold) (snapshot.Snapshot, error)
	GetProxy(ctx sdk.Context, principal sdk.ValAddress) (addr sdk.AccAddress, active bool)
}

Snapshotter provides access to the snapshot functionality

type StakingKeeper added in v0.21.0

type StakingKeeper interface {
	PowerReduction(ctx sdk.Context) sdk.Int
}

StakingKeeper adopts the methods from "github.com/cosmos/cosmos-sdk/x/staking/exported" that are actually used by this module

type Status

type Status int32
const (
	// these enum values are used for bitwise operations, therefore they need to
	// be powers of 2
	NonExistent Status = 0
	Initialized Status = 1
	Pending     Status = 2
	Confirmed   Status = 4
)

func (Status) EnumDescriptor

func (Status) EnumDescriptor() ([]byte, []int)

func (Status) String

func (x Status) String() string

type TokenDetails

type TokenDetails struct {
	TokenName string                                 `protobuf:"bytes,1,opt,name=token_name,json=tokenName,proto3" json:"token_name,omitempty"`
	Symbol    string                                 `protobuf:"bytes,2,opt,name=symbol,proto3" json:"symbol,omitempty"`
	Decimals  uint8                                  `protobuf:"varint,3,opt,name=decimals,proto3,casttype=uint8" json:"decimals,omitempty"`
	Capacity  github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,4,opt,name=capacity,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"capacity"`
}

func NewTokenDetails

func NewTokenDetails(tokenName, symbol string, decimals uint8, capacity sdk.Int) TokenDetails

NewTokenDetails returns a new TokenDetails instance

func (*TokenDetails) Descriptor

func (*TokenDetails) Descriptor() ([]byte, []int)

func (*TokenDetails) Marshal

func (m *TokenDetails) Marshal() (dAtA []byte, err error)

func (*TokenDetails) MarshalTo

func (m *TokenDetails) MarshalTo(dAtA []byte) (int, error)

func (*TokenDetails) MarshalToSizedBuffer

func (m *TokenDetails) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TokenDetails) ProtoMessage

func (*TokenDetails) ProtoMessage()

func (*TokenDetails) Reset

func (m *TokenDetails) Reset()

func (*TokenDetails) Size

func (m *TokenDetails) Size() (n int)

func (*TokenDetails) String

func (m *TokenDetails) String() string

func (*TokenDetails) Unmarshal

func (m *TokenDetails) Unmarshal(dAtA []byte) error

func (TokenDetails) Validate

func (m TokenDetails) Validate() error

Validate ensures that all fields are filled with sensible values

func (*TokenDetails) XXX_DiscardUnknown

func (m *TokenDetails) XXX_DiscardUnknown()

func (*TokenDetails) XXX_Marshal

func (m *TokenDetails) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TokenDetails) XXX_Merge

func (m *TokenDetails) XXX_Merge(src proto.Message)

func (*TokenDetails) XXX_Size

func (m *TokenDetails) XXX_Size() int

func (*TokenDetails) XXX_Unmarshal

func (m *TokenDetails) XXX_Unmarshal(b []byte) error

type TokenInfoRequest added in v0.19.2

type TokenInfoRequest struct {
	Chain string `protobuf:"bytes,1,opt,name=chain,proto3" json:"chain,omitempty"`
	// Types that are valid to be assigned to FindBy:
	//	*TokenInfoRequest_Asset
	//	*TokenInfoRequest_Symbol
	//	*TokenInfoRequest_Address
	FindBy isTokenInfoRequest_FindBy `protobuf_oneof:"find_by"`
}

func (*TokenInfoRequest) Descriptor added in v0.19.2

func (*TokenInfoRequest) Descriptor() ([]byte, []int)

func (*TokenInfoRequest) GetAddress added in v0.26.5

func (m *TokenInfoRequest) GetAddress() string

func (*TokenInfoRequest) GetAsset added in v0.19.2

func (m *TokenInfoRequest) GetAsset() string

func (*TokenInfoRequest) GetFindBy added in v0.19.2

func (m *TokenInfoRequest) GetFindBy() isTokenInfoRequest_FindBy

func (*TokenInfoRequest) GetSymbol added in v0.19.2

func (m *TokenInfoRequest) GetSymbol() string

func (*TokenInfoRequest) Marshal added in v0.19.2

func (m *TokenInfoRequest) Marshal() (dAtA []byte, err error)

func (*TokenInfoRequest) MarshalTo added in v0.19.2

func (m *TokenInfoRequest) MarshalTo(dAtA []byte) (int, error)

func (*TokenInfoRequest) MarshalToSizedBuffer added in v0.19.2

func (m *TokenInfoRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TokenInfoRequest) ProtoMessage added in v0.19.2

func (*TokenInfoRequest) ProtoMessage()

func (*TokenInfoRequest) Reset added in v0.19.2

func (m *TokenInfoRequest) Reset()

func (*TokenInfoRequest) Size added in v0.19.2

func (m *TokenInfoRequest) Size() (n int)

func (*TokenInfoRequest) String added in v0.19.2

func (m *TokenInfoRequest) String() string

func (*TokenInfoRequest) Unmarshal added in v0.19.2

func (m *TokenInfoRequest) Unmarshal(dAtA []byte) error

func (*TokenInfoRequest) XXX_DiscardUnknown added in v0.19.2

func (m *TokenInfoRequest) XXX_DiscardUnknown()

func (*TokenInfoRequest) XXX_Marshal added in v0.19.2

func (m *TokenInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TokenInfoRequest) XXX_Merge added in v0.19.2

func (m *TokenInfoRequest) XXX_Merge(src proto.Message)

func (*TokenInfoRequest) XXX_OneofWrappers added in v0.19.2

func (*TokenInfoRequest) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*TokenInfoRequest) XXX_Size added in v0.19.2

func (m *TokenInfoRequest) XXX_Size() int

func (*TokenInfoRequest) XXX_Unmarshal added in v0.19.2

func (m *TokenInfoRequest) XXX_Unmarshal(b []byte) error

type TokenInfoRequest_Address added in v0.26.5

type TokenInfoRequest_Address struct {
	Address string `protobuf:"bytes,4,opt,name=address,proto3,oneof" json:"address,omitempty"`
}

func (*TokenInfoRequest_Address) MarshalTo added in v0.26.5

func (m *TokenInfoRequest_Address) MarshalTo(dAtA []byte) (int, error)

func (*TokenInfoRequest_Address) MarshalToSizedBuffer added in v0.26.5

func (m *TokenInfoRequest_Address) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TokenInfoRequest_Address) Size added in v0.26.5

func (m *TokenInfoRequest_Address) Size() (n int)

type TokenInfoRequest_Asset added in v0.19.2

type TokenInfoRequest_Asset struct {
	Asset string `protobuf:"bytes,2,opt,name=asset,proto3,oneof" json:"asset,omitempty"`
}

func (*TokenInfoRequest_Asset) MarshalTo added in v0.19.2

func (m *TokenInfoRequest_Asset) MarshalTo(dAtA []byte) (int, error)

func (*TokenInfoRequest_Asset) MarshalToSizedBuffer added in v0.19.2

func (m *TokenInfoRequest_Asset) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TokenInfoRequest_Asset) Size added in v0.19.2

func (m *TokenInfoRequest_Asset) Size() (n int)

type TokenInfoRequest_Symbol added in v0.19.2

type TokenInfoRequest_Symbol struct {
	Symbol string `protobuf:"bytes,3,opt,name=symbol,proto3,oneof" json:"symbol,omitempty"`
}

func (*TokenInfoRequest_Symbol) MarshalTo added in v0.19.2

func (m *TokenInfoRequest_Symbol) MarshalTo(dAtA []byte) (int, error)

func (*TokenInfoRequest_Symbol) MarshalToSizedBuffer added in v0.19.2

func (m *TokenInfoRequest_Symbol) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TokenInfoRequest_Symbol) Size added in v0.19.2

func (m *TokenInfoRequest_Symbol) Size() (n int)

type TokenInfoResponse added in v0.19.2

type TokenInfoResponse struct {
	Asset          string       `protobuf:"bytes,1,opt,name=asset,proto3" json:"asset,omitempty"`
	Details        TokenDetails `protobuf:"bytes,2,opt,name=details,proto3" json:"details"`
	Address        string       `protobuf:"bytes,3,opt,name=address,proto3" json:"address,omitempty"`
	Confirmed      bool         `protobuf:"varint,4,opt,name=confirmed,proto3" json:"confirmed,omitempty"`
	IsExternal     bool         `protobuf:"varint,5,opt,name=is_external,json=isExternal,proto3" json:"is_external,omitempty"`
	BurnerCodeHash string       `protobuf:"bytes,6,opt,name=burner_code_hash,json=burnerCodeHash,proto3" json:"burner_code_hash,omitempty"`
}

func (*TokenInfoResponse) Descriptor added in v0.19.2

func (*TokenInfoResponse) Descriptor() ([]byte, []int)

func (*TokenInfoResponse) Marshal added in v0.19.2

func (m *TokenInfoResponse) Marshal() (dAtA []byte, err error)

func (*TokenInfoResponse) MarshalTo added in v0.19.2

func (m *TokenInfoResponse) MarshalTo(dAtA []byte) (int, error)

func (*TokenInfoResponse) MarshalToSizedBuffer added in v0.19.2

func (m *TokenInfoResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TokenInfoResponse) ProtoMessage added in v0.19.2

func (*TokenInfoResponse) ProtoMessage()

func (*TokenInfoResponse) Reset added in v0.19.2

func (m *TokenInfoResponse) Reset()

func (*TokenInfoResponse) Size added in v0.19.2

func (m *TokenInfoResponse) Size() (n int)

func (*TokenInfoResponse) String added in v0.19.2

func (m *TokenInfoResponse) String() string

func (*TokenInfoResponse) Unmarshal added in v0.19.2

func (m *TokenInfoResponse) Unmarshal(dAtA []byte) error

func (*TokenInfoResponse) XXX_DiscardUnknown added in v0.19.2

func (m *TokenInfoResponse) XXX_DiscardUnknown()

func (*TokenInfoResponse) XXX_Marshal added in v0.19.2

func (m *TokenInfoResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TokenInfoResponse) XXX_Merge added in v0.19.2

func (m *TokenInfoResponse) XXX_Merge(src proto.Message)

func (*TokenInfoResponse) XXX_Size added in v0.19.2

func (m *TokenInfoResponse) XXX_Size() int

func (*TokenInfoResponse) XXX_Unmarshal added in v0.19.2

func (m *TokenInfoResponse) XXX_Unmarshal(b []byte) error

type TokenSent added in v0.25.0

type TokenSent struct {
	Chain              github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName  `` /* 136-byte string literal not displayed */
	EventID            EventID                                                          `protobuf:"bytes,2,opt,name=event_id,json=eventId,proto3,casttype=EventID" json:"event_id,omitempty"`
	TransferID         github_com_axelarnetwork_axelar_core_x_nexus_exported.TransferID `` /* 166-byte string literal not displayed */
	Sender             string                                                           `protobuf:"bytes,4,opt,name=sender,proto3" json:"sender,omitempty"`
	DestinationChain   github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName  `` /* 182-byte string literal not displayed */
	DestinationAddress string                                                           `protobuf:"bytes,6,opt,name=destination_address,json=destinationAddress,proto3" json:"destination_address,omitempty"`
	Asset              types.Coin                                                       `protobuf:"bytes,7,opt,name=asset,proto3" json:"asset"`
}

func (*TokenSent) Descriptor added in v0.25.0

func (*TokenSent) Descriptor() ([]byte, []int)

func (*TokenSent) GetAsset added in v0.25.0

func (m *TokenSent) GetAsset() types.Coin

func (*TokenSent) GetChain added in v0.25.0

func (*TokenSent) GetDestinationAddress added in v0.25.0

func (m *TokenSent) GetDestinationAddress() string

func (*TokenSent) GetDestinationChain added in v0.25.0

func (*TokenSent) GetEventID added in v0.25.0

func (m *TokenSent) GetEventID() EventID

func (*TokenSent) GetSender added in v0.25.0

func (m *TokenSent) GetSender() string

func (*TokenSent) GetTransferID added in v0.25.0

func (*TokenSent) Marshal added in v0.25.0

func (m *TokenSent) Marshal() (dAtA []byte, err error)

func (*TokenSent) MarshalTo added in v0.25.0

func (m *TokenSent) MarshalTo(dAtA []byte) (int, error)

func (*TokenSent) MarshalToSizedBuffer added in v0.25.0

func (m *TokenSent) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TokenSent) ProtoMessage added in v0.25.0

func (*TokenSent) ProtoMessage()

func (*TokenSent) Reset added in v0.25.0

func (m *TokenSent) Reset()

func (*TokenSent) Size added in v0.25.0

func (m *TokenSent) Size() (n int)

func (*TokenSent) String added in v0.25.0

func (m *TokenSent) String() string

func (*TokenSent) Unmarshal added in v0.25.0

func (m *TokenSent) Unmarshal(dAtA []byte) error

func (*TokenSent) XXX_DiscardUnknown added in v0.25.0

func (m *TokenSent) XXX_DiscardUnknown()

func (*TokenSent) XXX_Marshal added in v0.25.0

func (m *TokenSent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TokenSent) XXX_Merge added in v0.25.0

func (m *TokenSent) XXX_Merge(src proto.Message)

func (*TokenSent) XXX_MessageName added in v0.33.1

func (*TokenSent) XXX_MessageName() string

func (*TokenSent) XXX_Size added in v0.25.0

func (m *TokenSent) XXX_Size() int

func (*TokenSent) XXX_Unmarshal added in v0.25.0

func (m *TokenSent) XXX_Unmarshal(b []byte) error

type TokenType added in v0.19.2

type TokenType int32
const (
	Unspecified TokenType = 0
	Internal    TokenType = 1
	External    TokenType = 2
)

func (TokenType) EnumDescriptor added in v0.19.2

func (TokenType) EnumDescriptor() ([]byte, []int)

func (TokenType) String added in v0.19.2

func (x TokenType) String() string

type TransactionMetadata

type TransactionMetadata struct {
	RawTX  []byte `protobuf:"bytes,1,opt,name=raw_tx,json=rawTx,proto3" json:"raw_tx,omitempty"`
	PubKey []byte `protobuf:"bytes,2,opt,name=pub_key,json=pubKey,proto3" json:"pub_key,omitempty"`
}

func (*TransactionMetadata) Descriptor

func (*TransactionMetadata) Descriptor() ([]byte, []int)

func (*TransactionMetadata) Marshal

func (m *TransactionMetadata) Marshal() (dAtA []byte, err error)

func (*TransactionMetadata) MarshalTo

func (m *TransactionMetadata) MarshalTo(dAtA []byte) (int, error)

func (*TransactionMetadata) MarshalToSizedBuffer

func (m *TransactionMetadata) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TransactionMetadata) ProtoMessage

func (*TransactionMetadata) ProtoMessage()

func (*TransactionMetadata) Reset

func (m *TransactionMetadata) Reset()

func (*TransactionMetadata) Size

func (m *TransactionMetadata) Size() (n int)

func (*TransactionMetadata) String

func (m *TransactionMetadata) String() string

func (*TransactionMetadata) Unmarshal

func (m *TransactionMetadata) Unmarshal(dAtA []byte) error

func (*TransactionMetadata) XXX_DiscardUnknown

func (m *TransactionMetadata) XXX_DiscardUnknown()

func (*TransactionMetadata) XXX_Marshal

func (m *TransactionMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TransactionMetadata) XXX_Merge

func (m *TransactionMetadata) XXX_Merge(src proto.Message)

func (*TransactionMetadata) XXX_Size

func (m *TransactionMetadata) XXX_Size() int

func (*TransactionMetadata) XXX_Unmarshal

func (m *TransactionMetadata) XXX_Unmarshal(b []byte) error

type TransferKey

type TransferKey struct {
	TxID      Hash                                                           `protobuf:"bytes,1,opt,name=tx_id,json=txId,proto3,customtype=Hash" json:"tx_id"`
	NextKeyID github_com_axelarnetwork_axelar_core_x_multisig_exported.KeyID `` /* 162-byte string literal not displayed */
}

TransferKey contains information for a transfer operatorship

func (*TransferKey) Descriptor

func (*TransferKey) Descriptor() ([]byte, []int)

func (*TransferKey) Marshal

func (m *TransferKey) Marshal() (dAtA []byte, err error)

func (*TransferKey) MarshalTo

func (m *TransferKey) MarshalTo(dAtA []byte) (int, error)

func (*TransferKey) MarshalToSizedBuffer

func (m *TransferKey) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TransferKey) ProtoMessage

func (*TransferKey) ProtoMessage()

func (*TransferKey) Reset

func (m *TransferKey) Reset()

func (*TransferKey) Size

func (m *TransferKey) Size() (n int)

func (*TransferKey) String

func (m *TransferKey) String() string

func (*TransferKey) Unmarshal

func (m *TransferKey) Unmarshal(dAtA []byte) error

func (*TransferKey) XXX_DiscardUnknown

func (m *TransferKey) XXX_DiscardUnknown()

func (*TransferKey) XXX_Marshal

func (m *TransferKey) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TransferKey) XXX_Merge

func (m *TransferKey) XXX_Merge(src proto.Message)

func (*TransferKey) XXX_Size

func (m *TransferKey) XXX_Size() int

func (*TransferKey) XXX_Unmarshal

func (m *TransferKey) XXX_Unmarshal(b []byte) error

type UnimplementedMsgServiceServer

type UnimplementedMsgServiceServer struct {
}

UnimplementedMsgServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedMsgServiceServer) AddChain

func (*UnimplementedMsgServiceServer) ConfirmDeposit

func (*UnimplementedMsgServiceServer) ConfirmGatewayTx added in v0.17.0

func (*UnimplementedMsgServiceServer) ConfirmGatewayTxs added in v0.34.0

func (*UnimplementedMsgServiceServer) ConfirmToken

func (*UnimplementedMsgServiceServer) ConfirmTransferKey

func (*UnimplementedMsgServiceServer) CreateBurnTokens

func (*UnimplementedMsgServiceServer) CreateDeployToken

func (*UnimplementedMsgServiceServer) CreatePendingTransfers

func (*UnimplementedMsgServiceServer) CreateTransferOperatorship

func (*UnimplementedMsgServiceServer) RetryFailedEvent added in v0.18.0

func (*UnimplementedMsgServiceServer) SetGateway added in v0.17.0

func (*UnimplementedMsgServiceServer) SignCommands

type UnimplementedQueryServiceServer added in v0.13.3

type UnimplementedQueryServiceServer struct {
}

UnimplementedQueryServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServiceServer) BatchedCommands added in v0.16.0

func (*UnimplementedQueryServiceServer) BurnerInfo added in v0.13.3

func (*UnimplementedQueryServiceServer) Bytecode added in v0.16.0

func (*UnimplementedQueryServiceServer) Chains added in v0.16.0

func (*UnimplementedQueryServiceServer) Command added in v0.31.3

func (*UnimplementedQueryServiceServer) ConfirmationHeight added in v0.13.4

func (*UnimplementedQueryServiceServer) DepositState added in v0.13.4

func (*UnimplementedQueryServiceServer) ERC20Tokens added in v0.19.2

func (*UnimplementedQueryServiceServer) Event added in v0.17.0

func (*UnimplementedQueryServiceServer) GatewayAddress added in v0.16.0

func (*UnimplementedQueryServiceServer) KeyAddress added in v0.16.0

func (*UnimplementedQueryServiceServer) Params added in v0.34.0

func (*UnimplementedQueryServiceServer) PendingCommands added in v0.16.0

func (*UnimplementedQueryServiceServer) TokenInfo added in v0.19.2

type VoteEvents added in v0.18.0

type VoteEvents struct {
	Chain  github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `` /* 136-byte string literal not displayed */
	Events []Event                                                         `protobuf:"bytes,2,rep,name=events,proto3" json:"events"`
}

func NewVoteEvents added in v0.21.0

func NewVoteEvents(chain nexus.ChainName, events ...Event) *VoteEvents

NewVoteEvents is the constructor for vote events

func (*VoteEvents) Descriptor added in v0.18.0

func (*VoteEvents) Descriptor() ([]byte, []int)

func (*VoteEvents) Marshal added in v0.18.0

func (m *VoteEvents) Marshal() (dAtA []byte, err error)

func (*VoteEvents) MarshalTo added in v0.18.0

func (m *VoteEvents) MarshalTo(dAtA []byte) (int, error)

func (*VoteEvents) MarshalToSizedBuffer added in v0.18.0

func (m *VoteEvents) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*VoteEvents) ProtoMessage added in v0.18.0

func (*VoteEvents) ProtoMessage()

func (*VoteEvents) Reset added in v0.18.0

func (m *VoteEvents) Reset()

func (*VoteEvents) Size added in v0.18.0

func (m *VoteEvents) Size() (n int)

func (*VoteEvents) String added in v0.18.0

func (m *VoteEvents) String() string

func (*VoteEvents) Unmarshal added in v0.18.0

func (m *VoteEvents) Unmarshal(dAtA []byte) error

func (VoteEvents) ValidateBasic added in v0.27.0

func (m VoteEvents) ValidateBasic() error

ValidateBasic does stateless validation of the object

func (*VoteEvents) XXX_DiscardUnknown added in v0.18.0

func (m *VoteEvents) XXX_DiscardUnknown()

func (*VoteEvents) XXX_Marshal added in v0.18.0

func (m *VoteEvents) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*VoteEvents) XXX_Merge added in v0.18.0

func (m *VoteEvents) XXX_Merge(src proto.Message)

func (*VoteEvents) XXX_Size added in v0.18.0

func (m *VoteEvents) XXX_Size() int

func (*VoteEvents) XXX_Unmarshal added in v0.18.0

func (m *VoteEvents) XXX_Unmarshal(b []byte) error

type Voter

type Voter interface {
	InitializePoll(ctx sdk.Context, pollBuilder vote.PollBuilder) (vote.PollID, error)
}

Voter exposes voting functionality

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL