types

package
v7.0.1 Latest Latest
Warning

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

Go to latest
Published: Feb 9, 2024 License: Apache-2.0 Imports: 48 Imported by: 0

Documentation

Overview

Package types is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const (
	PureMessage int64
	MessageWithToken
	PureTokenTransfer
)
View Source
const (
	// ModuleName is the module name constant used in many places
	ModuleName = "axelarcork"

	// StoreKey is the store key string for oracle
	StoreKey = ModuleName

	// RouterKey is the message route for oracle
	RouterKey = ModuleName

	// QuerierRoute is the querier route for oracle
	QuerierRoute = ModuleName
)
View Source
const (

	// CorkForAddressKeyPrefix - <prefix><chain_id><val_address><address> -> <cork>
	CorkForAddressKeyPrefix // key for corks

	// CellarIDsKeyPrefix - <prefix><chain_id> -> []string
	CellarIDsKeyPrefix

	// ScheduledCorkKeyPrefix - <prefix><chain_id><block_height><val_address><address> -> <cork>
	ScheduledCorkKeyPrefix

	// CorkResultPrefix - <prefix><chain_id><id> -> AxelarCorkResult
	CorkResultPrefix

	// ChainConfigurationPrefix - <prefix><chain_id> -> ChainConfiguration
	ChainConfigurationPrefix

	// WinningCorkPrefix - <prefix><chain_id> -> AxelarCork
	WinningCorkPrefix

	// AxelarContractCallNoncePrefix - <prefix><chain_id><contract_address> -> <nonce>
	AxelarContractCallNoncePrefix

	// AxelarProxyUpgradeDataPrefix - <prefix><chain_id> -> <payload>
	AxelarProxyUpgradeDataPrefix

	// ValidatorAxelarCorkCountKey - <prefix><val_address> -> uint64(count)
	ValidatorAxelarCorkCountKey
)

Keys for cork store, with <prefix><key> -> <value>

View Source
const (
	TypeMsgScheduleAxelarCorkRequest      = "axelar_cork_schedule"
	TypeMsgRelayAxelarCorkRequest         = "axelar_cork_relay"
	TypeMsgBumpAxelarCorkGasRequest       = "axelar_cork_bump_gas"
	TypeMsgCancelAxelarCorkRequest        = "axelar_cancel_cork"
	TypeMsgRelayAxelarProxyUpgradeRequest = "axelar_proxy_upgrade_relay"
)
View Source
const (
	ProposalTypeAddManagedCellarIDs = "AddAxelarManagedCellarIDs"

	ProposalTypeRemoveManagedCellarIDs           = "RemoveAxelarManagedCellarIDs"
	ProposalTypeScheduledCork                    = "AxelarScheduledCork"
	ProposalTypeCommunitySpend                   = "AxelarCommunitySpend"
	ProposalTypeAddChainConfiguration            = "AddAxelarChainConfiguration"
	ProposalTypeRemoveChainConfiguration         = "RemoveAxelarChainConfiguration"
	ProposalTypeUpgradeAxelarProxyContract       = "UpgradeAxelarProxyContract"
	ProposalTypeCancelAxelarProxyContractUpgrade = "CancelAxelarProxyContractUpgrade"
)
View Source
const DefaultParamspace = ModuleName
View Source
const MaxAxelarCorksPerValidator uint64 = 1000

Variables

View Source
var (
	Address, _    = abi.NewType("address", "", nil)
	AddressArr, _ = abi.NewType("address[]", "", nil)
	Bytes, _      = abi.NewType("bytes", "", nil)
	Uint256, _    = abi.NewType("uint256", "", nil)

	HourInBlocks                     = uint64((60 * 60) / 12)
	DefaultExecutableHeightThreshold = 72 * HourInBlocks

	LogicCallMsgID = big.NewInt(0)
	UpgradeMsgID   = big.NewInt(1)
)
View Source
var (
	ErrInvalidLengthAxelarcork        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowAxelarcork          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupAxelarcork = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidEVMAddress                  = errorsmod.Register(ModuleName, 2, "invalid evm address")
	ErrUnmanagedCellarAddress             = errorsmod.Register(ModuleName, 3, "cork sent to address that has not passed governance")
	ErrEmptyContractCall                  = errorsmod.Register(ModuleName, 4, "cork has an empty contract call body")
	ErrSchedulingInThePast                = errorsmod.Register(ModuleName, 5, "cork is trying to be scheduled for a block that has already passed")
	ErrInvalidJSON                        = errorsmod.Register(ModuleName, 6, "invalid json")
	ErrValuelessSend                      = errorsmod.Register(ModuleName, 7, "transferring an empty token amount")
	ErrDisabled                           = errorsmod.Register(ModuleName, 8, "axelar disabled")
	ErrValidatorAxelarCorkCapacityReached = errorsmod.Register(ModuleName, 9, "validator Axelar cork capacity reached")
)

x/cork module sentinel errors

View Source
var (
	ErrInvalidLengthEvent        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowEvent          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupEvent = 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 (
	KeyEnabled           = []byte("enabled")
	KeyIBCChannel        = []byte("ibcchannel")
	KeyIBCPort           = []byte("ibcport")
	KeyGMPAccount        = []byte("gmpaccount")
	KeyExecutorAccount   = []byte("executoraccount")
	KeyTimeoutDuration   = []byte("timeoutduration")
	KeyCorkTimeoutBlocks = []byte("corktimeoutblocks")
)

Parameter keys

View Source
var (
	ErrInvalidLengthProposal        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowProposal          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupProposal = 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 (

	// ModuleCdc Note, the codec should ONLY be used in certain instances of tests and for
	// JSON encoding as Amino is still used for that purpose.
	//
	// The actual codec used for serialization should be provided to x/staking and
	// defined at the application level.
	ModuleCdc = codec.NewAminoCodec(amino)
)

Functions

func ChainConfigurationKey

func ChainConfigurationKey(chainID uint64) []byte

func DecodeLogicCallArgs

func DecodeLogicCallArgs(data []byte) (targetContract string, nonce uint64, deadline uint64, callData []byte, err error)

func DecodeUpgradeArgs

func DecodeUpgradeArgs(data []byte) (newAxelarProxy string, targets []string, err error)

func EncodeLogicCallArgs

func EncodeLogicCallArgs(targetContract string, nonce uint64, deadline uint64, callData []byte) ([]byte, error)

func EncodeUpgradeArgs

func EncodeUpgradeArgs(newAxelarProxy string, targets []string) ([]byte, error)

func GetAxelarContractCallNonceKey

func GetAxelarContractCallNonceKey(chainID uint64, contractAddress common.Address) []byte

func GetAxelarCorkResultKey

func GetAxelarCorkResultKey(chainID uint64, id []byte) []byte

func GetAxelarCorkResultPrefix

func GetAxelarCorkResultPrefix(chainID uint64) []byte

func GetAxelarProxyUpgradeDataKey

func GetAxelarProxyUpgradeDataKey(chainID uint64) []byte

func GetCorkValidatorKeyPrefix

func GetCorkValidatorKeyPrefix(chainID uint64, val sdk.ValAddress) []byte

GetCorkValidatorKeyPrefix returns the key prefix for cork commits for a validator

func GetScheduledAxelarCorkKey

func GetScheduledAxelarCorkKey(chainID uint64, blockHeight uint64, id []byte, val sdk.ValAddress, contract common.Address) []byte

func GetScheduledAxelarCorkKeyByBlockHeightPrefix

func GetScheduledAxelarCorkKeyByBlockHeightPrefix(chainID uint64, blockHeight uint64) []byte

func GetScheduledAxelarCorkKeyPrefix

func GetScheduledAxelarCorkKeyPrefix(chainID uint64) []byte

func GetValidatorAxelarCorkCountKey

func GetValidatorAxelarCorkCountKey(val sdk.ValAddress) []byte

func GetWinningAxelarCorkKey

func GetWinningAxelarCorkKey(chainID uint64, blockheight uint64, address common.Address) []byte

func GetWinningAxelarCorkKeyPrefix

func GetWinningAxelarCorkKeyPrefix(chainID uint64) []byte

func MakeCellarIDsKey

func MakeCellarIDsKey(chainID uint64) []byte

func ParamKeyTable

func ParamKeyTable() paramtypes.KeyTable

ParamKeyTable returns the parameter key table.

func RegisterInterfaces

func RegisterInterfaces(registry codectypes.InterfaceRegistry)

RegisterInterfaces registers the cork proto files

func RegisterLegacyAminoCodec

func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino)

RegisterLegacyAminoCodec registers the vesting interfaces and concrete types on the provided LegacyAmino codec. These types are used for Amino JSON serialization

func RegisterMsgServer

func RegisterMsgServer(s grpc1.Server, srv MsgServer)

func RegisterQueryHandler

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

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

func RegisterQueryHandlerClient

func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, client QueryClient) error

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

func RegisterQueryHandlerFromEndpoint

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

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

func RegisterQueryHandlerServer

func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, server QueryServer) error

RegisterQueryHandlerServer registers the http handlers for service Query to "mux". UnaryRPC :call QueryServer 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 to stop working. Consider using RegisterQueryHandlerFromEndpoint instead.

func RegisterQueryServer

func RegisterQueryServer(s grpc1.Server, srv QueryServer)

Types

type AccountKeeper

type AccountKeeper interface {
	GetAccount(ctx sdk.Context, addr sdk.AccAddress) authtypes.AccountI

	GetModuleAddress(name string) sdk.AccAddress
	GetModuleAccount(ctx sdk.Context, name string) authtypes.ModuleAccountI

	SetModuleAccount(sdk.Context, authtypes.ModuleAccountI)
}

AccountKeeper defines the expected account keeper.

type AddAxelarManagedCellarIDsProposal

type AddAxelarManagedCellarIDsProposal struct {
	Title           string       `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description     string       `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	ChainId         uint64       `protobuf:"varint,3,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	CellarIds       *CellarIDSet `protobuf:"bytes,4,opt,name=cellar_ids,json=cellarIds,proto3" json:"cellar_ids,omitempty"`
	PublisherDomain string       `protobuf:"bytes,5,opt,name=publisher_domain,json=publisherDomain,proto3" json:"publisher_domain,omitempty"`
}

func NewAddAxelarManagedCellarIDsProposal

func NewAddAxelarManagedCellarIDsProposal(title string, description string, chainID uint64, cellarIds *CellarIDSet, publisherDomain string) *AddAxelarManagedCellarIDsProposal

func (*AddAxelarManagedCellarIDsProposal) Descriptor

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

func (*AddAxelarManagedCellarIDsProposal) GetCellarIds

func (*AddAxelarManagedCellarIDsProposal) GetChainId

func (m *AddAxelarManagedCellarIDsProposal) GetChainId() uint64

func (*AddAxelarManagedCellarIDsProposal) GetDescription

func (m *AddAxelarManagedCellarIDsProposal) GetDescription() string

func (*AddAxelarManagedCellarIDsProposal) GetPublisherDomain

func (m *AddAxelarManagedCellarIDsProposal) GetPublisherDomain() string

func (*AddAxelarManagedCellarIDsProposal) GetTitle

func (*AddAxelarManagedCellarIDsProposal) Marshal

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

func (*AddAxelarManagedCellarIDsProposal) MarshalTo

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

func (*AddAxelarManagedCellarIDsProposal) MarshalToSizedBuffer

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

func (*AddAxelarManagedCellarIDsProposal) ProposalRoute

func (m *AddAxelarManagedCellarIDsProposal) ProposalRoute() string

func (*AddAxelarManagedCellarIDsProposal) ProposalType

func (m *AddAxelarManagedCellarIDsProposal) ProposalType() string

func (*AddAxelarManagedCellarIDsProposal) ProtoMessage

func (*AddAxelarManagedCellarIDsProposal) ProtoMessage()

func (*AddAxelarManagedCellarIDsProposal) Reset

func (*AddAxelarManagedCellarIDsProposal) Size

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

func (*AddAxelarManagedCellarIDsProposal) String

func (*AddAxelarManagedCellarIDsProposal) Unmarshal

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

func (*AddAxelarManagedCellarIDsProposal) ValidateBasic

func (m *AddAxelarManagedCellarIDsProposal) ValidateBasic() error

func (*AddAxelarManagedCellarIDsProposal) XXX_DiscardUnknown

func (m *AddAxelarManagedCellarIDsProposal) XXX_DiscardUnknown()

func (*AddAxelarManagedCellarIDsProposal) XXX_Marshal

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

func (*AddAxelarManagedCellarIDsProposal) XXX_Merge

func (*AddAxelarManagedCellarIDsProposal) XXX_Size

func (m *AddAxelarManagedCellarIDsProposal) XXX_Size() int

func (*AddAxelarManagedCellarIDsProposal) XXX_Unmarshal

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

type AddAxelarManagedCellarIDsProposalWithDeposit

type AddAxelarManagedCellarIDsProposalWithDeposit struct {
	Title           string   `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description     string   `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	ChainId         uint64   `protobuf:"varint,3,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	CellarIds       []string `protobuf:"bytes,4,rep,name=cellar_ids,json=cellarIds,proto3" json:"cellar_ids,omitempty"`
	PublisherDomain string   `protobuf:"bytes,5,opt,name=publisher_domain,json=publisherDomain,proto3" json:"publisher_domain,omitempty"`
	Deposit         string   `protobuf:"bytes,6,opt,name=deposit,proto3" json:"deposit,omitempty"`
}

AddAxelarManagedCellarIDsProposalWithDeposit is a specific definition for CLI commands

func (*AddAxelarManagedCellarIDsProposalWithDeposit) Descriptor

func (*AddAxelarManagedCellarIDsProposalWithDeposit) GetCellarIds

func (*AddAxelarManagedCellarIDsProposalWithDeposit) GetChainId

func (*AddAxelarManagedCellarIDsProposalWithDeposit) GetDeposit

func (*AddAxelarManagedCellarIDsProposalWithDeposit) GetDescription

func (*AddAxelarManagedCellarIDsProposalWithDeposit) GetPublisherDomain

func (m *AddAxelarManagedCellarIDsProposalWithDeposit) GetPublisherDomain() string

func (*AddAxelarManagedCellarIDsProposalWithDeposit) GetTitle

func (*AddAxelarManagedCellarIDsProposalWithDeposit) Marshal

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

func (*AddAxelarManagedCellarIDsProposalWithDeposit) MarshalTo

func (*AddAxelarManagedCellarIDsProposalWithDeposit) MarshalToSizedBuffer

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

func (*AddAxelarManagedCellarIDsProposalWithDeposit) ProtoMessage

func (*AddAxelarManagedCellarIDsProposalWithDeposit) Reset

func (*AddAxelarManagedCellarIDsProposalWithDeposit) Size

func (*AddAxelarManagedCellarIDsProposalWithDeposit) String

func (*AddAxelarManagedCellarIDsProposalWithDeposit) Unmarshal

func (*AddAxelarManagedCellarIDsProposalWithDeposit) XXX_DiscardUnknown

func (m *AddAxelarManagedCellarIDsProposalWithDeposit) XXX_DiscardUnknown()

func (*AddAxelarManagedCellarIDsProposalWithDeposit) XXX_Marshal

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

func (*AddAxelarManagedCellarIDsProposalWithDeposit) XXX_Merge

func (*AddAxelarManagedCellarIDsProposalWithDeposit) XXX_Size

func (*AddAxelarManagedCellarIDsProposalWithDeposit) XXX_Unmarshal

type AddChainConfigurationProposal

type AddChainConfigurationProposal struct {
	Title              string              `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description        string              `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	ChainConfiguration *ChainConfiguration `protobuf:"bytes,3,opt,name=chain_configuration,json=chainConfiguration,proto3" json:"chain_configuration,omitempty"`
}

func NewAddChainConfigurationProposal

func NewAddChainConfigurationProposal(title string, description string, configuration ChainConfiguration) *AddChainConfigurationProposal

func (*AddChainConfigurationProposal) Descriptor

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

func (*AddChainConfigurationProposal) GetChainConfiguration

func (m *AddChainConfigurationProposal) GetChainConfiguration() *ChainConfiguration

func (*AddChainConfigurationProposal) GetDescription

func (m *AddChainConfigurationProposal) GetDescription() string

func (*AddChainConfigurationProposal) GetTitle

func (m *AddChainConfigurationProposal) GetTitle() string

func (*AddChainConfigurationProposal) Marshal

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

func (*AddChainConfigurationProposal) MarshalTo

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

func (*AddChainConfigurationProposal) MarshalToSizedBuffer

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

func (*AddChainConfigurationProposal) ProposalRoute

func (m *AddChainConfigurationProposal) ProposalRoute() string

func (*AddChainConfigurationProposal) ProposalType

func (m *AddChainConfigurationProposal) ProposalType() string

func (*AddChainConfigurationProposal) ProtoMessage

func (*AddChainConfigurationProposal) ProtoMessage()

func (*AddChainConfigurationProposal) Reset

func (m *AddChainConfigurationProposal) Reset()

func (*AddChainConfigurationProposal) Size

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

func (*AddChainConfigurationProposal) String

func (*AddChainConfigurationProposal) Unmarshal

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

func (*AddChainConfigurationProposal) ValidateBasic

func (m *AddChainConfigurationProposal) ValidateBasic() error

func (*AddChainConfigurationProposal) XXX_DiscardUnknown

func (m *AddChainConfigurationProposal) XXX_DiscardUnknown()

func (*AddChainConfigurationProposal) XXX_Marshal

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

func (*AddChainConfigurationProposal) XXX_Merge

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

func (*AddChainConfigurationProposal) XXX_Size

func (m *AddChainConfigurationProposal) XXX_Size() int

func (*AddChainConfigurationProposal) XXX_Unmarshal

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

type AddChainConfigurationProposalWithDeposit

type AddChainConfigurationProposalWithDeposit struct {
	Title              string              `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description        string              `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	ChainConfiguration *ChainConfiguration `protobuf:"bytes,3,opt,name=chain_configuration,json=chainConfiguration,proto3" json:"chain_configuration,omitempty"`
	Deposit            string              `protobuf:"bytes,4,opt,name=deposit,proto3" json:"deposit,omitempty"`
}

func (*AddChainConfigurationProposalWithDeposit) Descriptor

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

func (*AddChainConfigurationProposalWithDeposit) GetChainConfiguration

func (*AddChainConfigurationProposalWithDeposit) GetDeposit

func (*AddChainConfigurationProposalWithDeposit) GetDescription

func (*AddChainConfigurationProposalWithDeposit) GetTitle

func (*AddChainConfigurationProposalWithDeposit) Marshal

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

func (*AddChainConfigurationProposalWithDeposit) MarshalTo

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

func (*AddChainConfigurationProposalWithDeposit) MarshalToSizedBuffer

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

func (*AddChainConfigurationProposalWithDeposit) ProtoMessage

func (*AddChainConfigurationProposalWithDeposit) Reset

func (*AddChainConfigurationProposalWithDeposit) Size

func (*AddChainConfigurationProposalWithDeposit) String

func (*AddChainConfigurationProposalWithDeposit) Unmarshal

func (*AddChainConfigurationProposalWithDeposit) XXX_DiscardUnknown

func (m *AddChainConfigurationProposalWithDeposit) XXX_DiscardUnknown()

func (*AddChainConfigurationProposalWithDeposit) XXX_Marshal

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

func (*AddChainConfigurationProposalWithDeposit) XXX_Merge

func (*AddChainConfigurationProposalWithDeposit) XXX_Size

func (*AddChainConfigurationProposalWithDeposit) XXX_Unmarshal

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

type AxelarBody

type AxelarBody struct {
	DestinationChain   string `json:"destination_chain"`
	DestinationAddress string `json:"destination_address"`
	Payload            []byte `json:"payload"`
	Type               int64  `json:"type"`
	Fee                *Fee   `json:"fee"`
}

type AxelarCommunityPoolSpendProposal

type AxelarCommunityPoolSpendProposal struct {
	Title       string     `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description string     `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Recipient   string     `protobuf:"bytes,3,opt,name=recipient,proto3" json:"recipient,omitempty"`
	ChainId     uint64     `protobuf:"varint,4,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	Amount      types.Coin `protobuf:"bytes,5,opt,name=amount,proto3" json:"amount"`
}

func NewAxelarCommunitySpendProposal

func NewAxelarCommunitySpendProposal(title string, description string, recipient string, chainID uint64, amount sdk.Coin) *AxelarCommunityPoolSpendProposal

func (*AxelarCommunityPoolSpendProposal) Descriptor

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

func (*AxelarCommunityPoolSpendProposal) GetAmount

func (*AxelarCommunityPoolSpendProposal) GetChainId

func (m *AxelarCommunityPoolSpendProposal) GetChainId() uint64

func (*AxelarCommunityPoolSpendProposal) GetDescription

func (m *AxelarCommunityPoolSpendProposal) GetDescription() string

func (*AxelarCommunityPoolSpendProposal) GetRecipient

func (m *AxelarCommunityPoolSpendProposal) GetRecipient() string

func (*AxelarCommunityPoolSpendProposal) GetTitle

func (*AxelarCommunityPoolSpendProposal) Marshal

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

func (*AxelarCommunityPoolSpendProposal) MarshalTo

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

func (*AxelarCommunityPoolSpendProposal) MarshalToSizedBuffer

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

func (*AxelarCommunityPoolSpendProposal) ProposalRoute

func (m *AxelarCommunityPoolSpendProposal) ProposalRoute() string

func (*AxelarCommunityPoolSpendProposal) ProposalType

func (m *AxelarCommunityPoolSpendProposal) ProposalType() string

func (*AxelarCommunityPoolSpendProposal) ProtoMessage

func (*AxelarCommunityPoolSpendProposal) ProtoMessage()

func (*AxelarCommunityPoolSpendProposal) Reset

func (*AxelarCommunityPoolSpendProposal) Size

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

func (*AxelarCommunityPoolSpendProposal) String

func (*AxelarCommunityPoolSpendProposal) Unmarshal

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

func (*AxelarCommunityPoolSpendProposal) ValidateBasic

func (m *AxelarCommunityPoolSpendProposal) ValidateBasic() error

func (*AxelarCommunityPoolSpendProposal) XXX_DiscardUnknown

func (m *AxelarCommunityPoolSpendProposal) XXX_DiscardUnknown()

func (*AxelarCommunityPoolSpendProposal) XXX_Marshal

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

func (*AxelarCommunityPoolSpendProposal) XXX_Merge

func (*AxelarCommunityPoolSpendProposal) XXX_Size

func (m *AxelarCommunityPoolSpendProposal) XXX_Size() int

func (*AxelarCommunityPoolSpendProposal) XXX_Unmarshal

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

type AxelarCommunityPoolSpendProposalForCLI

type AxelarCommunityPoolSpendProposalForCLI struct {
	Title       string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty" yaml:"title"`
	Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty" yaml:"description"`
	Recipient   string `protobuf:"bytes,3,opt,name=recipient,proto3" json:"recipient,omitempty" yaml:"recipient"`
	ChainId     uint64 `protobuf:"varint,4,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty" yaml:"chain_id"`
	Amount      string `protobuf:"bytes,5,opt,name=amount,proto3" json:"amount,omitempty" yaml:"amount"`
	Deposit     string `protobuf:"bytes,6,opt,name=deposit,proto3" json:"deposit,omitempty" yaml:"deposit"`
}

This format of the Axelar community spend Ethereum proposal is specifically for the CLI to allow simple text serialization.

func (*AxelarCommunityPoolSpendProposalForCLI) Descriptor

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

func (*AxelarCommunityPoolSpendProposalForCLI) Marshal

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

func (*AxelarCommunityPoolSpendProposalForCLI) MarshalTo

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

func (*AxelarCommunityPoolSpendProposalForCLI) MarshalToSizedBuffer

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

func (*AxelarCommunityPoolSpendProposalForCLI) ProtoMessage

func (*AxelarCommunityPoolSpendProposalForCLI) Reset

func (*AxelarCommunityPoolSpendProposalForCLI) Size

func (*AxelarCommunityPoolSpendProposalForCLI) String

func (*AxelarCommunityPoolSpendProposalForCLI) Unmarshal

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

func (*AxelarCommunityPoolSpendProposalForCLI) XXX_DiscardUnknown

func (m *AxelarCommunityPoolSpendProposalForCLI) XXX_DiscardUnknown()

func (*AxelarCommunityPoolSpendProposalForCLI) XXX_Marshal

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

func (*AxelarCommunityPoolSpendProposalForCLI) XXX_Merge

func (*AxelarCommunityPoolSpendProposalForCLI) XXX_Size

func (*AxelarCommunityPoolSpendProposalForCLI) XXX_Unmarshal

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

type AxelarContractCallNonce

type AxelarContractCallNonce struct {
	ChainId         uint64 `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	ContractAddress string `protobuf:"bytes,2,opt,name=contract_address,json=contractAddress,proto3" json:"contract_address,omitempty"`
	Nonce           uint64 `protobuf:"varint,3,opt,name=nonce,proto3" json:"nonce,omitempty"`
}

Used to enforce strictly newer call ordering per contract

func (*AxelarContractCallNonce) Descriptor

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

func (*AxelarContractCallNonce) GetChainId

func (m *AxelarContractCallNonce) GetChainId() uint64

func (*AxelarContractCallNonce) GetContractAddress

func (m *AxelarContractCallNonce) GetContractAddress() string

func (*AxelarContractCallNonce) GetNonce

func (m *AxelarContractCallNonce) GetNonce() uint64

func (*AxelarContractCallNonce) Marshal

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

func (*AxelarContractCallNonce) MarshalTo

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

func (*AxelarContractCallNonce) MarshalToSizedBuffer

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

func (*AxelarContractCallNonce) ProtoMessage

func (*AxelarContractCallNonce) ProtoMessage()

func (*AxelarContractCallNonce) Reset

func (m *AxelarContractCallNonce) Reset()

func (*AxelarContractCallNonce) Size

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

func (*AxelarContractCallNonce) String

func (m *AxelarContractCallNonce) String() string

func (*AxelarContractCallNonce) Unmarshal

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

func (AxelarContractCallNonce) ValidateBasic

func (ccn AxelarContractCallNonce) ValidateBasic() error

func (*AxelarContractCallNonce) XXX_DiscardUnknown

func (m *AxelarContractCallNonce) XXX_DiscardUnknown()

func (*AxelarContractCallNonce) XXX_Marshal

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

func (*AxelarContractCallNonce) XXX_Merge

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

func (*AxelarContractCallNonce) XXX_Size

func (m *AxelarContractCallNonce) XXX_Size() int

func (*AxelarContractCallNonce) XXX_Unmarshal

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

type AxelarCork

type AxelarCork struct {
	// call body containing the ABI encoded bytes to send to the contract
	EncodedContractCall []byte `protobuf:"bytes,1,opt,name=encoded_contract_call,json=encodedContractCall,proto3" json:"encoded_contract_call,omitempty"`
	// the chain ID of the evm target chain
	ChainId uint64 `protobuf:"varint,2,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	// address of the contract to send the call
	TargetContractAddress string `` /* 126-byte string literal not displayed */
	// unix timestamp before which the contract call must be executed.
	// enforced by the proxy contract.
	Deadline uint64 `protobuf:"varint,4,opt,name=deadline,proto3" json:"deadline,omitempty"`
}

func (*AxelarCork) Descriptor

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

func (*AxelarCork) Equals

func (c *AxelarCork) Equals(other AxelarCork) bool

func (*AxelarCork) GetChainId

func (m *AxelarCork) GetChainId() uint64

func (*AxelarCork) GetDeadline

func (m *AxelarCork) GetDeadline() uint64

func (*AxelarCork) GetEncodedContractCall

func (m *AxelarCork) GetEncodedContractCall() []byte

func (*AxelarCork) GetTargetContractAddress

func (m *AxelarCork) GetTargetContractAddress() string

func (*AxelarCork) IDHash

func (c *AxelarCork) IDHash(blockHeight uint64) []byte

func (*AxelarCork) Marshal

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

func (*AxelarCork) MarshalTo

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

func (*AxelarCork) MarshalToSizedBuffer

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

func (*AxelarCork) ProtoMessage

func (*AxelarCork) ProtoMessage()

func (*AxelarCork) Reset

func (m *AxelarCork) Reset()

func (*AxelarCork) Size

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

func (*AxelarCork) String

func (m *AxelarCork) String() string

func (*AxelarCork) Unmarshal

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

func (*AxelarCork) ValidateBasic

func (c *AxelarCork) ValidateBasic() error

func (*AxelarCork) XXX_DiscardUnknown

func (m *AxelarCork) XXX_DiscardUnknown()

func (*AxelarCork) XXX_Marshal

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

func (*AxelarCork) XXX_Merge

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

func (*AxelarCork) XXX_Size

func (m *AxelarCork) XXX_Size() int

func (*AxelarCork) XXX_Unmarshal

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

type AxelarCorkResult

type AxelarCorkResult struct {
	Cork               *AxelarCork `protobuf:"bytes,1,opt,name=cork,proto3" json:"cork,omitempty"`
	BlockHeight        uint64      `protobuf:"varint,2,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
	Approved           bool        `protobuf:"varint,3,opt,name=approved,proto3" json:"approved,omitempty"`
	ApprovalPercentage string      `protobuf:"bytes,4,opt,name=approval_percentage,json=approvalPercentage,proto3" json:"approval_percentage,omitempty"`
}

func (*AxelarCorkResult) Descriptor

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

func (*AxelarCorkResult) GetApprovalPercentage

func (m *AxelarCorkResult) GetApprovalPercentage() string

func (*AxelarCorkResult) GetApproved

func (m *AxelarCorkResult) GetApproved() bool

func (*AxelarCorkResult) GetBlockHeight

func (m *AxelarCorkResult) GetBlockHeight() uint64

func (*AxelarCorkResult) GetCork

func (m *AxelarCorkResult) GetCork() *AxelarCork

func (*AxelarCorkResult) Marshal

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

func (*AxelarCorkResult) MarshalTo

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

func (*AxelarCorkResult) MarshalToSizedBuffer

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

func (*AxelarCorkResult) ProtoMessage

func (*AxelarCorkResult) ProtoMessage()

func (*AxelarCorkResult) Reset

func (m *AxelarCorkResult) Reset()

func (*AxelarCorkResult) Size

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

func (*AxelarCorkResult) String

func (m *AxelarCorkResult) String() string

func (*AxelarCorkResult) Unmarshal

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

func (*AxelarCorkResult) ValidateBasic

func (c *AxelarCorkResult) ValidateBasic() error

func (*AxelarCorkResult) XXX_DiscardUnknown

func (m *AxelarCorkResult) XXX_DiscardUnknown()

func (*AxelarCorkResult) XXX_Marshal

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

func (*AxelarCorkResult) XXX_Merge

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

func (*AxelarCorkResult) XXX_Size

func (m *AxelarCorkResult) XXX_Size() int

func (*AxelarCorkResult) XXX_Unmarshal

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

type AxelarCorkResults

type AxelarCorkResults struct {
	CorkResults []*AxelarCorkResult `protobuf:"bytes,1,rep,name=cork_results,json=corkResults,proto3" json:"cork_results,omitempty"`
}

func (*AxelarCorkResults) Descriptor

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

func (*AxelarCorkResults) GetCorkResults

func (m *AxelarCorkResults) GetCorkResults() []*AxelarCorkResult

func (*AxelarCorkResults) Marshal

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

func (*AxelarCorkResults) MarshalTo

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

func (*AxelarCorkResults) MarshalToSizedBuffer

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

func (*AxelarCorkResults) ProtoMessage

func (*AxelarCorkResults) ProtoMessage()

func (*AxelarCorkResults) Reset

func (m *AxelarCorkResults) Reset()

func (*AxelarCorkResults) Size

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

func (*AxelarCorkResults) String

func (m *AxelarCorkResults) String() string

func (*AxelarCorkResults) Unmarshal

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

func (*AxelarCorkResults) XXX_DiscardUnknown

func (m *AxelarCorkResults) XXX_DiscardUnknown()

func (*AxelarCorkResults) XXX_Marshal

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

func (*AxelarCorkResults) XXX_Merge

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

func (*AxelarCorkResults) XXX_Size

func (m *AxelarCorkResults) XXX_Size() int

func (*AxelarCorkResults) XXX_Unmarshal

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

type AxelarScheduledCorkProposal

type AxelarScheduledCorkProposal struct {
	Title                 string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description           string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	BlockHeight           uint64 `protobuf:"varint,3,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
	ChainId               uint64 `protobuf:"varint,4,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	TargetContractAddress string `` /* 126-byte string literal not displayed */
	// The JSON representation of a ScheduleRequest defined in the Steward protos
	//
	// Example: The following is the JSON form of a ScheduleRequest containing a steward.v2.cellar_v1.TrustPosition
	// message, which maps to the `trustPosition(address)` function of the the V1 Cellar contract.
	//
	//	{
	//	  "cellar_id": "0x1234567890000000000000000000000000000000",
	//	  "cellar_v1": {
	//	    "trust_position": {
	//	      "erc20_address": "0x1234567890000000000000000000000000000000"
	//	    }
	//	  },
	//	  "block_height": 1000000
	//	}
	//
	// You can use the Steward CLI to generate the required JSON rather than constructing it by hand
	// https://github.com/peggyjv/steward
	ContractCallProtoJson string `` /* 128-byte string literal not displayed */
	// unix timestamp before which the contract call must be executed.
	// enforced by the Axelar proxy contract
	Deadline uint64 `protobuf:"varint,7,opt,name=deadline,proto3" json:"deadline,omitempty"`
}

func NewAxelarScheduledCorkProposal

func NewAxelarScheduledCorkProposal(title string, description string, blockHeight uint64, chainID uint64, targetContractAddress string, contractCallProtoJSON string, deadline uint64) *AxelarScheduledCorkProposal

func (*AxelarScheduledCorkProposal) Descriptor

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

func (*AxelarScheduledCorkProposal) GetBlockHeight

func (m *AxelarScheduledCorkProposal) GetBlockHeight() uint64

func (*AxelarScheduledCorkProposal) GetChainId

func (m *AxelarScheduledCorkProposal) GetChainId() uint64

func (*AxelarScheduledCorkProposal) GetContractCallProtoJson

func (m *AxelarScheduledCorkProposal) GetContractCallProtoJson() string

func (*AxelarScheduledCorkProposal) GetDeadline

func (m *AxelarScheduledCorkProposal) GetDeadline() uint64

func (*AxelarScheduledCorkProposal) GetDescription

func (m *AxelarScheduledCorkProposal) GetDescription() string

func (*AxelarScheduledCorkProposal) GetTargetContractAddress

func (m *AxelarScheduledCorkProposal) GetTargetContractAddress() string

func (*AxelarScheduledCorkProposal) GetTitle

func (m *AxelarScheduledCorkProposal) GetTitle() string

func (*AxelarScheduledCorkProposal) Marshal

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

func (*AxelarScheduledCorkProposal) MarshalTo

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

func (*AxelarScheduledCorkProposal) MarshalToSizedBuffer

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

func (*AxelarScheduledCorkProposal) ProposalRoute

func (m *AxelarScheduledCorkProposal) ProposalRoute() string

func (*AxelarScheduledCorkProposal) ProposalType

func (m *AxelarScheduledCorkProposal) ProposalType() string

func (*AxelarScheduledCorkProposal) ProtoMessage

func (*AxelarScheduledCorkProposal) ProtoMessage()

func (*AxelarScheduledCorkProposal) Reset

func (m *AxelarScheduledCorkProposal) Reset()

func (*AxelarScheduledCorkProposal) Size

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

func (*AxelarScheduledCorkProposal) String

func (m *AxelarScheduledCorkProposal) String() string

func (*AxelarScheduledCorkProposal) Unmarshal

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

func (*AxelarScheduledCorkProposal) ValidateBasic

func (m *AxelarScheduledCorkProposal) ValidateBasic() error

func (*AxelarScheduledCorkProposal) XXX_DiscardUnknown

func (m *AxelarScheduledCorkProposal) XXX_DiscardUnknown()

func (*AxelarScheduledCorkProposal) XXX_Marshal

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

func (*AxelarScheduledCorkProposal) XXX_Merge

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

func (*AxelarScheduledCorkProposal) XXX_Size

func (m *AxelarScheduledCorkProposal) XXX_Size() int

func (*AxelarScheduledCorkProposal) XXX_Unmarshal

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

type AxelarScheduledCorkProposalWithDeposit

type AxelarScheduledCorkProposalWithDeposit struct {
	Title                 string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description           string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	BlockHeight           uint64 `protobuf:"varint,3,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
	ChainId               uint64 `protobuf:"varint,4,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	TargetContractAddress string `` /* 126-byte string literal not displayed */
	ContractCallProtoJson string `` /* 128-byte string literal not displayed */
	Deadline              uint64 `protobuf:"varint,7,opt,name=deadline,proto3" json:"deadline,omitempty"`
	Deposit               string `protobuf:"bytes,8,opt,name=deposit,proto3" json:"deposit,omitempty"`
}

AxelarScheduledCorkProposalWithDeposit is a specific definition for CLI commands

func (*AxelarScheduledCorkProposalWithDeposit) Descriptor

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

func (*AxelarScheduledCorkProposalWithDeposit) GetBlockHeight

func (m *AxelarScheduledCorkProposalWithDeposit) GetBlockHeight() uint64

func (*AxelarScheduledCorkProposalWithDeposit) GetChainId

func (*AxelarScheduledCorkProposalWithDeposit) GetContractCallProtoJson

func (m *AxelarScheduledCorkProposalWithDeposit) GetContractCallProtoJson() string

func (*AxelarScheduledCorkProposalWithDeposit) GetDeadline

func (*AxelarScheduledCorkProposalWithDeposit) GetDeposit

func (*AxelarScheduledCorkProposalWithDeposit) GetDescription

func (m *AxelarScheduledCorkProposalWithDeposit) GetDescription() string

func (*AxelarScheduledCorkProposalWithDeposit) GetTargetContractAddress

func (m *AxelarScheduledCorkProposalWithDeposit) GetTargetContractAddress() string

func (*AxelarScheduledCorkProposalWithDeposit) GetTitle

func (*AxelarScheduledCorkProposalWithDeposit) Marshal

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

func (*AxelarScheduledCorkProposalWithDeposit) MarshalTo

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

func (*AxelarScheduledCorkProposalWithDeposit) MarshalToSizedBuffer

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

func (*AxelarScheduledCorkProposalWithDeposit) ProtoMessage

func (*AxelarScheduledCorkProposalWithDeposit) Reset

func (*AxelarScheduledCorkProposalWithDeposit) Size

func (*AxelarScheduledCorkProposalWithDeposit) String

func (*AxelarScheduledCorkProposalWithDeposit) Unmarshal

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

func (*AxelarScheduledCorkProposalWithDeposit) XXX_DiscardUnknown

func (m *AxelarScheduledCorkProposalWithDeposit) XXX_DiscardUnknown()

func (*AxelarScheduledCorkProposalWithDeposit) XXX_Marshal

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

func (*AxelarScheduledCorkProposalWithDeposit) XXX_Merge

func (*AxelarScheduledCorkProposalWithDeposit) XXX_Size

func (*AxelarScheduledCorkProposalWithDeposit) XXX_Unmarshal

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

type AxelarUpgradeData

type AxelarUpgradeData struct {
	ChainId                   uint64 `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	Payload                   []byte `protobuf:"bytes,2,opt,name=payload,proto3" json:"payload,omitempty"`
	ExecutableHeightThreshold int64  `` /* 139-byte string literal not displayed */
}

Represents a proxy contract upgrade approved by governance with a delay in execution in case of an error.

func (*AxelarUpgradeData) Descriptor

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

func (*AxelarUpgradeData) GetChainId

func (m *AxelarUpgradeData) GetChainId() uint64

func (*AxelarUpgradeData) GetExecutableHeightThreshold

func (m *AxelarUpgradeData) GetExecutableHeightThreshold() int64

func (*AxelarUpgradeData) GetPayload

func (m *AxelarUpgradeData) GetPayload() []byte

func (*AxelarUpgradeData) Marshal

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

func (*AxelarUpgradeData) MarshalTo

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

func (*AxelarUpgradeData) MarshalToSizedBuffer

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

func (*AxelarUpgradeData) ProtoMessage

func (*AxelarUpgradeData) ProtoMessage()

func (*AxelarUpgradeData) Reset

func (m *AxelarUpgradeData) Reset()

func (*AxelarUpgradeData) Size

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

func (*AxelarUpgradeData) String

func (m *AxelarUpgradeData) String() string

func (*AxelarUpgradeData) Unmarshal

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

func (AxelarUpgradeData) ValidateBasic

func (ud AxelarUpgradeData) ValidateBasic() error

func (*AxelarUpgradeData) XXX_DiscardUnknown

func (m *AxelarUpgradeData) XXX_DiscardUnknown()

func (*AxelarUpgradeData) XXX_Marshal

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

func (*AxelarUpgradeData) XXX_Merge

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

func (*AxelarUpgradeData) XXX_Size

func (m *AxelarUpgradeData) XXX_Size() int

func (*AxelarUpgradeData) XXX_Unmarshal

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

type BankKeeper

type BankKeeper interface {
	GetSupply(ctx sdk.Context, denom string) sdk.Coin
	SendCoinsFromModuleToAccount(ctx sdk.Context, senderModule string, recipientAddr sdk.AccAddress, amt sdk.Coins) error
	SendCoinsFromModuleToModule(ctx sdk.Context, senderModule, recipientModule string, amt sdk.Coins) error
	SendCoinsFromAccountToModule(ctx sdk.Context, senderAddr sdk.AccAddress, recipientModule string, amt sdk.Coins) error
	GetAllBalances(ctx sdk.Context, addr sdk.AccAddress) sdk.Coins
	GetDenomMetaData(ctx sdk.Context, denom string) (banktypes.Metadata, bool)
}

BankKeeper defines the expected bank keeper methods

type CancelAxelarProxyContractUpgradeProposal

type CancelAxelarProxyContractUpgradeProposal struct {
	Title       string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	ChainId     uint64 `protobuf:"varint,3,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
}

func NewCancelAxelarProxyContractUpgradeProposal

func NewCancelAxelarProxyContractUpgradeProposal(title string, description string, chainID uint64) *CancelAxelarProxyContractUpgradeProposal

func (*CancelAxelarProxyContractUpgradeProposal) Descriptor

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

func (*CancelAxelarProxyContractUpgradeProposal) GetChainId

func (*CancelAxelarProxyContractUpgradeProposal) GetDescription

func (*CancelAxelarProxyContractUpgradeProposal) GetTitle

func (*CancelAxelarProxyContractUpgradeProposal) Marshal

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

func (*CancelAxelarProxyContractUpgradeProposal) MarshalTo

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

func (*CancelAxelarProxyContractUpgradeProposal) MarshalToSizedBuffer

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

func (*CancelAxelarProxyContractUpgradeProposal) ProposalRoute

func (*CancelAxelarProxyContractUpgradeProposal) ProposalType

func (*CancelAxelarProxyContractUpgradeProposal) ProtoMessage

func (*CancelAxelarProxyContractUpgradeProposal) Reset

func (*CancelAxelarProxyContractUpgradeProposal) Size

func (*CancelAxelarProxyContractUpgradeProposal) String

func (*CancelAxelarProxyContractUpgradeProposal) Unmarshal

func (*CancelAxelarProxyContractUpgradeProposal) ValidateBasic

func (*CancelAxelarProxyContractUpgradeProposal) XXX_DiscardUnknown

func (m *CancelAxelarProxyContractUpgradeProposal) XXX_DiscardUnknown()

func (*CancelAxelarProxyContractUpgradeProposal) XXX_Marshal

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

func (*CancelAxelarProxyContractUpgradeProposal) XXX_Merge

func (*CancelAxelarProxyContractUpgradeProposal) XXX_Size

func (*CancelAxelarProxyContractUpgradeProposal) XXX_Unmarshal

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

type CancelAxelarProxyContractUpgradeProposalWithDeposit

type CancelAxelarProxyContractUpgradeProposalWithDeposit struct {
	Title       string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	ChainId     uint64 `protobuf:"varint,3,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	Deposit     string `protobuf:"bytes,4,opt,name=deposit,proto3" json:"deposit,omitempty"`
}

func (*CancelAxelarProxyContractUpgradeProposalWithDeposit) Descriptor

func (*CancelAxelarProxyContractUpgradeProposalWithDeposit) GetChainId

func (*CancelAxelarProxyContractUpgradeProposalWithDeposit) GetDeposit

func (*CancelAxelarProxyContractUpgradeProposalWithDeposit) GetDescription

func (*CancelAxelarProxyContractUpgradeProposalWithDeposit) GetTitle

func (*CancelAxelarProxyContractUpgradeProposalWithDeposit) Marshal

func (*CancelAxelarProxyContractUpgradeProposalWithDeposit) MarshalTo

func (*CancelAxelarProxyContractUpgradeProposalWithDeposit) MarshalToSizedBuffer

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

func (*CancelAxelarProxyContractUpgradeProposalWithDeposit) ProtoMessage

func (*CancelAxelarProxyContractUpgradeProposalWithDeposit) Reset

func (*CancelAxelarProxyContractUpgradeProposalWithDeposit) Size

func (*CancelAxelarProxyContractUpgradeProposalWithDeposit) String

func (*CancelAxelarProxyContractUpgradeProposalWithDeposit) Unmarshal

func (*CancelAxelarProxyContractUpgradeProposalWithDeposit) XXX_DiscardUnknown

func (*CancelAxelarProxyContractUpgradeProposalWithDeposit) XXX_Marshal

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

func (*CancelAxelarProxyContractUpgradeProposalWithDeposit) XXX_Merge

func (*CancelAxelarProxyContractUpgradeProposalWithDeposit) XXX_Size

func (*CancelAxelarProxyContractUpgradeProposalWithDeposit) XXX_Unmarshal

type CellarIDSet

type CellarIDSet struct {
	ChainId uint64   `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	Ids     []string `protobuf:"bytes,2,rep,name=ids,proto3" json:"ids,omitempty"`
}

func (*CellarIDSet) Descriptor

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

func (*CellarIDSet) GetChainId

func (m *CellarIDSet) GetChainId() uint64

func (*CellarIDSet) GetIds

func (m *CellarIDSet) GetIds() []string

func (*CellarIDSet) Marshal

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

func (*CellarIDSet) MarshalTo

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

func (*CellarIDSet) MarshalToSizedBuffer

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

func (*CellarIDSet) ProtoMessage

func (*CellarIDSet) ProtoMessage()

func (*CellarIDSet) Reset

func (m *CellarIDSet) Reset()

func (*CellarIDSet) Size

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

func (*CellarIDSet) String

func (m *CellarIDSet) String() string

func (*CellarIDSet) Unmarshal

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

func (*CellarIDSet) ValidateBasic

func (c *CellarIDSet) ValidateBasic() error

func (*CellarIDSet) XXX_DiscardUnknown

func (m *CellarIDSet) XXX_DiscardUnknown()

func (*CellarIDSet) XXX_Marshal

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

func (*CellarIDSet) XXX_Merge

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

func (*CellarIDSet) XXX_Size

func (m *CellarIDSet) XXX_Size() int

func (*CellarIDSet) XXX_Unmarshal

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

type ChainConfiguration

type ChainConfiguration struct {
	Name         string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Id           uint64 `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
	ProxyAddress string `protobuf:"bytes,3,opt,name=proxy_address,json=proxyAddress,proto3" json:"proxy_address,omitempty"`
	// pure token transfers have a fixed fee deducted from the amount sent in the ICS-20 message depending
	// on the asset and destination chain
	// they can be calculated here: https://docs.axelar.dev/resources/mainnet#cross-chain-relayer-gas-fee
	BridgeFees github_com_cosmos_cosmos_sdk_types.Coins `` /* 135-byte string literal not displayed */
}

func (*ChainConfiguration) Descriptor

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

func (*ChainConfiguration) GetBridgeFees

func (*ChainConfiguration) GetId

func (m *ChainConfiguration) GetId() uint64

func (*ChainConfiguration) GetName

func (m *ChainConfiguration) GetName() string

func (*ChainConfiguration) GetProxyAddress

func (m *ChainConfiguration) GetProxyAddress() string

func (*ChainConfiguration) Marshal

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

func (*ChainConfiguration) MarshalTo

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

func (*ChainConfiguration) MarshalToSizedBuffer

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

func (*ChainConfiguration) ProtoMessage

func (*ChainConfiguration) ProtoMessage()

func (*ChainConfiguration) Reset

func (m *ChainConfiguration) Reset()

func (*ChainConfiguration) Size

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

func (*ChainConfiguration) String

func (m *ChainConfiguration) String() string

func (*ChainConfiguration) Unmarshal

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

func (ChainConfiguration) ValidateBasic

func (cc ChainConfiguration) ValidateBasic() error

func (*ChainConfiguration) XXX_DiscardUnknown

func (m *ChainConfiguration) XXX_DiscardUnknown()

func (*ChainConfiguration) XXX_Marshal

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

func (*ChainConfiguration) XXX_Merge

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

func (*ChainConfiguration) XXX_Size

func (m *ChainConfiguration) XXX_Size() int

func (*ChainConfiguration) XXX_Unmarshal

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

type ChainConfigurations

type ChainConfigurations struct {
	Configurations []*ChainConfiguration `protobuf:"bytes,1,rep,name=configurations,proto3" json:"configurations,omitempty"`
}

func (*ChainConfigurations) Descriptor

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

func (*ChainConfigurations) GetConfigurations

func (m *ChainConfigurations) GetConfigurations() []*ChainConfiguration

func (*ChainConfigurations) Marshal

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

func (*ChainConfigurations) MarshalTo

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

func (*ChainConfigurations) MarshalToSizedBuffer

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

func (*ChainConfigurations) ProtoMessage

func (*ChainConfigurations) ProtoMessage()

func (*ChainConfigurations) Reset

func (m *ChainConfigurations) Reset()

func (*ChainConfigurations) Size

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

func (*ChainConfigurations) String

func (m *ChainConfigurations) String() string

func (*ChainConfigurations) Unmarshal

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

func (*ChainConfigurations) XXX_DiscardUnknown

func (m *ChainConfigurations) XXX_DiscardUnknown()

func (*ChainConfigurations) XXX_Marshal

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

func (*ChainConfigurations) XXX_Merge

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

func (*ChainConfigurations) XXX_Size

func (m *ChainConfigurations) XXX_Size() int

func (*ChainConfigurations) XXX_Unmarshal

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

type ChannelKeeper

type ChannelKeeper interface {
	GetChannel(ctx sdk.Context, portID string, channelID string) (channeltypes.Channel, bool)
	GetChannelClientState(ctx sdk.Context, portID string, channelID string) (string, ibcexported.ClientState, error)
}

ChannelKeeper defines the channel contract that must be fulfilled when creating a x/ratelimit keeper.

type DistributionKeeper

type DistributionKeeper interface {
	GetFeePool(ctx sdk.Context) (feePool distributiontypes.FeePool)
	SetFeePool(ctx sdk.Context, feePool distributiontypes.FeePool)
}

type Fee

type Fee struct {
	Amount    string `json:"amount"`
	Recipient string `json:"recipient"`
}

type GenesisState

type GenesisState struct {
	Params                   *Params                    `protobuf:"bytes,1,opt,name=params,proto3" json:"params,omitempty"`
	ChainConfigurations      ChainConfigurations        `protobuf:"bytes,2,opt,name=chain_configurations,json=chainConfigurations,proto3" json:"chain_configurations"`
	CellarIds                []*CellarIDSet             `protobuf:"bytes,3,rep,name=cellar_ids,json=cellarIds,proto3" json:"cellar_ids,omitempty"`
	ScheduledCorks           *ScheduledAxelarCorks      `protobuf:"bytes,4,opt,name=scheduled_corks,json=scheduledCorks,proto3" json:"scheduled_corks,omitempty"`
	CorkResults              *AxelarCorkResults         `protobuf:"bytes,5,opt,name=cork_results,json=corkResults,proto3" json:"cork_results,omitempty"`
	AxelarContractCallNonces []*AxelarContractCallNonce `` /* 137-byte string literal not displayed */
	AxelarUpgradeData        []*AxelarUpgradeData       `protobuf:"bytes,7,rep,name=axelar_upgrade_data,json=axelarUpgradeData,proto3" json:"axelar_upgrade_data,omitempty"`
}

GenesisState - all cork state that must be provided at genesis

func DefaultGenesisState

func DefaultGenesisState() GenesisState

DefaultGenesisState get raw genesis raw message for testing

func (*GenesisState) Descriptor

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

func (*GenesisState) GetAxelarContractCallNonces

func (m *GenesisState) GetAxelarContractCallNonces() []*AxelarContractCallNonce

func (*GenesisState) GetAxelarUpgradeData

func (m *GenesisState) GetAxelarUpgradeData() []*AxelarUpgradeData

func (*GenesisState) GetCellarIds

func (m *GenesisState) GetCellarIds() []*CellarIDSet

func (*GenesisState) GetChainConfigurations

func (m *GenesisState) GetChainConfigurations() ChainConfigurations

func (*GenesisState) GetCorkResults

func (m *GenesisState) GetCorkResults() *AxelarCorkResults

func (*GenesisState) GetParams

func (m *GenesisState) GetParams() *Params

func (*GenesisState) GetScheduledCorks

func (m *GenesisState) GetScheduledCorks() *ScheduledAxelarCorks

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 (gs GenesisState) Validate() error

Validate performs a basic stateless validation of the genesis fields.

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 GravityKeeper

type GravityKeeper interface {
	GetOrchestratorValidatorAddress(ctx sdk.Context, orchAddr sdk.AccAddress) sdk.ValAddress
}

GravityKeeper defines the expected gravity keeper methods

type ICS4Wrapper

type ICS4Wrapper interface {
	WriteAcknowledgement(ctx sdk.Context, chanCap *capabilitytypes.Capability, packet ibcexported.PacketI, acknowledgement ibcexported.Acknowledgement) error
	SendPacket(ctx sdk.Context, chanCap *capabilitytypes.Capability, sourcePort string, sourceChannel string, timeoutHeight clienttypes.Height, timeoutTimestamp uint64, data []byte) (sequence uint64, err error)
	GetAppVersion(ctx sdk.Context, portID string, channelID string) (string, bool)
}

type MsgBumpAxelarCorkGasRequest

type MsgBumpAxelarCorkGasRequest struct {
	Signer    string     `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"`
	Token     types.Coin `protobuf:"bytes,2,opt,name=token,proto3" json:"token"`
	MessageId string     `protobuf:"bytes,3,opt,name=message_id,json=messageId,proto3" json:"message_id,omitempty"`
}

func NewMsgBumpAxelarCorkGasRequest

func NewMsgBumpAxelarCorkGasRequest(signer sdk.AccAddress, token sdk.Coin, messageID string) (*MsgBumpAxelarCorkGasRequest, error)

NewMsgBumpAxelarCorkGasRequest returns a new MsgBumpAxelarCorkGasRequest

func (*MsgBumpAxelarCorkGasRequest) Descriptor

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

func (*MsgBumpAxelarCorkGasRequest) GetMessageId

func (m *MsgBumpAxelarCorkGasRequest) GetMessageId() string

func (*MsgBumpAxelarCorkGasRequest) GetSignBytes

func (m *MsgBumpAxelarCorkGasRequest) GetSignBytes() []byte

GetSignBytes implements sdk.Msg

func (*MsgBumpAxelarCorkGasRequest) GetSigner

func (m *MsgBumpAxelarCorkGasRequest) GetSigner() string

func (*MsgBumpAxelarCorkGasRequest) GetSigners

func (m *MsgBumpAxelarCorkGasRequest) GetSigners() []sdk.AccAddress

GetSigners implements sdk.Msg

func (*MsgBumpAxelarCorkGasRequest) GetToken

func (m *MsgBumpAxelarCorkGasRequest) GetToken() types.Coin

func (*MsgBumpAxelarCorkGasRequest) Marshal

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

func (*MsgBumpAxelarCorkGasRequest) MarshalTo

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

func (*MsgBumpAxelarCorkGasRequest) MarshalToSizedBuffer

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

func (*MsgBumpAxelarCorkGasRequest) MustGetSigner

func (m *MsgBumpAxelarCorkGasRequest) MustGetSigner() sdk.AccAddress

MustGetSigner returns the signer address

func (*MsgBumpAxelarCorkGasRequest) ProtoMessage

func (*MsgBumpAxelarCorkGasRequest) ProtoMessage()

func (*MsgBumpAxelarCorkGasRequest) Reset

func (m *MsgBumpAxelarCorkGasRequest) Reset()

func (*MsgBumpAxelarCorkGasRequest) Route

Route implements sdk.Msg

func (*MsgBumpAxelarCorkGasRequest) Size

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

func (*MsgBumpAxelarCorkGasRequest) String

func (m *MsgBumpAxelarCorkGasRequest) String() string

func (*MsgBumpAxelarCorkGasRequest) Type

Type implements sdk.Msg

func (*MsgBumpAxelarCorkGasRequest) Unmarshal

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

func (*MsgBumpAxelarCorkGasRequest) ValidateBasic

func (m *MsgBumpAxelarCorkGasRequest) ValidateBasic() error

ValidateBasic implements sdk.Msg

func (*MsgBumpAxelarCorkGasRequest) XXX_DiscardUnknown

func (m *MsgBumpAxelarCorkGasRequest) XXX_DiscardUnknown()

func (*MsgBumpAxelarCorkGasRequest) XXX_Marshal

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

func (*MsgBumpAxelarCorkGasRequest) XXX_Merge

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

func (*MsgBumpAxelarCorkGasRequest) XXX_Size

func (m *MsgBumpAxelarCorkGasRequest) XXX_Size() int

func (*MsgBumpAxelarCorkGasRequest) XXX_Unmarshal

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

type MsgBumpAxelarCorkGasResponse

type MsgBumpAxelarCorkGasResponse struct {
}

func (*MsgBumpAxelarCorkGasResponse) Descriptor

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

func (*MsgBumpAxelarCorkGasResponse) Marshal

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

func (*MsgBumpAxelarCorkGasResponse) MarshalTo

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

func (*MsgBumpAxelarCorkGasResponse) MarshalToSizedBuffer

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

func (*MsgBumpAxelarCorkGasResponse) ProtoMessage

func (*MsgBumpAxelarCorkGasResponse) ProtoMessage()

func (*MsgBumpAxelarCorkGasResponse) Reset

func (m *MsgBumpAxelarCorkGasResponse) Reset()

func (*MsgBumpAxelarCorkGasResponse) Size

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

func (*MsgBumpAxelarCorkGasResponse) String

func (*MsgBumpAxelarCorkGasResponse) Unmarshal

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

func (*MsgBumpAxelarCorkGasResponse) XXX_DiscardUnknown

func (m *MsgBumpAxelarCorkGasResponse) XXX_DiscardUnknown()

func (*MsgBumpAxelarCorkGasResponse) XXX_Marshal

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

func (*MsgBumpAxelarCorkGasResponse) XXX_Merge

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

func (*MsgBumpAxelarCorkGasResponse) XXX_Size

func (m *MsgBumpAxelarCorkGasResponse) XXX_Size() int

func (*MsgBumpAxelarCorkGasResponse) XXX_Unmarshal

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

type MsgCancelAxelarCorkRequest

type MsgCancelAxelarCorkRequest struct {
	Signer                string `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"`
	ChainId               uint64 `protobuf:"varint,2,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	TargetContractAddress string `` /* 126-byte string literal not displayed */
}

func NewMsgCancelAxelarCorkRequest

func NewMsgCancelAxelarCorkRequest(signer sdk.AccAddress, chainID uint64, address common.Address) (*MsgCancelAxelarCorkRequest, error)

NewMsgCancelAxelarCorkRequest returns a new MsgCancelAxelarCorkRequest

func (*MsgCancelAxelarCorkRequest) Descriptor

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

func (*MsgCancelAxelarCorkRequest) GetChainId

func (m *MsgCancelAxelarCorkRequest) GetChainId() uint64

func (*MsgCancelAxelarCorkRequest) GetSignBytes

func (m *MsgCancelAxelarCorkRequest) GetSignBytes() []byte

GetSignBytes implements sdk.Msg

func (*MsgCancelAxelarCorkRequest) GetSigner

func (m *MsgCancelAxelarCorkRequest) GetSigner() string

func (*MsgCancelAxelarCorkRequest) GetSigners

func (m *MsgCancelAxelarCorkRequest) GetSigners() []sdk.AccAddress

GetSigners implements sdk.Msg

func (*MsgCancelAxelarCorkRequest) GetTargetContractAddress

func (m *MsgCancelAxelarCorkRequest) GetTargetContractAddress() string

func (*MsgCancelAxelarCorkRequest) Marshal

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

func (*MsgCancelAxelarCorkRequest) MarshalTo

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

func (*MsgCancelAxelarCorkRequest) MarshalToSizedBuffer

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

func (*MsgCancelAxelarCorkRequest) MustGetSigner

func (m *MsgCancelAxelarCorkRequest) MustGetSigner() sdk.AccAddress

MustGetSigner returns the signer address

func (*MsgCancelAxelarCorkRequest) ProtoMessage

func (*MsgCancelAxelarCorkRequest) ProtoMessage()

func (*MsgCancelAxelarCorkRequest) Reset

func (m *MsgCancelAxelarCorkRequest) Reset()

func (*MsgCancelAxelarCorkRequest) Route

Route implements sdk.Msg

func (*MsgCancelAxelarCorkRequest) Size

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

func (*MsgCancelAxelarCorkRequest) String

func (m *MsgCancelAxelarCorkRequest) String() string

func (*MsgCancelAxelarCorkRequest) Type

Type implements sdk.Msg

func (*MsgCancelAxelarCorkRequest) Unmarshal

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

func (*MsgCancelAxelarCorkRequest) ValidateBasic

func (m *MsgCancelAxelarCorkRequest) ValidateBasic() error

ValidateBasic implements sdk.Msg

func (*MsgCancelAxelarCorkRequest) XXX_DiscardUnknown

func (m *MsgCancelAxelarCorkRequest) XXX_DiscardUnknown()

func (*MsgCancelAxelarCorkRequest) XXX_Marshal

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

func (*MsgCancelAxelarCorkRequest) XXX_Merge

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

func (*MsgCancelAxelarCorkRequest) XXX_Size

func (m *MsgCancelAxelarCorkRequest) XXX_Size() int

func (*MsgCancelAxelarCorkRequest) XXX_Unmarshal

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

type MsgCancelAxelarCorkResponse

type MsgCancelAxelarCorkResponse struct {
}

func (*MsgCancelAxelarCorkResponse) Descriptor

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

func (*MsgCancelAxelarCorkResponse) Marshal

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

func (*MsgCancelAxelarCorkResponse) MarshalTo

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

func (*MsgCancelAxelarCorkResponse) MarshalToSizedBuffer

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

func (*MsgCancelAxelarCorkResponse) ProtoMessage

func (*MsgCancelAxelarCorkResponse) ProtoMessage()

func (*MsgCancelAxelarCorkResponse) Reset

func (m *MsgCancelAxelarCorkResponse) Reset()

func (*MsgCancelAxelarCorkResponse) Size

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

func (*MsgCancelAxelarCorkResponse) String

func (m *MsgCancelAxelarCorkResponse) String() string

func (*MsgCancelAxelarCorkResponse) Unmarshal

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

func (*MsgCancelAxelarCorkResponse) XXX_DiscardUnknown

func (m *MsgCancelAxelarCorkResponse) XXX_DiscardUnknown()

func (*MsgCancelAxelarCorkResponse) XXX_Marshal

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

func (*MsgCancelAxelarCorkResponse) XXX_Merge

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

func (*MsgCancelAxelarCorkResponse) XXX_Size

func (m *MsgCancelAxelarCorkResponse) XXX_Size() int

func (*MsgCancelAxelarCorkResponse) XXX_Unmarshal

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

type MsgClient

MsgClient is the client API for Msg service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewMsgClient

func NewMsgClient(cc grpc1.ClientConn) MsgClient

type MsgRelayAxelarCorkRequest

type MsgRelayAxelarCorkRequest struct {
	Signer                string     `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"`
	Token                 types.Coin `protobuf:"bytes,2,opt,name=token,proto3" json:"token"`
	Fee                   uint64     `protobuf:"varint,3,opt,name=fee,proto3" json:"fee,omitempty"`
	ChainId               uint64     `protobuf:"varint,4,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	TargetContractAddress string     `` /* 126-byte string literal not displayed */
}

func NewMsgRelayAxelarCorkRequest

func NewMsgRelayAxelarCorkRequest(signer sdk.Address, token sdk.Coin, fee uint64, chainID uint64, address common.Address) (*MsgRelayAxelarCorkRequest, error)

NewMsgRelayAxelarCorkRequest returns a new MsgRelayAxelarCorkRequest

func (*MsgRelayAxelarCorkRequest) Descriptor

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

func (*MsgRelayAxelarCorkRequest) GetChainId

func (m *MsgRelayAxelarCorkRequest) GetChainId() uint64

func (*MsgRelayAxelarCorkRequest) GetFee

func (m *MsgRelayAxelarCorkRequest) GetFee() uint64

func (*MsgRelayAxelarCorkRequest) GetSignBytes

func (m *MsgRelayAxelarCorkRequest) GetSignBytes() []byte

GetSignBytes implements sdk.Msg

func (*MsgRelayAxelarCorkRequest) GetSigner

func (m *MsgRelayAxelarCorkRequest) GetSigner() string

func (*MsgRelayAxelarCorkRequest) GetSigners

func (m *MsgRelayAxelarCorkRequest) GetSigners() []sdk.AccAddress

GetSigners implements sdk.Msg

func (*MsgRelayAxelarCorkRequest) GetTargetContractAddress

func (m *MsgRelayAxelarCorkRequest) GetTargetContractAddress() string

func (*MsgRelayAxelarCorkRequest) GetToken

func (m *MsgRelayAxelarCorkRequest) GetToken() types.Coin

func (*MsgRelayAxelarCorkRequest) Marshal

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

func (*MsgRelayAxelarCorkRequest) MarshalTo

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

func (*MsgRelayAxelarCorkRequest) MarshalToSizedBuffer

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

func (*MsgRelayAxelarCorkRequest) MustGetSigner

func (m *MsgRelayAxelarCorkRequest) MustGetSigner() sdk.AccAddress

MustGetSigner returns the signer address

func (*MsgRelayAxelarCorkRequest) ProtoMessage

func (*MsgRelayAxelarCorkRequest) ProtoMessage()

func (*MsgRelayAxelarCorkRequest) Reset

func (m *MsgRelayAxelarCorkRequest) Reset()

func (*MsgRelayAxelarCorkRequest) Route

func (m *MsgRelayAxelarCorkRequest) Route() string

Route implements sdk.Msg

func (*MsgRelayAxelarCorkRequest) Size

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

func (*MsgRelayAxelarCorkRequest) String

func (m *MsgRelayAxelarCorkRequest) String() string

func (*MsgRelayAxelarCorkRequest) Type

Type implements sdk.Msg

func (*MsgRelayAxelarCorkRequest) Unmarshal

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

func (*MsgRelayAxelarCorkRequest) ValidateBasic

func (m *MsgRelayAxelarCorkRequest) ValidateBasic() error

ValidateBasic implements sdk.Msg

func (*MsgRelayAxelarCorkRequest) XXX_DiscardUnknown

func (m *MsgRelayAxelarCorkRequest) XXX_DiscardUnknown()

func (*MsgRelayAxelarCorkRequest) XXX_Marshal

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

func (*MsgRelayAxelarCorkRequest) XXX_Merge

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

func (*MsgRelayAxelarCorkRequest) XXX_Size

func (m *MsgRelayAxelarCorkRequest) XXX_Size() int

func (*MsgRelayAxelarCorkRequest) XXX_Unmarshal

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

type MsgRelayAxelarCorkResponse

type MsgRelayAxelarCorkResponse struct {
}

func (*MsgRelayAxelarCorkResponse) Descriptor

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

func (*MsgRelayAxelarCorkResponse) Marshal

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

func (*MsgRelayAxelarCorkResponse) MarshalTo

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

func (*MsgRelayAxelarCorkResponse) MarshalToSizedBuffer

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

func (*MsgRelayAxelarCorkResponse) ProtoMessage

func (*MsgRelayAxelarCorkResponse) ProtoMessage()

func (*MsgRelayAxelarCorkResponse) Reset

func (m *MsgRelayAxelarCorkResponse) Reset()

func (*MsgRelayAxelarCorkResponse) Size

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

func (*MsgRelayAxelarCorkResponse) String

func (m *MsgRelayAxelarCorkResponse) String() string

func (*MsgRelayAxelarCorkResponse) Unmarshal

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

func (*MsgRelayAxelarCorkResponse) XXX_DiscardUnknown

func (m *MsgRelayAxelarCorkResponse) XXX_DiscardUnknown()

func (*MsgRelayAxelarCorkResponse) XXX_Marshal

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

func (*MsgRelayAxelarCorkResponse) XXX_Merge

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

func (*MsgRelayAxelarCorkResponse) XXX_Size

func (m *MsgRelayAxelarCorkResponse) XXX_Size() int

func (*MsgRelayAxelarCorkResponse) XXX_Unmarshal

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

type MsgRelayAxelarProxyUpgradeRequest

type MsgRelayAxelarProxyUpgradeRequest struct {
	Signer  string     `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"`
	Token   types.Coin `protobuf:"bytes,2,opt,name=token,proto3" json:"token"`
	Fee     uint64     `protobuf:"varint,3,opt,name=fee,proto3" json:"fee,omitempty"`
	ChainId uint64     `protobuf:"varint,4,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
}

func NewMsgRelayAxelarProxyUpgradeRequest

func NewMsgRelayAxelarProxyUpgradeRequest(signer sdk.AccAddress, token sdk.Coin, fee uint64, chainID uint64) (*MsgRelayAxelarProxyUpgradeRequest, error)

NewMsgRelayAxelarProxyUpgradeRequest returns a new MsgRelayAxelarProxyUpgradeRequest

func (*MsgRelayAxelarProxyUpgradeRequest) Descriptor

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

func (*MsgRelayAxelarProxyUpgradeRequest) GetChainId

func (m *MsgRelayAxelarProxyUpgradeRequest) GetChainId() uint64

func (*MsgRelayAxelarProxyUpgradeRequest) GetFee

func (*MsgRelayAxelarProxyUpgradeRequest) GetSignBytes

func (m *MsgRelayAxelarProxyUpgradeRequest) GetSignBytes() []byte

GetSignBytes implements sdk.Msg

func (*MsgRelayAxelarProxyUpgradeRequest) GetSigner

func (*MsgRelayAxelarProxyUpgradeRequest) GetSigners

GetSigners implements sdk.Msg

func (*MsgRelayAxelarProxyUpgradeRequest) GetToken

func (*MsgRelayAxelarProxyUpgradeRequest) Marshal

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

func (*MsgRelayAxelarProxyUpgradeRequest) MarshalTo

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

func (*MsgRelayAxelarProxyUpgradeRequest) MarshalToSizedBuffer

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

func (*MsgRelayAxelarProxyUpgradeRequest) MustGetSigner

MustGetSigner returns the signer address

func (*MsgRelayAxelarProxyUpgradeRequest) ProtoMessage

func (*MsgRelayAxelarProxyUpgradeRequest) ProtoMessage()

func (*MsgRelayAxelarProxyUpgradeRequest) Reset

func (*MsgRelayAxelarProxyUpgradeRequest) Route

Route implements sdk.Msg

func (*MsgRelayAxelarProxyUpgradeRequest) Size

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

func (*MsgRelayAxelarProxyUpgradeRequest) String

func (*MsgRelayAxelarProxyUpgradeRequest) Type

Type implements sdk.Msg

func (*MsgRelayAxelarProxyUpgradeRequest) Unmarshal

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

func (*MsgRelayAxelarProxyUpgradeRequest) ValidateBasic

func (m *MsgRelayAxelarProxyUpgradeRequest) ValidateBasic() error

ValidateBasic implements sdk.Msg

func (*MsgRelayAxelarProxyUpgradeRequest) XXX_DiscardUnknown

func (m *MsgRelayAxelarProxyUpgradeRequest) XXX_DiscardUnknown()

func (*MsgRelayAxelarProxyUpgradeRequest) XXX_Marshal

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

func (*MsgRelayAxelarProxyUpgradeRequest) XXX_Merge

func (*MsgRelayAxelarProxyUpgradeRequest) XXX_Size

func (m *MsgRelayAxelarProxyUpgradeRequest) XXX_Size() int

func (*MsgRelayAxelarProxyUpgradeRequest) XXX_Unmarshal

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

type MsgRelayAxelarProxyUpgradeResponse

type MsgRelayAxelarProxyUpgradeResponse struct {
}

func (*MsgRelayAxelarProxyUpgradeResponse) Descriptor

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

func (*MsgRelayAxelarProxyUpgradeResponse) Marshal

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

func (*MsgRelayAxelarProxyUpgradeResponse) MarshalTo

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

func (*MsgRelayAxelarProxyUpgradeResponse) MarshalToSizedBuffer

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

func (*MsgRelayAxelarProxyUpgradeResponse) ProtoMessage

func (*MsgRelayAxelarProxyUpgradeResponse) ProtoMessage()

func (*MsgRelayAxelarProxyUpgradeResponse) Reset

func (*MsgRelayAxelarProxyUpgradeResponse) Size

func (*MsgRelayAxelarProxyUpgradeResponse) String

func (*MsgRelayAxelarProxyUpgradeResponse) Unmarshal

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

func (*MsgRelayAxelarProxyUpgradeResponse) XXX_DiscardUnknown

func (m *MsgRelayAxelarProxyUpgradeResponse) XXX_DiscardUnknown()

func (*MsgRelayAxelarProxyUpgradeResponse) XXX_Marshal

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

func (*MsgRelayAxelarProxyUpgradeResponse) XXX_Merge

func (*MsgRelayAxelarProxyUpgradeResponse) XXX_Size

func (*MsgRelayAxelarProxyUpgradeResponse) XXX_Unmarshal

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

type MsgScheduleAxelarCorkRequest

type MsgScheduleAxelarCorkRequest struct {
	// the scheduled cork
	Cork *AxelarCork `protobuf:"bytes,1,opt,name=cork,proto3" json:"cork,omitempty"`
	// the chain id
	ChainId uint64 `protobuf:"varint,2,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	// the block height that must be reached
	BlockHeight uint64 `protobuf:"varint,3,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
	// signer account address
	Signer string `protobuf:"bytes,4,opt,name=signer,proto3" json:"signer,omitempty"`
}

MsgScheduleCorkRequest - sdk.Msg for scheduling a cork request for on or after a specific block height

func NewMsgScheduleAxelarCorkRequest

func NewMsgScheduleAxelarCorkRequest(chainID uint64, body []byte, address common.Address, deadline uint64, blockHeight uint64, signer sdk.AccAddress) (*MsgScheduleAxelarCorkRequest, error)

NewMsgScheduleAxelarCorkRequest return a new MsgScheduleAxelarCorkRequest

func (*MsgScheduleAxelarCorkRequest) Descriptor

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

func (*MsgScheduleAxelarCorkRequest) GetBlockHeight

func (m *MsgScheduleAxelarCorkRequest) GetBlockHeight() uint64

func (*MsgScheduleAxelarCorkRequest) GetChainId

func (m *MsgScheduleAxelarCorkRequest) GetChainId() uint64

func (*MsgScheduleAxelarCorkRequest) GetCork

func (*MsgScheduleAxelarCorkRequest) GetSignBytes

func (m *MsgScheduleAxelarCorkRequest) GetSignBytes() []byte

GetSignBytes implements sdk.Msg

func (*MsgScheduleAxelarCorkRequest) GetSigner

func (m *MsgScheduleAxelarCorkRequest) GetSigner() string

func (*MsgScheduleAxelarCorkRequest) GetSigners

func (m *MsgScheduleAxelarCorkRequest) GetSigners() []sdk.AccAddress

GetSigners implements sdk.Msg

func (*MsgScheduleAxelarCorkRequest) Marshal

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

func (*MsgScheduleAxelarCorkRequest) MarshalTo

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

func (*MsgScheduleAxelarCorkRequest) MarshalToSizedBuffer

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

func (*MsgScheduleAxelarCorkRequest) MustGetSigner

func (m *MsgScheduleAxelarCorkRequest) MustGetSigner() sdk.AccAddress

MustGetSigner returns the signer address

func (*MsgScheduleAxelarCorkRequest) ProtoMessage

func (*MsgScheduleAxelarCorkRequest) ProtoMessage()

func (*MsgScheduleAxelarCorkRequest) Reset

func (m *MsgScheduleAxelarCorkRequest) Reset()

func (*MsgScheduleAxelarCorkRequest) Route

Route implements sdk.Msg

func (*MsgScheduleAxelarCorkRequest) Size

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

func (*MsgScheduleAxelarCorkRequest) String

func (*MsgScheduleAxelarCorkRequest) Type

Type implements sdk.Msg

func (*MsgScheduleAxelarCorkRequest) Unmarshal

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

func (*MsgScheduleAxelarCorkRequest) ValidateBasic

func (m *MsgScheduleAxelarCorkRequest) ValidateBasic() error

ValidateBasic implements sdk.Msg

func (*MsgScheduleAxelarCorkRequest) XXX_DiscardUnknown

func (m *MsgScheduleAxelarCorkRequest) XXX_DiscardUnknown()

func (*MsgScheduleAxelarCorkRequest) XXX_Marshal

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

func (*MsgScheduleAxelarCorkRequest) XXX_Merge

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

func (*MsgScheduleAxelarCorkRequest) XXX_Size

func (m *MsgScheduleAxelarCorkRequest) XXX_Size() int

func (*MsgScheduleAxelarCorkRequest) XXX_Unmarshal

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

type MsgScheduleAxelarCorkResponse

type MsgScheduleAxelarCorkResponse struct {
	// cork ID
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
}

func (*MsgScheduleAxelarCorkResponse) Descriptor

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

func (*MsgScheduleAxelarCorkResponse) GetId

func (*MsgScheduleAxelarCorkResponse) Marshal

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

func (*MsgScheduleAxelarCorkResponse) MarshalTo

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

func (*MsgScheduleAxelarCorkResponse) MarshalToSizedBuffer

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

func (*MsgScheduleAxelarCorkResponse) ProtoMessage

func (*MsgScheduleAxelarCorkResponse) ProtoMessage()

func (*MsgScheduleAxelarCorkResponse) Reset

func (m *MsgScheduleAxelarCorkResponse) Reset()

func (*MsgScheduleAxelarCorkResponse) Size

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

func (*MsgScheduleAxelarCorkResponse) String

func (*MsgScheduleAxelarCorkResponse) Unmarshal

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

func (*MsgScheduleAxelarCorkResponse) XXX_DiscardUnknown

func (m *MsgScheduleAxelarCorkResponse) XXX_DiscardUnknown()

func (*MsgScheduleAxelarCorkResponse) XXX_Marshal

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

func (*MsgScheduleAxelarCorkResponse) XXX_Merge

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

func (*MsgScheduleAxelarCorkResponse) XXX_Size

func (m *MsgScheduleAxelarCorkResponse) XXX_Size() int

func (*MsgScheduleAxelarCorkResponse) XXX_Unmarshal

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

type Params

type Params struct {
	Enabled           bool   `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty" yaml:"enabled"`
	IbcChannel        string `protobuf:"bytes,2,opt,name=ibc_channel,json=ibcChannel,proto3" json:"ibc_channel,omitempty" yaml:"ibc_channel"`
	IbcPort           string `protobuf:"bytes,3,opt,name=ibc_port,json=ibcPort,proto3" json:"ibc_port,omitempty" yaml:"ibc_port"`
	GmpAccount        string `protobuf:"bytes,4,opt,name=gmp_account,json=gmpAccount,proto3" json:"gmp_account,omitempty" yaml:"gmp_account"`
	ExecutorAccount   string `` /* 130-byte string literal not displayed */
	TimeoutDuration   uint64 `` /* 131-byte string literal not displayed */
	CorkTimeoutBlocks uint64 `` /* 142-byte string literal not displayed */
}

func DefaultParams

func DefaultParams() Params

DefaultParams returns default oracle parameters

func (*Params) Descriptor

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

func (*Params) GetCorkTimeoutBlocks

func (m *Params) GetCorkTimeoutBlocks() uint64

func (*Params) GetEnabled

func (m *Params) GetEnabled() bool

func (*Params) GetExecutorAccount

func (m *Params) GetExecutorAccount() string

func (*Params) GetGmpAccount

func (m *Params) GetGmpAccount() string

func (*Params) GetIbcChannel

func (m *Params) GetIbcChannel() string

func (*Params) GetIbcPort

func (m *Params) GetIbcPort() string

func (*Params) GetTimeoutDuration

func (m *Params) GetTimeoutDuration() uint64

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 (p *Params) ParamSetPairs() paramtypes.ParamSetPairs

ParamSetPairs returns the parameter set pairs.

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) ValidateBasic

func (p *Params) ValidateBasic() error

ValidateBasic performs basic validation on oracle parameters.

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 PubsubKeeper

type PubsubKeeper interface {
	GetPublisher(ctx sdk.Context, publisherDomain string) (publisher pubsubtypes.Publisher, found bool)
	SetDefaultSubscription(ctx sdk.Context, defaultSubscription pubsubtypes.DefaultSubscription)
	DeleteDefaultSubscription(ctx sdk.Context, subscriptionID string)
}

type QueryAxelarContractCallNoncesRequest

type QueryAxelarContractCallNoncesRequest struct {
}

func (*QueryAxelarContractCallNoncesRequest) Descriptor

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

func (*QueryAxelarContractCallNoncesRequest) Marshal

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

func (*QueryAxelarContractCallNoncesRequest) MarshalTo

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

func (*QueryAxelarContractCallNoncesRequest) MarshalToSizedBuffer

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

func (*QueryAxelarContractCallNoncesRequest) ProtoMessage

func (*QueryAxelarContractCallNoncesRequest) ProtoMessage()

func (*QueryAxelarContractCallNoncesRequest) Reset

func (*QueryAxelarContractCallNoncesRequest) Size

func (*QueryAxelarContractCallNoncesRequest) String

func (*QueryAxelarContractCallNoncesRequest) Unmarshal

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

func (*QueryAxelarContractCallNoncesRequest) XXX_DiscardUnknown

func (m *QueryAxelarContractCallNoncesRequest) XXX_DiscardUnknown()

func (*QueryAxelarContractCallNoncesRequest) XXX_Marshal

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

func (*QueryAxelarContractCallNoncesRequest) XXX_Merge

func (*QueryAxelarContractCallNoncesRequest) XXX_Size

func (*QueryAxelarContractCallNoncesRequest) XXX_Unmarshal

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

type QueryAxelarContractCallNoncesResponse

type QueryAxelarContractCallNoncesResponse struct {
	ContractCallNonces []*AxelarContractCallNonce `protobuf:"bytes,1,rep,name=contract_call_nonces,json=contractCallNonces,proto3" json:"contract_call_nonces,omitempty"`
}

func (*QueryAxelarContractCallNoncesResponse) Descriptor

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

func (*QueryAxelarContractCallNoncesResponse) GetContractCallNonces

func (m *QueryAxelarContractCallNoncesResponse) GetContractCallNonces() []*AxelarContractCallNonce

func (*QueryAxelarContractCallNoncesResponse) Marshal

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

func (*QueryAxelarContractCallNoncesResponse) MarshalTo

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

func (*QueryAxelarContractCallNoncesResponse) MarshalToSizedBuffer

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

func (*QueryAxelarContractCallNoncesResponse) ProtoMessage

func (*QueryAxelarContractCallNoncesResponse) ProtoMessage()

func (*QueryAxelarContractCallNoncesResponse) Reset

func (*QueryAxelarContractCallNoncesResponse) Size

func (*QueryAxelarContractCallNoncesResponse) String

func (*QueryAxelarContractCallNoncesResponse) Unmarshal

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

func (*QueryAxelarContractCallNoncesResponse) XXX_DiscardUnknown

func (m *QueryAxelarContractCallNoncesResponse) XXX_DiscardUnknown()

func (*QueryAxelarContractCallNoncesResponse) XXX_Marshal

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

func (*QueryAxelarContractCallNoncesResponse) XXX_Merge

func (*QueryAxelarContractCallNoncesResponse) XXX_Size

func (*QueryAxelarContractCallNoncesResponse) XXX_Unmarshal

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

type QueryAxelarProxyUpgradeDataRequest

type QueryAxelarProxyUpgradeDataRequest struct {
}

func (*QueryAxelarProxyUpgradeDataRequest) Descriptor

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

func (*QueryAxelarProxyUpgradeDataRequest) Marshal

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

func (*QueryAxelarProxyUpgradeDataRequest) MarshalTo

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

func (*QueryAxelarProxyUpgradeDataRequest) MarshalToSizedBuffer

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

func (*QueryAxelarProxyUpgradeDataRequest) ProtoMessage

func (*QueryAxelarProxyUpgradeDataRequest) ProtoMessage()

func (*QueryAxelarProxyUpgradeDataRequest) Reset

func (*QueryAxelarProxyUpgradeDataRequest) Size

func (*QueryAxelarProxyUpgradeDataRequest) String

func (*QueryAxelarProxyUpgradeDataRequest) Unmarshal

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

func (*QueryAxelarProxyUpgradeDataRequest) XXX_DiscardUnknown

func (m *QueryAxelarProxyUpgradeDataRequest) XXX_DiscardUnknown()

func (*QueryAxelarProxyUpgradeDataRequest) XXX_Marshal

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

func (*QueryAxelarProxyUpgradeDataRequest) XXX_Merge

func (*QueryAxelarProxyUpgradeDataRequest) XXX_Size

func (*QueryAxelarProxyUpgradeDataRequest) XXX_Unmarshal

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

type QueryAxelarProxyUpgradeDataResponse

type QueryAxelarProxyUpgradeDataResponse struct {
	ProxyUpgradeData []*AxelarUpgradeData `protobuf:"bytes,1,rep,name=proxy_upgrade_data,json=proxyUpgradeData,proto3" json:"proxy_upgrade_data,omitempty"`
}

func (*QueryAxelarProxyUpgradeDataResponse) Descriptor

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

func (*QueryAxelarProxyUpgradeDataResponse) GetProxyUpgradeData

func (m *QueryAxelarProxyUpgradeDataResponse) GetProxyUpgradeData() []*AxelarUpgradeData

func (*QueryAxelarProxyUpgradeDataResponse) Marshal

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

func (*QueryAxelarProxyUpgradeDataResponse) MarshalTo

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

func (*QueryAxelarProxyUpgradeDataResponse) MarshalToSizedBuffer

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

func (*QueryAxelarProxyUpgradeDataResponse) ProtoMessage

func (*QueryAxelarProxyUpgradeDataResponse) ProtoMessage()

func (*QueryAxelarProxyUpgradeDataResponse) Reset

func (*QueryAxelarProxyUpgradeDataResponse) Size

func (*QueryAxelarProxyUpgradeDataResponse) String

func (*QueryAxelarProxyUpgradeDataResponse) Unmarshal

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

func (*QueryAxelarProxyUpgradeDataResponse) XXX_DiscardUnknown

func (m *QueryAxelarProxyUpgradeDataResponse) XXX_DiscardUnknown()

func (*QueryAxelarProxyUpgradeDataResponse) XXX_Marshal

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

func (*QueryAxelarProxyUpgradeDataResponse) XXX_Merge

func (*QueryAxelarProxyUpgradeDataResponse) XXX_Size

func (*QueryAxelarProxyUpgradeDataResponse) XXX_Unmarshal

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

type QueryCellarIDsByChainIDRequest

type QueryCellarIDsByChainIDRequest struct {
	ChainId uint64 `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
}

QueryCellarIDsByChainIDRequest is the request type for Query/QueryCellarIDsByChainID gRPC method.

func (*QueryCellarIDsByChainIDRequest) Descriptor

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

func (*QueryCellarIDsByChainIDRequest) GetChainId

func (m *QueryCellarIDsByChainIDRequest) GetChainId() uint64

func (*QueryCellarIDsByChainIDRequest) Marshal

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

func (*QueryCellarIDsByChainIDRequest) MarshalTo

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

func (*QueryCellarIDsByChainIDRequest) MarshalToSizedBuffer

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

func (*QueryCellarIDsByChainIDRequest) ProtoMessage

func (*QueryCellarIDsByChainIDRequest) ProtoMessage()

func (*QueryCellarIDsByChainIDRequest) Reset

func (m *QueryCellarIDsByChainIDRequest) Reset()

func (*QueryCellarIDsByChainIDRequest) Size

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

func (*QueryCellarIDsByChainIDRequest) String

func (*QueryCellarIDsByChainIDRequest) Unmarshal

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

func (*QueryCellarIDsByChainIDRequest) XXX_DiscardUnknown

func (m *QueryCellarIDsByChainIDRequest) XXX_DiscardUnknown()

func (*QueryCellarIDsByChainIDRequest) XXX_Marshal

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

func (*QueryCellarIDsByChainIDRequest) XXX_Merge

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

func (*QueryCellarIDsByChainIDRequest) XXX_Size

func (m *QueryCellarIDsByChainIDRequest) XXX_Size() int

func (*QueryCellarIDsByChainIDRequest) XXX_Unmarshal

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

type QueryCellarIDsByChainIDResponse

type QueryCellarIDsByChainIDResponse struct {
	CellarIds []string `protobuf:"bytes,1,rep,name=cellar_ids,json=cellarIds,proto3" json:"cellar_ids,omitempty"`
}

QueryCellarIDsByChainIDResponse is the response type for Query/QueryCellarIDsByChainID gRPC method.

func (*QueryCellarIDsByChainIDResponse) Descriptor

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

func (*QueryCellarIDsByChainIDResponse) GetCellarIds

func (m *QueryCellarIDsByChainIDResponse) GetCellarIds() []string

func (*QueryCellarIDsByChainIDResponse) Marshal

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

func (*QueryCellarIDsByChainIDResponse) MarshalTo

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

func (*QueryCellarIDsByChainIDResponse) MarshalToSizedBuffer

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

func (*QueryCellarIDsByChainIDResponse) ProtoMessage

func (*QueryCellarIDsByChainIDResponse) ProtoMessage()

func (*QueryCellarIDsByChainIDResponse) Reset

func (*QueryCellarIDsByChainIDResponse) Size

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

func (*QueryCellarIDsByChainIDResponse) String

func (*QueryCellarIDsByChainIDResponse) Unmarshal

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

func (*QueryCellarIDsByChainIDResponse) XXX_DiscardUnknown

func (m *QueryCellarIDsByChainIDResponse) XXX_DiscardUnknown()

func (*QueryCellarIDsByChainIDResponse) XXX_Marshal

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

func (*QueryCellarIDsByChainIDResponse) XXX_Merge

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

func (*QueryCellarIDsByChainIDResponse) XXX_Size

func (m *QueryCellarIDsByChainIDResponse) XXX_Size() int

func (*QueryCellarIDsByChainIDResponse) XXX_Unmarshal

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

type QueryCellarIDsRequest

type QueryCellarIDsRequest struct {
}

QueryCellarIDs is the request type for Query/QueryCellarIDs gRPC method.

func (*QueryCellarIDsRequest) Descriptor

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

func (*QueryCellarIDsRequest) Marshal

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

func (*QueryCellarIDsRequest) MarshalTo

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

func (*QueryCellarIDsRequest) MarshalToSizedBuffer

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

func (*QueryCellarIDsRequest) ProtoMessage

func (*QueryCellarIDsRequest) ProtoMessage()

func (*QueryCellarIDsRequest) Reset

func (m *QueryCellarIDsRequest) Reset()

func (*QueryCellarIDsRequest) Size

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

func (*QueryCellarIDsRequest) String

func (m *QueryCellarIDsRequest) String() string

func (*QueryCellarIDsRequest) Unmarshal

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

func (*QueryCellarIDsRequest) XXX_DiscardUnknown

func (m *QueryCellarIDsRequest) XXX_DiscardUnknown()

func (*QueryCellarIDsRequest) XXX_Marshal

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

func (*QueryCellarIDsRequest) XXX_Merge

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

func (*QueryCellarIDsRequest) XXX_Size

func (m *QueryCellarIDsRequest) XXX_Size() int

func (*QueryCellarIDsRequest) XXX_Unmarshal

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

type QueryCellarIDsResponse

type QueryCellarIDsResponse struct {
	CellarIds []*CellarIDSet `protobuf:"bytes,1,rep,name=cellar_ids,json=cellarIds,proto3" json:"cellar_ids,omitempty"`
}

QueryCellarIDsResponse is the response type for Query/QueryCellarIDs gRPC method.

func (*QueryCellarIDsResponse) Descriptor

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

func (*QueryCellarIDsResponse) GetCellarIds

func (m *QueryCellarIDsResponse) GetCellarIds() []*CellarIDSet

func (*QueryCellarIDsResponse) Marshal

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

func (*QueryCellarIDsResponse) MarshalTo

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

func (*QueryCellarIDsResponse) MarshalToSizedBuffer

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

func (*QueryCellarIDsResponse) ProtoMessage

func (*QueryCellarIDsResponse) ProtoMessage()

func (*QueryCellarIDsResponse) Reset

func (m *QueryCellarIDsResponse) Reset()

func (*QueryCellarIDsResponse) Size

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

func (*QueryCellarIDsResponse) String

func (m *QueryCellarIDsResponse) String() string

func (*QueryCellarIDsResponse) Unmarshal

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

func (*QueryCellarIDsResponse) XXX_DiscardUnknown

func (m *QueryCellarIDsResponse) XXX_DiscardUnknown()

func (*QueryCellarIDsResponse) XXX_Marshal

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

func (*QueryCellarIDsResponse) XXX_Merge

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

func (*QueryCellarIDsResponse) XXX_Size

func (m *QueryCellarIDsResponse) XXX_Size() int

func (*QueryCellarIDsResponse) XXX_Unmarshal

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

type QueryChainConfigurationsRequest

type QueryChainConfigurationsRequest struct {
}

func (*QueryChainConfigurationsRequest) Descriptor

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

func (*QueryChainConfigurationsRequest) Marshal

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

func (*QueryChainConfigurationsRequest) MarshalTo

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

func (*QueryChainConfigurationsRequest) MarshalToSizedBuffer

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

func (*QueryChainConfigurationsRequest) ProtoMessage

func (*QueryChainConfigurationsRequest) ProtoMessage()

func (*QueryChainConfigurationsRequest) Reset

func (*QueryChainConfigurationsRequest) Size

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

func (*QueryChainConfigurationsRequest) String

func (*QueryChainConfigurationsRequest) Unmarshal

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

func (*QueryChainConfigurationsRequest) XXX_DiscardUnknown

func (m *QueryChainConfigurationsRequest) XXX_DiscardUnknown()

func (*QueryChainConfigurationsRequest) XXX_Marshal

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

func (*QueryChainConfigurationsRequest) XXX_Merge

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

func (*QueryChainConfigurationsRequest) XXX_Size

func (m *QueryChainConfigurationsRequest) XXX_Size() int

func (*QueryChainConfigurationsRequest) XXX_Unmarshal

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

type QueryChainConfigurationsResponse

type QueryChainConfigurationsResponse struct {
	Configurations []*ChainConfiguration `protobuf:"bytes,1,rep,name=configurations,proto3" json:"configurations,omitempty"`
}

func (*QueryChainConfigurationsResponse) Descriptor

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

func (*QueryChainConfigurationsResponse) GetConfigurations

func (m *QueryChainConfigurationsResponse) GetConfigurations() []*ChainConfiguration

func (*QueryChainConfigurationsResponse) Marshal

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

func (*QueryChainConfigurationsResponse) MarshalTo

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

func (*QueryChainConfigurationsResponse) MarshalToSizedBuffer

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

func (*QueryChainConfigurationsResponse) ProtoMessage

func (*QueryChainConfigurationsResponse) ProtoMessage()

func (*QueryChainConfigurationsResponse) Reset

func (*QueryChainConfigurationsResponse) Size

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

func (*QueryChainConfigurationsResponse) String

func (*QueryChainConfigurationsResponse) Unmarshal

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

func (*QueryChainConfigurationsResponse) XXX_DiscardUnknown

func (m *QueryChainConfigurationsResponse) XXX_DiscardUnknown()

func (*QueryChainConfigurationsResponse) XXX_Marshal

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

func (*QueryChainConfigurationsResponse) XXX_Merge

func (*QueryChainConfigurationsResponse) XXX_Size

func (m *QueryChainConfigurationsResponse) XXX_Size() int

func (*QueryChainConfigurationsResponse) XXX_Unmarshal

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

type QueryClient

type QueryClient interface {
	// QueryParams queries the axelar cork module parameters.
	QueryParams(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error)
	// QueryCellarIDs queries approved cellar ids of all supported chains
	QueryCellarIDs(ctx context.Context, in *QueryCellarIDsRequest, opts ...grpc.CallOption) (*QueryCellarIDsResponse, error)
	// QueryCellarIDsByChainID returns all cellars and current tick ranges
	QueryCellarIDsByChainID(ctx context.Context, in *QueryCellarIDsByChainIDRequest, opts ...grpc.CallOption) (*QueryCellarIDsByChainIDResponse, error)
	// QueryScheduledCorks returns all scheduled corks
	QueryScheduledCorks(ctx context.Context, in *QueryScheduledCorksRequest, opts ...grpc.CallOption) (*QueryScheduledCorksResponse, error)
	// QueryScheduledBlockHeights returns all scheduled block heights
	QueryScheduledBlockHeights(ctx context.Context, in *QueryScheduledBlockHeightsRequest, opts ...grpc.CallOption) (*QueryScheduledBlockHeightsResponse, error)
	// QueryScheduledCorks returns all scheduled corks at a block height
	QueryScheduledCorksByBlockHeight(ctx context.Context, in *QueryScheduledCorksByBlockHeightRequest, opts ...grpc.CallOption) (*QueryScheduledCorksByBlockHeightResponse, error)
	// QueryScheduledCorks returns all scheduled corks with the specified ID
	QueryScheduledCorksByID(ctx context.Context, in *QueryScheduledCorksByIDRequest, opts ...grpc.CallOption) (*QueryScheduledCorksByIDResponse, error)
	QueryCorkResult(ctx context.Context, in *QueryCorkResultRequest, opts ...grpc.CallOption) (*QueryCorkResultResponse, error)
	QueryCorkResults(ctx context.Context, in *QueryCorkResultsRequest, opts ...grpc.CallOption) (*QueryCorkResultsResponse, error)
	QueryChainConfigurations(ctx context.Context, in *QueryChainConfigurationsRequest, opts ...grpc.CallOption) (*QueryChainConfigurationsResponse, error)
	QueryAxelarContractCallNonces(ctx context.Context, in *QueryAxelarContractCallNoncesRequest, opts ...grpc.CallOption) (*QueryAxelarContractCallNoncesResponse, error)
	QueryAxelarProxyUpgradeData(ctx context.Context, in *QueryAxelarProxyUpgradeDataRequest, opts ...grpc.CallOption) (*QueryAxelarProxyUpgradeDataResponse, error)
	QueryWinningAxelarCork(ctx context.Context, in *QueryWinningAxelarCorkRequest, opts ...grpc.CallOption) (*QueryWinningAxelarCorkResponse, error)
	QueryWinningAxelarCorks(ctx context.Context, in *QueryWinningAxelarCorksRequest, opts ...grpc.CallOption) (*QueryWinningAxelarCorksResponse, error)
}

QueryClient is the client API for Query service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewQueryClient

func NewQueryClient(cc grpc1.ClientConn) QueryClient

type QueryCorkResultRequest

type QueryCorkResultRequest struct {
	Id      string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	ChainId uint64 `protobuf:"varint,2,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
}

func (*QueryCorkResultRequest) Descriptor

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

func (*QueryCorkResultRequest) GetChainId

func (m *QueryCorkResultRequest) GetChainId() uint64

func (*QueryCorkResultRequest) GetId

func (m *QueryCorkResultRequest) GetId() string

func (*QueryCorkResultRequest) Marshal

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

func (*QueryCorkResultRequest) MarshalTo

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

func (*QueryCorkResultRequest) MarshalToSizedBuffer

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

func (*QueryCorkResultRequest) ProtoMessage

func (*QueryCorkResultRequest) ProtoMessage()

func (*QueryCorkResultRequest) Reset

func (m *QueryCorkResultRequest) Reset()

func (*QueryCorkResultRequest) Size

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

func (*QueryCorkResultRequest) String

func (m *QueryCorkResultRequest) String() string

func (*QueryCorkResultRequest) Unmarshal

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

func (*QueryCorkResultRequest) XXX_DiscardUnknown

func (m *QueryCorkResultRequest) XXX_DiscardUnknown()

func (*QueryCorkResultRequest) XXX_Marshal

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

func (*QueryCorkResultRequest) XXX_Merge

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

func (*QueryCorkResultRequest) XXX_Size

func (m *QueryCorkResultRequest) XXX_Size() int

func (*QueryCorkResultRequest) XXX_Unmarshal

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

type QueryCorkResultResponse

type QueryCorkResultResponse struct {
	CorkResult *AxelarCorkResult `protobuf:"bytes,1,opt,name=corkResult,proto3" json:"corkResult,omitempty"`
}

func (*QueryCorkResultResponse) Descriptor

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

func (*QueryCorkResultResponse) GetCorkResult

func (m *QueryCorkResultResponse) GetCorkResult() *AxelarCorkResult

func (*QueryCorkResultResponse) Marshal

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

func (*QueryCorkResultResponse) MarshalTo

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

func (*QueryCorkResultResponse) MarshalToSizedBuffer

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

func (*QueryCorkResultResponse) ProtoMessage

func (*QueryCorkResultResponse) ProtoMessage()

func (*QueryCorkResultResponse) Reset

func (m *QueryCorkResultResponse) Reset()

func (*QueryCorkResultResponse) Size

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

func (*QueryCorkResultResponse) String

func (m *QueryCorkResultResponse) String() string

func (*QueryCorkResultResponse) Unmarshal

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

func (*QueryCorkResultResponse) XXX_DiscardUnknown

func (m *QueryCorkResultResponse) XXX_DiscardUnknown()

func (*QueryCorkResultResponse) XXX_Marshal

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

func (*QueryCorkResultResponse) XXX_Merge

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

func (*QueryCorkResultResponse) XXX_Size

func (m *QueryCorkResultResponse) XXX_Size() int

func (*QueryCorkResultResponse) XXX_Unmarshal

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

type QueryCorkResultsRequest

type QueryCorkResultsRequest struct {
	ChainId uint64 `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
}

func (*QueryCorkResultsRequest) Descriptor

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

func (*QueryCorkResultsRequest) GetChainId

func (m *QueryCorkResultsRequest) GetChainId() uint64

func (*QueryCorkResultsRequest) Marshal

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

func (*QueryCorkResultsRequest) MarshalTo

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

func (*QueryCorkResultsRequest) MarshalToSizedBuffer

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

func (*QueryCorkResultsRequest) ProtoMessage

func (*QueryCorkResultsRequest) ProtoMessage()

func (*QueryCorkResultsRequest) Reset

func (m *QueryCorkResultsRequest) Reset()

func (*QueryCorkResultsRequest) Size

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

func (*QueryCorkResultsRequest) String

func (m *QueryCorkResultsRequest) String() string

func (*QueryCorkResultsRequest) Unmarshal

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

func (*QueryCorkResultsRequest) XXX_DiscardUnknown

func (m *QueryCorkResultsRequest) XXX_DiscardUnknown()

func (*QueryCorkResultsRequest) XXX_Marshal

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

func (*QueryCorkResultsRequest) XXX_Merge

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

func (*QueryCorkResultsRequest) XXX_Size

func (m *QueryCorkResultsRequest) XXX_Size() int

func (*QueryCorkResultsRequest) XXX_Unmarshal

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

type QueryCorkResultsResponse

type QueryCorkResultsResponse struct {
	CorkResults []*AxelarCorkResult `protobuf:"bytes,1,rep,name=corkResults,proto3" json:"corkResults,omitempty"`
}

func (*QueryCorkResultsResponse) Descriptor

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

func (*QueryCorkResultsResponse) GetCorkResults

func (m *QueryCorkResultsResponse) GetCorkResults() []*AxelarCorkResult

func (*QueryCorkResultsResponse) Marshal

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

func (*QueryCorkResultsResponse) MarshalTo

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

func (*QueryCorkResultsResponse) MarshalToSizedBuffer

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

func (*QueryCorkResultsResponse) ProtoMessage

func (*QueryCorkResultsResponse) ProtoMessage()

func (*QueryCorkResultsResponse) Reset

func (m *QueryCorkResultsResponse) Reset()

func (*QueryCorkResultsResponse) Size

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

func (*QueryCorkResultsResponse) String

func (m *QueryCorkResultsResponse) String() string

func (*QueryCorkResultsResponse) Unmarshal

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

func (*QueryCorkResultsResponse) XXX_DiscardUnknown

func (m *QueryCorkResultsResponse) XXX_DiscardUnknown()

func (*QueryCorkResultsResponse) XXX_Marshal

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

func (*QueryCorkResultsResponse) XXX_Merge

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

func (*QueryCorkResultsResponse) XXX_Size

func (m *QueryCorkResultsResponse) XXX_Size() int

func (*QueryCorkResultsResponse) XXX_Unmarshal

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

type QueryParamsRequest

type QueryParamsRequest struct {
}

QueryParamsRequest is the request type for the Query/Params gRPC method.

func (*QueryParamsRequest) Descriptor

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

func (*QueryParamsRequest) Marshal

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

func (*QueryParamsRequest) MarshalTo

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

func (*QueryParamsRequest) MarshalToSizedBuffer

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

func (*QueryParamsRequest) ProtoMessage

func (*QueryParamsRequest) ProtoMessage()

func (*QueryParamsRequest) Reset

func (m *QueryParamsRequest) Reset()

func (*QueryParamsRequest) Size

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

func (*QueryParamsRequest) String

func (m *QueryParamsRequest) String() string

func (*QueryParamsRequest) Unmarshal

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

func (*QueryParamsRequest) XXX_DiscardUnknown

func (m *QueryParamsRequest) XXX_DiscardUnknown()

func (*QueryParamsRequest) XXX_Marshal

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

func (*QueryParamsRequest) XXX_Merge

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

func (*QueryParamsRequest) XXX_Size

func (m *QueryParamsRequest) XXX_Size() int

func (*QueryParamsRequest) XXX_Unmarshal

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

type QueryParamsResponse

type QueryParamsResponse struct {
	// allocation parameters
	Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
}

QueryParamsRequest is the response type for the Query/Params gRPC method.

func (*QueryParamsResponse) Descriptor

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

func (*QueryParamsResponse) GetParams

func (m *QueryParamsResponse) GetParams() Params

func (*QueryParamsResponse) Marshal

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

func (*QueryParamsResponse) MarshalTo

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

func (*QueryParamsResponse) MarshalToSizedBuffer

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

func (*QueryParamsResponse) ProtoMessage

func (*QueryParamsResponse) ProtoMessage()

func (*QueryParamsResponse) Reset

func (m *QueryParamsResponse) Reset()

func (*QueryParamsResponse) Size

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

func (*QueryParamsResponse) String

func (m *QueryParamsResponse) String() string

func (*QueryParamsResponse) Unmarshal

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

func (*QueryParamsResponse) XXX_DiscardUnknown

func (m *QueryParamsResponse) XXX_DiscardUnknown()

func (*QueryParamsResponse) XXX_Marshal

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

func (*QueryParamsResponse) XXX_Merge

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

func (*QueryParamsResponse) XXX_Size

func (m *QueryParamsResponse) XXX_Size() int

func (*QueryParamsResponse) XXX_Unmarshal

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

type QueryScheduledBlockHeightsRequest

type QueryScheduledBlockHeightsRequest struct {
	ChainId uint64 `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
}

QueryScheduledBlockHeightsRequest

func (*QueryScheduledBlockHeightsRequest) Descriptor

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

func (*QueryScheduledBlockHeightsRequest) GetChainId

func (m *QueryScheduledBlockHeightsRequest) GetChainId() uint64

func (*QueryScheduledBlockHeightsRequest) Marshal

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

func (*QueryScheduledBlockHeightsRequest) MarshalTo

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

func (*QueryScheduledBlockHeightsRequest) MarshalToSizedBuffer

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

func (*QueryScheduledBlockHeightsRequest) ProtoMessage

func (*QueryScheduledBlockHeightsRequest) ProtoMessage()

func (*QueryScheduledBlockHeightsRequest) Reset

func (*QueryScheduledBlockHeightsRequest) Size

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

func (*QueryScheduledBlockHeightsRequest) String

func (*QueryScheduledBlockHeightsRequest) Unmarshal

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

func (*QueryScheduledBlockHeightsRequest) XXX_DiscardUnknown

func (m *QueryScheduledBlockHeightsRequest) XXX_DiscardUnknown()

func (*QueryScheduledBlockHeightsRequest) XXX_Marshal

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

func (*QueryScheduledBlockHeightsRequest) XXX_Merge

func (*QueryScheduledBlockHeightsRequest) XXX_Size

func (m *QueryScheduledBlockHeightsRequest) XXX_Size() int

func (*QueryScheduledBlockHeightsRequest) XXX_Unmarshal

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

type QueryScheduledBlockHeightsResponse

type QueryScheduledBlockHeightsResponse struct {
	BlockHeights []uint64 `protobuf:"varint,1,rep,packed,name=block_heights,json=blockHeights,proto3" json:"block_heights,omitempty"`
}

QueryScheduledBlockHeightsResponse

func (*QueryScheduledBlockHeightsResponse) Descriptor

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

func (*QueryScheduledBlockHeightsResponse) GetBlockHeights

func (m *QueryScheduledBlockHeightsResponse) GetBlockHeights() []uint64

func (*QueryScheduledBlockHeightsResponse) Marshal

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

func (*QueryScheduledBlockHeightsResponse) MarshalTo

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

func (*QueryScheduledBlockHeightsResponse) MarshalToSizedBuffer

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

func (*QueryScheduledBlockHeightsResponse) ProtoMessage

func (*QueryScheduledBlockHeightsResponse) ProtoMessage()

func (*QueryScheduledBlockHeightsResponse) Reset

func (*QueryScheduledBlockHeightsResponse) Size

func (*QueryScheduledBlockHeightsResponse) String

func (*QueryScheduledBlockHeightsResponse) Unmarshal

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

func (*QueryScheduledBlockHeightsResponse) XXX_DiscardUnknown

func (m *QueryScheduledBlockHeightsResponse) XXX_DiscardUnknown()

func (*QueryScheduledBlockHeightsResponse) XXX_Marshal

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

func (*QueryScheduledBlockHeightsResponse) XXX_Merge

func (*QueryScheduledBlockHeightsResponse) XXX_Size

func (*QueryScheduledBlockHeightsResponse) XXX_Unmarshal

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

type QueryScheduledCorksByBlockHeightRequest

type QueryScheduledCorksByBlockHeightRequest struct {
	BlockHeight uint64 `protobuf:"varint,1,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
	ChainId     uint64 `protobuf:"varint,2,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
}

QueryScheduledCorksByBlockHeightRequest

func (*QueryScheduledCorksByBlockHeightRequest) Descriptor

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

func (*QueryScheduledCorksByBlockHeightRequest) GetBlockHeight

func (m *QueryScheduledCorksByBlockHeightRequest) GetBlockHeight() uint64

func (*QueryScheduledCorksByBlockHeightRequest) GetChainId

func (*QueryScheduledCorksByBlockHeightRequest) Marshal

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

func (*QueryScheduledCorksByBlockHeightRequest) MarshalTo

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

func (*QueryScheduledCorksByBlockHeightRequest) MarshalToSizedBuffer

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

func (*QueryScheduledCorksByBlockHeightRequest) ProtoMessage

func (*QueryScheduledCorksByBlockHeightRequest) Reset

func (*QueryScheduledCorksByBlockHeightRequest) Size

func (*QueryScheduledCorksByBlockHeightRequest) String

func (*QueryScheduledCorksByBlockHeightRequest) Unmarshal

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

func (*QueryScheduledCorksByBlockHeightRequest) XXX_DiscardUnknown

func (m *QueryScheduledCorksByBlockHeightRequest) XXX_DiscardUnknown()

func (*QueryScheduledCorksByBlockHeightRequest) XXX_Marshal

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

func (*QueryScheduledCorksByBlockHeightRequest) XXX_Merge

func (*QueryScheduledCorksByBlockHeightRequest) XXX_Size

func (*QueryScheduledCorksByBlockHeightRequest) XXX_Unmarshal

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

type QueryScheduledCorksByBlockHeightResponse

type QueryScheduledCorksByBlockHeightResponse struct {
	Corks []*ScheduledAxelarCork `protobuf:"bytes,1,rep,name=corks,proto3" json:"corks,omitempty"`
}

QueryScheduledCorksByBlockHeightResponse

func (*QueryScheduledCorksByBlockHeightResponse) Descriptor

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

func (*QueryScheduledCorksByBlockHeightResponse) GetCorks

func (*QueryScheduledCorksByBlockHeightResponse) Marshal

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

func (*QueryScheduledCorksByBlockHeightResponse) MarshalTo

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

func (*QueryScheduledCorksByBlockHeightResponse) MarshalToSizedBuffer

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

func (*QueryScheduledCorksByBlockHeightResponse) ProtoMessage

func (*QueryScheduledCorksByBlockHeightResponse) Reset

func (*QueryScheduledCorksByBlockHeightResponse) Size

func (*QueryScheduledCorksByBlockHeightResponse) String

func (*QueryScheduledCorksByBlockHeightResponse) Unmarshal

func (*QueryScheduledCorksByBlockHeightResponse) XXX_DiscardUnknown

func (m *QueryScheduledCorksByBlockHeightResponse) XXX_DiscardUnknown()

func (*QueryScheduledCorksByBlockHeightResponse) XXX_Marshal

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

func (*QueryScheduledCorksByBlockHeightResponse) XXX_Merge

func (*QueryScheduledCorksByBlockHeightResponse) XXX_Size

func (*QueryScheduledCorksByBlockHeightResponse) XXX_Unmarshal

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

type QueryScheduledCorksByIDRequest

type QueryScheduledCorksByIDRequest struct {
	Id      string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	ChainId uint64 `protobuf:"varint,2,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
}

QueryScheduledCorksByIDRequest

func (*QueryScheduledCorksByIDRequest) Descriptor

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

func (*QueryScheduledCorksByIDRequest) GetChainId

func (m *QueryScheduledCorksByIDRequest) GetChainId() uint64

func (*QueryScheduledCorksByIDRequest) GetId

func (*QueryScheduledCorksByIDRequest) Marshal

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

func (*QueryScheduledCorksByIDRequest) MarshalTo

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

func (*QueryScheduledCorksByIDRequest) MarshalToSizedBuffer

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

func (*QueryScheduledCorksByIDRequest) ProtoMessage

func (*QueryScheduledCorksByIDRequest) ProtoMessage()

func (*QueryScheduledCorksByIDRequest) Reset

func (m *QueryScheduledCorksByIDRequest) Reset()

func (*QueryScheduledCorksByIDRequest) Size

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

func (*QueryScheduledCorksByIDRequest) String

func (*QueryScheduledCorksByIDRequest) Unmarshal

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

func (*QueryScheduledCorksByIDRequest) XXX_DiscardUnknown

func (m *QueryScheduledCorksByIDRequest) XXX_DiscardUnknown()

func (*QueryScheduledCorksByIDRequest) XXX_Marshal

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

func (*QueryScheduledCorksByIDRequest) XXX_Merge

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

func (*QueryScheduledCorksByIDRequest) XXX_Size

func (m *QueryScheduledCorksByIDRequest) XXX_Size() int

func (*QueryScheduledCorksByIDRequest) XXX_Unmarshal

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

type QueryScheduledCorksByIDResponse

type QueryScheduledCorksByIDResponse struct {
	Corks []*ScheduledAxelarCork `protobuf:"bytes,1,rep,name=corks,proto3" json:"corks,omitempty"`
}

QueryScheduledCorksByIDResponse

func (*QueryScheduledCorksByIDResponse) Descriptor

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

func (*QueryScheduledCorksByIDResponse) GetCorks

func (*QueryScheduledCorksByIDResponse) Marshal

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

func (*QueryScheduledCorksByIDResponse) MarshalTo

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

func (*QueryScheduledCorksByIDResponse) MarshalToSizedBuffer

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

func (*QueryScheduledCorksByIDResponse) ProtoMessage

func (*QueryScheduledCorksByIDResponse) ProtoMessage()

func (*QueryScheduledCorksByIDResponse) Reset

func (*QueryScheduledCorksByIDResponse) Size

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

func (*QueryScheduledCorksByIDResponse) String

func (*QueryScheduledCorksByIDResponse) Unmarshal

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

func (*QueryScheduledCorksByIDResponse) XXX_DiscardUnknown

func (m *QueryScheduledCorksByIDResponse) XXX_DiscardUnknown()

func (*QueryScheduledCorksByIDResponse) XXX_Marshal

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

func (*QueryScheduledCorksByIDResponse) XXX_Merge

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

func (*QueryScheduledCorksByIDResponse) XXX_Size

func (m *QueryScheduledCorksByIDResponse) XXX_Size() int

func (*QueryScheduledCorksByIDResponse) XXX_Unmarshal

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

type QueryScheduledCorksRequest

type QueryScheduledCorksRequest struct {
	ChainId uint64 `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
}

QueryScheduledCorksRequest

func (*QueryScheduledCorksRequest) Descriptor

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

func (*QueryScheduledCorksRequest) GetChainId

func (m *QueryScheduledCorksRequest) GetChainId() uint64

func (*QueryScheduledCorksRequest) Marshal

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

func (*QueryScheduledCorksRequest) MarshalTo

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

func (*QueryScheduledCorksRequest) MarshalToSizedBuffer

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

func (*QueryScheduledCorksRequest) ProtoMessage

func (*QueryScheduledCorksRequest) ProtoMessage()

func (*QueryScheduledCorksRequest) Reset

func (m *QueryScheduledCorksRequest) Reset()

func (*QueryScheduledCorksRequest) Size

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

func (*QueryScheduledCorksRequest) String

func (m *QueryScheduledCorksRequest) String() string

func (*QueryScheduledCorksRequest) Unmarshal

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

func (*QueryScheduledCorksRequest) XXX_DiscardUnknown

func (m *QueryScheduledCorksRequest) XXX_DiscardUnknown()

func (*QueryScheduledCorksRequest) XXX_Marshal

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

func (*QueryScheduledCorksRequest) XXX_Merge

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

func (*QueryScheduledCorksRequest) XXX_Size

func (m *QueryScheduledCorksRequest) XXX_Size() int

func (*QueryScheduledCorksRequest) XXX_Unmarshal

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

type QueryScheduledCorksResponse

type QueryScheduledCorksResponse struct {
	Corks []*ScheduledAxelarCork `protobuf:"bytes,1,rep,name=corks,proto3" json:"corks,omitempty"`
}

QueryScheduledCorksResponse

func (*QueryScheduledCorksResponse) Descriptor

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

func (*QueryScheduledCorksResponse) GetCorks

func (*QueryScheduledCorksResponse) Marshal

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

func (*QueryScheduledCorksResponse) MarshalTo

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

func (*QueryScheduledCorksResponse) MarshalToSizedBuffer

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

func (*QueryScheduledCorksResponse) ProtoMessage

func (*QueryScheduledCorksResponse) ProtoMessage()

func (*QueryScheduledCorksResponse) Reset

func (m *QueryScheduledCorksResponse) Reset()

func (*QueryScheduledCorksResponse) Size

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

func (*QueryScheduledCorksResponse) String

func (m *QueryScheduledCorksResponse) String() string

func (*QueryScheduledCorksResponse) Unmarshal

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

func (*QueryScheduledCorksResponse) XXX_DiscardUnknown

func (m *QueryScheduledCorksResponse) XXX_DiscardUnknown()

func (*QueryScheduledCorksResponse) XXX_Marshal

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

func (*QueryScheduledCorksResponse) XXX_Merge

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

func (*QueryScheduledCorksResponse) XXX_Size

func (m *QueryScheduledCorksResponse) XXX_Size() int

func (*QueryScheduledCorksResponse) XXX_Unmarshal

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

type QueryServer

type QueryServer interface {
	// QueryParams queries the axelar cork module parameters.
	QueryParams(context.Context, *QueryParamsRequest) (*QueryParamsResponse, error)
	// QueryCellarIDs queries approved cellar ids of all supported chains
	QueryCellarIDs(context.Context, *QueryCellarIDsRequest) (*QueryCellarIDsResponse, error)
	// QueryCellarIDsByChainID returns all cellars and current tick ranges
	QueryCellarIDsByChainID(context.Context, *QueryCellarIDsByChainIDRequest) (*QueryCellarIDsByChainIDResponse, error)
	// QueryScheduledCorks returns all scheduled corks
	QueryScheduledCorks(context.Context, *QueryScheduledCorksRequest) (*QueryScheduledCorksResponse, error)
	// QueryScheduledBlockHeights returns all scheduled block heights
	QueryScheduledBlockHeights(context.Context, *QueryScheduledBlockHeightsRequest) (*QueryScheduledBlockHeightsResponse, error)
	// QueryScheduledCorks returns all scheduled corks at a block height
	QueryScheduledCorksByBlockHeight(context.Context, *QueryScheduledCorksByBlockHeightRequest) (*QueryScheduledCorksByBlockHeightResponse, error)
	// QueryScheduledCorks returns all scheduled corks with the specified ID
	QueryScheduledCorksByID(context.Context, *QueryScheduledCorksByIDRequest) (*QueryScheduledCorksByIDResponse, error)
	QueryCorkResult(context.Context, *QueryCorkResultRequest) (*QueryCorkResultResponse, error)
	QueryCorkResults(context.Context, *QueryCorkResultsRequest) (*QueryCorkResultsResponse, error)
	QueryChainConfigurations(context.Context, *QueryChainConfigurationsRequest) (*QueryChainConfigurationsResponse, error)
	QueryAxelarContractCallNonces(context.Context, *QueryAxelarContractCallNoncesRequest) (*QueryAxelarContractCallNoncesResponse, error)
	QueryAxelarProxyUpgradeData(context.Context, *QueryAxelarProxyUpgradeDataRequest) (*QueryAxelarProxyUpgradeDataResponse, error)
	QueryWinningAxelarCork(context.Context, *QueryWinningAxelarCorkRequest) (*QueryWinningAxelarCorkResponse, error)
	QueryWinningAxelarCorks(context.Context, *QueryWinningAxelarCorksRequest) (*QueryWinningAxelarCorksResponse, error)
}

QueryServer is the server API for Query service.

type QueryWinningAxelarCorkRequest

type QueryWinningAxelarCorkRequest struct {
	ChainId         uint64 `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	ContractAddress string `protobuf:"bytes,2,opt,name=contract_address,json=contractAddress,proto3" json:"contract_address,omitempty"`
}

func (*QueryWinningAxelarCorkRequest) Descriptor

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

func (*QueryWinningAxelarCorkRequest) GetChainId

func (m *QueryWinningAxelarCorkRequest) GetChainId() uint64

func (*QueryWinningAxelarCorkRequest) GetContractAddress

func (m *QueryWinningAxelarCorkRequest) GetContractAddress() string

func (*QueryWinningAxelarCorkRequest) Marshal

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

func (*QueryWinningAxelarCorkRequest) MarshalTo

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

func (*QueryWinningAxelarCorkRequest) MarshalToSizedBuffer

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

func (*QueryWinningAxelarCorkRequest) ProtoMessage

func (*QueryWinningAxelarCorkRequest) ProtoMessage()

func (*QueryWinningAxelarCorkRequest) Reset

func (m *QueryWinningAxelarCorkRequest) Reset()

func (*QueryWinningAxelarCorkRequest) Size

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

func (*QueryWinningAxelarCorkRequest) String

func (*QueryWinningAxelarCorkRequest) Unmarshal

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

func (*QueryWinningAxelarCorkRequest) XXX_DiscardUnknown

func (m *QueryWinningAxelarCorkRequest) XXX_DiscardUnknown()

func (*QueryWinningAxelarCorkRequest) XXX_Marshal

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

func (*QueryWinningAxelarCorkRequest) XXX_Merge

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

func (*QueryWinningAxelarCorkRequest) XXX_Size

func (m *QueryWinningAxelarCorkRequest) XXX_Size() int

func (*QueryWinningAxelarCorkRequest) XXX_Unmarshal

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

type QueryWinningAxelarCorkResponse

type QueryWinningAxelarCorkResponse struct {
	Cork        *AxelarCork `protobuf:"bytes,1,opt,name=cork,proto3" json:"cork,omitempty"`
	BlockHeight uint64      `protobuf:"varint,2,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
}

func (*QueryWinningAxelarCorkResponse) Descriptor

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

func (*QueryWinningAxelarCorkResponse) GetBlockHeight

func (m *QueryWinningAxelarCorkResponse) GetBlockHeight() uint64

func (*QueryWinningAxelarCorkResponse) GetCork

func (*QueryWinningAxelarCorkResponse) Marshal

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

func (*QueryWinningAxelarCorkResponse) MarshalTo

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

func (*QueryWinningAxelarCorkResponse) MarshalToSizedBuffer

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

func (*QueryWinningAxelarCorkResponse) ProtoMessage

func (*QueryWinningAxelarCorkResponse) ProtoMessage()

func (*QueryWinningAxelarCorkResponse) Reset

func (m *QueryWinningAxelarCorkResponse) Reset()

func (*QueryWinningAxelarCorkResponse) Size

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

func (*QueryWinningAxelarCorkResponse) String

func (*QueryWinningAxelarCorkResponse) Unmarshal

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

func (*QueryWinningAxelarCorkResponse) XXX_DiscardUnknown

func (m *QueryWinningAxelarCorkResponse) XXX_DiscardUnknown()

func (*QueryWinningAxelarCorkResponse) XXX_Marshal

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

func (*QueryWinningAxelarCorkResponse) XXX_Merge

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

func (*QueryWinningAxelarCorkResponse) XXX_Size

func (m *QueryWinningAxelarCorkResponse) XXX_Size() int

func (*QueryWinningAxelarCorkResponse) XXX_Unmarshal

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

type QueryWinningAxelarCorksRequest

type QueryWinningAxelarCorksRequest struct {
	ChainId uint64 `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
}

func (*QueryWinningAxelarCorksRequest) Descriptor

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

func (*QueryWinningAxelarCorksRequest) GetChainId

func (m *QueryWinningAxelarCorksRequest) GetChainId() uint64

func (*QueryWinningAxelarCorksRequest) Marshal

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

func (*QueryWinningAxelarCorksRequest) MarshalTo

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

func (*QueryWinningAxelarCorksRequest) MarshalToSizedBuffer

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

func (*QueryWinningAxelarCorksRequest) ProtoMessage

func (*QueryWinningAxelarCorksRequest) ProtoMessage()

func (*QueryWinningAxelarCorksRequest) Reset

func (m *QueryWinningAxelarCorksRequest) Reset()

func (*QueryWinningAxelarCorksRequest) Size

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

func (*QueryWinningAxelarCorksRequest) String

func (*QueryWinningAxelarCorksRequest) Unmarshal

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

func (*QueryWinningAxelarCorksRequest) XXX_DiscardUnknown

func (m *QueryWinningAxelarCorksRequest) XXX_DiscardUnknown()

func (*QueryWinningAxelarCorksRequest) XXX_Marshal

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

func (*QueryWinningAxelarCorksRequest) XXX_Merge

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

func (*QueryWinningAxelarCorksRequest) XXX_Size

func (m *QueryWinningAxelarCorksRequest) XXX_Size() int

func (*QueryWinningAxelarCorksRequest) XXX_Unmarshal

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

type QueryWinningAxelarCorksResponse

type QueryWinningAxelarCorksResponse struct {
	WinningAxelarCorks []*WinningAxelarCork `protobuf:"bytes,1,rep,name=winning_axelar_corks,json=winningAxelarCorks,proto3" json:"winning_axelar_corks,omitempty"`
}

func (*QueryWinningAxelarCorksResponse) Descriptor

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

func (*QueryWinningAxelarCorksResponse) GetWinningAxelarCorks

func (m *QueryWinningAxelarCorksResponse) GetWinningAxelarCorks() []*WinningAxelarCork

func (*QueryWinningAxelarCorksResponse) Marshal

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

func (*QueryWinningAxelarCorksResponse) MarshalTo

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

func (*QueryWinningAxelarCorksResponse) MarshalToSizedBuffer

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

func (*QueryWinningAxelarCorksResponse) ProtoMessage

func (*QueryWinningAxelarCorksResponse) ProtoMessage()

func (*QueryWinningAxelarCorksResponse) Reset

func (*QueryWinningAxelarCorksResponse) Size

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

func (*QueryWinningAxelarCorksResponse) String

func (*QueryWinningAxelarCorksResponse) Unmarshal

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

func (*QueryWinningAxelarCorksResponse) XXX_DiscardUnknown

func (m *QueryWinningAxelarCorksResponse) XXX_DiscardUnknown()

func (*QueryWinningAxelarCorksResponse) XXX_Marshal

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

func (*QueryWinningAxelarCorksResponse) XXX_Merge

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

func (*QueryWinningAxelarCorksResponse) XXX_Size

func (m *QueryWinningAxelarCorksResponse) XXX_Size() int

func (*QueryWinningAxelarCorksResponse) XXX_Unmarshal

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

type RemoveAxelarManagedCellarIDsProposal

type RemoveAxelarManagedCellarIDsProposal struct {
	Title       string       `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description string       `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	ChainId     uint64       `protobuf:"varint,3,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	CellarIds   *CellarIDSet `protobuf:"bytes,4,opt,name=cellar_ids,json=cellarIds,proto3" json:"cellar_ids,omitempty"`
}

func NewRemoveAxelarManagedCellarIDsProposal

func NewRemoveAxelarManagedCellarIDsProposal(title string, description string, chainID uint64, cellarIds *CellarIDSet) *RemoveAxelarManagedCellarIDsProposal

func (*RemoveAxelarManagedCellarIDsProposal) Descriptor

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

func (*RemoveAxelarManagedCellarIDsProposal) GetCellarIds

func (*RemoveAxelarManagedCellarIDsProposal) GetChainId

func (*RemoveAxelarManagedCellarIDsProposal) GetDescription

func (m *RemoveAxelarManagedCellarIDsProposal) GetDescription() string

func (*RemoveAxelarManagedCellarIDsProposal) GetTitle

func (*RemoveAxelarManagedCellarIDsProposal) Marshal

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

func (*RemoveAxelarManagedCellarIDsProposal) MarshalTo

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

func (*RemoveAxelarManagedCellarIDsProposal) MarshalToSizedBuffer

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

func (*RemoveAxelarManagedCellarIDsProposal) ProposalRoute

func (m *RemoveAxelarManagedCellarIDsProposal) ProposalRoute() string

func (*RemoveAxelarManagedCellarIDsProposal) ProposalType

func (m *RemoveAxelarManagedCellarIDsProposal) ProposalType() string

func (*RemoveAxelarManagedCellarIDsProposal) ProtoMessage

func (*RemoveAxelarManagedCellarIDsProposal) ProtoMessage()

func (*RemoveAxelarManagedCellarIDsProposal) Reset

func (*RemoveAxelarManagedCellarIDsProposal) Size

func (*RemoveAxelarManagedCellarIDsProposal) String

func (*RemoveAxelarManagedCellarIDsProposal) Unmarshal

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

func (*RemoveAxelarManagedCellarIDsProposal) ValidateBasic

func (m *RemoveAxelarManagedCellarIDsProposal) ValidateBasic() error

func (*RemoveAxelarManagedCellarIDsProposal) XXX_DiscardUnknown

func (m *RemoveAxelarManagedCellarIDsProposal) XXX_DiscardUnknown()

func (*RemoveAxelarManagedCellarIDsProposal) XXX_Marshal

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

func (*RemoveAxelarManagedCellarIDsProposal) XXX_Merge

func (*RemoveAxelarManagedCellarIDsProposal) XXX_Size

func (*RemoveAxelarManagedCellarIDsProposal) XXX_Unmarshal

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

type RemoveAxelarManagedCellarIDsProposalWithDeposit

type RemoveAxelarManagedCellarIDsProposalWithDeposit struct {
	Title       string   `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description string   `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	ChainId     uint64   `protobuf:"varint,3,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	CellarIds   []string `protobuf:"bytes,4,rep,name=cellar_ids,json=cellarIds,proto3" json:"cellar_ids,omitempty"`
	Deposit     string   `protobuf:"bytes,5,opt,name=deposit,proto3" json:"deposit,omitempty"`
}

RemoveAxelarManagedCellarIDsProposalWithDeposit is a specific definition for CLI commands

func (*RemoveAxelarManagedCellarIDsProposalWithDeposit) Descriptor

func (*RemoveAxelarManagedCellarIDsProposalWithDeposit) GetCellarIds

func (*RemoveAxelarManagedCellarIDsProposalWithDeposit) GetChainId

func (*RemoveAxelarManagedCellarIDsProposalWithDeposit) GetDeposit

func (*RemoveAxelarManagedCellarIDsProposalWithDeposit) GetDescription

func (*RemoveAxelarManagedCellarIDsProposalWithDeposit) GetTitle

func (*RemoveAxelarManagedCellarIDsProposalWithDeposit) Marshal

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

func (*RemoveAxelarManagedCellarIDsProposalWithDeposit) MarshalTo

func (*RemoveAxelarManagedCellarIDsProposalWithDeposit) MarshalToSizedBuffer

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

func (*RemoveAxelarManagedCellarIDsProposalWithDeposit) ProtoMessage

func (*RemoveAxelarManagedCellarIDsProposalWithDeposit) Reset

func (*RemoveAxelarManagedCellarIDsProposalWithDeposit) Size

func (*RemoveAxelarManagedCellarIDsProposalWithDeposit) String

func (*RemoveAxelarManagedCellarIDsProposalWithDeposit) Unmarshal

func (*RemoveAxelarManagedCellarIDsProposalWithDeposit) XXX_DiscardUnknown

func (m *RemoveAxelarManagedCellarIDsProposalWithDeposit) XXX_DiscardUnknown()

func (*RemoveAxelarManagedCellarIDsProposalWithDeposit) XXX_Marshal

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

func (*RemoveAxelarManagedCellarIDsProposalWithDeposit) XXX_Merge

func (*RemoveAxelarManagedCellarIDsProposalWithDeposit) XXX_Size

func (*RemoveAxelarManagedCellarIDsProposalWithDeposit) XXX_Unmarshal

type RemoveChainConfigurationProposal

type RemoveChainConfigurationProposal struct {
	Title       string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	ChainId     uint64 `protobuf:"varint,3,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
}

func NewRemoveChainConfigurationProposal

func NewRemoveChainConfigurationProposal(title string, description string, chainID uint64) *RemoveChainConfigurationProposal

func (*RemoveChainConfigurationProposal) Descriptor

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

func (*RemoveChainConfigurationProposal) GetChainId

func (m *RemoveChainConfigurationProposal) GetChainId() uint64

func (*RemoveChainConfigurationProposal) GetDescription

func (m *RemoveChainConfigurationProposal) GetDescription() string

func (*RemoveChainConfigurationProposal) GetTitle

func (*RemoveChainConfigurationProposal) Marshal

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

func (*RemoveChainConfigurationProposal) MarshalTo

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

func (*RemoveChainConfigurationProposal) MarshalToSizedBuffer

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

func (*RemoveChainConfigurationProposal) ProposalRoute

func (m *RemoveChainConfigurationProposal) ProposalRoute() string

func (*RemoveChainConfigurationProposal) ProposalType

func (m *RemoveChainConfigurationProposal) ProposalType() string

func (*RemoveChainConfigurationProposal) ProtoMessage

func (*RemoveChainConfigurationProposal) ProtoMessage()

func (*RemoveChainConfigurationProposal) Reset

func (*RemoveChainConfigurationProposal) Size

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

func (*RemoveChainConfigurationProposal) String

func (*RemoveChainConfigurationProposal) Unmarshal

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

func (*RemoveChainConfigurationProposal) ValidateBasic

func (m *RemoveChainConfigurationProposal) ValidateBasic() error

func (*RemoveChainConfigurationProposal) XXX_DiscardUnknown

func (m *RemoveChainConfigurationProposal) XXX_DiscardUnknown()

func (*RemoveChainConfigurationProposal) XXX_Marshal

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

func (*RemoveChainConfigurationProposal) XXX_Merge

func (*RemoveChainConfigurationProposal) XXX_Size

func (m *RemoveChainConfigurationProposal) XXX_Size() int

func (*RemoveChainConfigurationProposal) XXX_Unmarshal

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

type RemoveChainConfigurationProposalWithDeposit

type RemoveChainConfigurationProposalWithDeposit struct {
	Title       string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	ChainId     uint64 `protobuf:"varint,3,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	Deposit     string `protobuf:"bytes,4,opt,name=deposit,proto3" json:"deposit,omitempty"`
}

func (*RemoveChainConfigurationProposalWithDeposit) Descriptor

func (*RemoveChainConfigurationProposalWithDeposit) GetChainId

func (*RemoveChainConfigurationProposalWithDeposit) GetDeposit

func (*RemoveChainConfigurationProposalWithDeposit) GetDescription

func (*RemoveChainConfigurationProposalWithDeposit) GetTitle

func (*RemoveChainConfigurationProposalWithDeposit) Marshal

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

func (*RemoveChainConfigurationProposalWithDeposit) MarshalTo

func (*RemoveChainConfigurationProposalWithDeposit) MarshalToSizedBuffer

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

func (*RemoveChainConfigurationProposalWithDeposit) ProtoMessage

func (*RemoveChainConfigurationProposalWithDeposit) Reset

func (*RemoveChainConfigurationProposalWithDeposit) Size

func (*RemoveChainConfigurationProposalWithDeposit) String

func (*RemoveChainConfigurationProposalWithDeposit) Unmarshal

func (*RemoveChainConfigurationProposalWithDeposit) XXX_DiscardUnknown

func (m *RemoveChainConfigurationProposalWithDeposit) XXX_DiscardUnknown()

func (*RemoveChainConfigurationProposalWithDeposit) XXX_Marshal

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

func (*RemoveChainConfigurationProposalWithDeposit) XXX_Merge

func (*RemoveChainConfigurationProposalWithDeposit) XXX_Size

func (*RemoveChainConfigurationProposalWithDeposit) XXX_Unmarshal

type ScheduleCorkEvent

type ScheduleCorkEvent struct {
	Signer      string `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"`
	Validator   string `protobuf:"bytes,2,opt,name=validator,proto3" json:"validator,omitempty"`
	Cork        string `protobuf:"bytes,3,opt,name=cork,proto3" json:"cork,omitempty"`
	BlockHeight uint64 `protobuf:"varint,4,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
	ChainId     uint64 `protobuf:"varint,5,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
}

func (*ScheduleCorkEvent) Descriptor

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

func (*ScheduleCorkEvent) GetBlockHeight

func (m *ScheduleCorkEvent) GetBlockHeight() uint64

func (*ScheduleCorkEvent) GetChainId

func (m *ScheduleCorkEvent) GetChainId() uint64

func (*ScheduleCorkEvent) GetCork

func (m *ScheduleCorkEvent) GetCork() string

func (*ScheduleCorkEvent) GetSigner

func (m *ScheduleCorkEvent) GetSigner() string

func (*ScheduleCorkEvent) GetValidator

func (m *ScheduleCorkEvent) GetValidator() string

func (*ScheduleCorkEvent) Marshal

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

func (*ScheduleCorkEvent) MarshalTo

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

func (*ScheduleCorkEvent) MarshalToSizedBuffer

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

func (*ScheduleCorkEvent) ProtoMessage

func (*ScheduleCorkEvent) ProtoMessage()

func (*ScheduleCorkEvent) Reset

func (m *ScheduleCorkEvent) Reset()

func (*ScheduleCorkEvent) Size

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

func (*ScheduleCorkEvent) String

func (m *ScheduleCorkEvent) String() string

func (*ScheduleCorkEvent) Unmarshal

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

func (*ScheduleCorkEvent) XXX_DiscardUnknown

func (m *ScheduleCorkEvent) XXX_DiscardUnknown()

func (*ScheduleCorkEvent) XXX_Marshal

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

func (*ScheduleCorkEvent) XXX_Merge

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

func (*ScheduleCorkEvent) XXX_Size

func (m *ScheduleCorkEvent) XXX_Size() int

func (*ScheduleCorkEvent) XXX_Unmarshal

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

type ScheduledAxelarCork

type ScheduledAxelarCork struct {
	Cork        *AxelarCork `protobuf:"bytes,1,opt,name=cork,proto3" json:"cork,omitempty"`
	BlockHeight uint64      `protobuf:"varint,2,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
	Validator   string      `protobuf:"bytes,3,opt,name=validator,proto3" json:"validator,omitempty"`
	Id          string      `protobuf:"bytes,4,opt,name=id,proto3" json:"id,omitempty"`
}

func (*ScheduledAxelarCork) Descriptor

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

func (*ScheduledAxelarCork) GetBlockHeight

func (m *ScheduledAxelarCork) GetBlockHeight() uint64

func (*ScheduledAxelarCork) GetCork

func (m *ScheduledAxelarCork) GetCork() *AxelarCork

func (*ScheduledAxelarCork) GetId

func (m *ScheduledAxelarCork) GetId() string

func (*ScheduledAxelarCork) GetValidator

func (m *ScheduledAxelarCork) GetValidator() string

func (*ScheduledAxelarCork) Marshal

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

func (*ScheduledAxelarCork) MarshalTo

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

func (*ScheduledAxelarCork) MarshalToSizedBuffer

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

func (*ScheduledAxelarCork) ProtoMessage

func (*ScheduledAxelarCork) ProtoMessage()

func (*ScheduledAxelarCork) Reset

func (m *ScheduledAxelarCork) Reset()

func (*ScheduledAxelarCork) Size

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

func (*ScheduledAxelarCork) String

func (m *ScheduledAxelarCork) String() string

func (*ScheduledAxelarCork) Unmarshal

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

func (*ScheduledAxelarCork) ValidateBasic

func (s *ScheduledAxelarCork) ValidateBasic() error

func (*ScheduledAxelarCork) XXX_DiscardUnknown

func (m *ScheduledAxelarCork) XXX_DiscardUnknown()

func (*ScheduledAxelarCork) XXX_Marshal

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

func (*ScheduledAxelarCork) XXX_Merge

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

func (*ScheduledAxelarCork) XXX_Size

func (m *ScheduledAxelarCork) XXX_Size() int

func (*ScheduledAxelarCork) XXX_Unmarshal

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

type ScheduledAxelarCorks

type ScheduledAxelarCorks struct {
	ScheduledCorks []*ScheduledAxelarCork `protobuf:"bytes,1,rep,name=scheduled_corks,json=scheduledCorks,proto3" json:"scheduled_corks,omitempty"`
}

func (*ScheduledAxelarCorks) Descriptor

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

func (*ScheduledAxelarCorks) GetScheduledCorks

func (m *ScheduledAxelarCorks) GetScheduledCorks() []*ScheduledAxelarCork

func (*ScheduledAxelarCorks) Marshal

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

func (*ScheduledAxelarCorks) MarshalTo

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

func (*ScheduledAxelarCorks) MarshalToSizedBuffer

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

func (*ScheduledAxelarCorks) ProtoMessage

func (*ScheduledAxelarCorks) ProtoMessage()

func (*ScheduledAxelarCorks) Reset

func (m *ScheduledAxelarCorks) Reset()

func (*ScheduledAxelarCorks) Size

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

func (*ScheduledAxelarCorks) String

func (m *ScheduledAxelarCorks) String() string

func (*ScheduledAxelarCorks) Unmarshal

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

func (*ScheduledAxelarCorks) XXX_DiscardUnknown

func (m *ScheduledAxelarCorks) XXX_DiscardUnknown()

func (*ScheduledAxelarCorks) XXX_Marshal

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

func (*ScheduledAxelarCorks) XXX_Merge

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

func (*ScheduledAxelarCorks) XXX_Size

func (m *ScheduledAxelarCorks) XXX_Size() int

func (*ScheduledAxelarCorks) XXX_Unmarshal

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

type StakingKeeper

type StakingKeeper interface {
	GetBondedValidatorsByPower(ctx sdk.Context) []stakingtypes.Validator
	GetLastValidatorPower(ctx sdk.Context, operator sdk.ValAddress) int64
	GetLastTotalPower(ctx sdk.Context) (power math.Int)
	IterateValidators(sdk.Context, func(index int64, validator stakingtypes.ValidatorI) (stop bool))
	IterateBondedValidatorsByPower(sdk.Context, func(index int64, validator stakingtypes.ValidatorI) (stop bool))
	IterateLastValidators(sdk.Context, func(index int64, validator stakingtypes.ValidatorI) (stop bool))
	Validator(sdk.Context, sdk.ValAddress) stakingtypes.ValidatorI
	ValidatorByConsAddr(sdk.Context, sdk.ConsAddress) stakingtypes.ValidatorI
	Slash(sdk.Context, sdk.ConsAddress, int64, int64, sdk.Dec) math.Int
	Jail(sdk.Context, sdk.ConsAddress)
	PowerReduction(ctx sdk.Context) math.Int
}

StakingKeeper defines the expected staking keeper methods

type TransferKeeper

type TransferKeeper interface {
	Transfer(goCtx context.Context, msg *types.MsgTransfer) (*types.MsgTransferResponse, error)
}

type UnimplementedMsgServer

type UnimplementedMsgServer struct {
}

UnimplementedMsgServer can be embedded to have forward compatible implementations.

func (*UnimplementedMsgServer) BumpCorkGas

func (*UnimplementedMsgServer) CancelScheduledCork

func (*UnimplementedMsgServer) RelayCork

func (*UnimplementedMsgServer) ScheduleCork

type UnimplementedQueryServer

type UnimplementedQueryServer struct {
}

UnimplementedQueryServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServer) QueryCellarIDs

func (*UnimplementedQueryServer) QueryCellarIDsByChainID

func (*UnimplementedQueryServer) QueryChainConfigurations

func (*UnimplementedQueryServer) QueryCorkResult

func (*UnimplementedQueryServer) QueryCorkResults

func (*UnimplementedQueryServer) QueryParams

func (*UnimplementedQueryServer) QueryScheduledBlockHeights

func (*UnimplementedQueryServer) QueryScheduledCorks

func (*UnimplementedQueryServer) QueryScheduledCorksByID

func (*UnimplementedQueryServer) QueryWinningAxelarCork

func (*UnimplementedQueryServer) QueryWinningAxelarCorks

type UpgradeAxelarProxyContractProposal

type UpgradeAxelarProxyContractProposal struct {
	Title           string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description     string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	ChainId         uint64 `protobuf:"varint,3,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	NewProxyAddress string `protobuf:"bytes,4,opt,name=new_proxy_address,json=newProxyAddress,proto3" json:"new_proxy_address,omitempty"`
}

func NewUpgradeAxelarProxyContractProposal

func NewUpgradeAxelarProxyContractProposal(title string, description string, chainID uint64, newProxyAddress string) *UpgradeAxelarProxyContractProposal

func (*UpgradeAxelarProxyContractProposal) Descriptor

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

func (*UpgradeAxelarProxyContractProposal) GetChainId

func (*UpgradeAxelarProxyContractProposal) GetDescription

func (m *UpgradeAxelarProxyContractProposal) GetDescription() string

func (*UpgradeAxelarProxyContractProposal) GetNewProxyAddress

func (m *UpgradeAxelarProxyContractProposal) GetNewProxyAddress() string

func (*UpgradeAxelarProxyContractProposal) GetTitle

func (*UpgradeAxelarProxyContractProposal) Marshal

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

func (*UpgradeAxelarProxyContractProposal) MarshalTo

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

func (*UpgradeAxelarProxyContractProposal) MarshalToSizedBuffer

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

func (*UpgradeAxelarProxyContractProposal) ProposalRoute

func (m *UpgradeAxelarProxyContractProposal) ProposalRoute() string

func (*UpgradeAxelarProxyContractProposal) ProposalType

func (m *UpgradeAxelarProxyContractProposal) ProposalType() string

func (*UpgradeAxelarProxyContractProposal) ProtoMessage

func (*UpgradeAxelarProxyContractProposal) ProtoMessage()

func (*UpgradeAxelarProxyContractProposal) Reset

func (*UpgradeAxelarProxyContractProposal) Size

func (*UpgradeAxelarProxyContractProposal) String

func (*UpgradeAxelarProxyContractProposal) Unmarshal

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

func (*UpgradeAxelarProxyContractProposal) ValidateBasic

func (m *UpgradeAxelarProxyContractProposal) ValidateBasic() error

func (*UpgradeAxelarProxyContractProposal) XXX_DiscardUnknown

func (m *UpgradeAxelarProxyContractProposal) XXX_DiscardUnknown()

func (*UpgradeAxelarProxyContractProposal) XXX_Marshal

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

func (*UpgradeAxelarProxyContractProposal) XXX_Merge

func (*UpgradeAxelarProxyContractProposal) XXX_Size

func (*UpgradeAxelarProxyContractProposal) XXX_Unmarshal

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

type UpgradeAxelarProxyContractProposalWithDeposit

type UpgradeAxelarProxyContractProposalWithDeposit struct {
	Title           string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description     string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	ChainId         uint64 `protobuf:"varint,3,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	NewProxyAddress string `protobuf:"bytes,4,opt,name=new_proxy_address,json=newProxyAddress,proto3" json:"new_proxy_address,omitempty"`
	Deposit         string `protobuf:"bytes,5,opt,name=deposit,proto3" json:"deposit,omitempty"`
}

func (*UpgradeAxelarProxyContractProposalWithDeposit) Descriptor

func (*UpgradeAxelarProxyContractProposalWithDeposit) GetChainId

func (*UpgradeAxelarProxyContractProposalWithDeposit) GetDeposit

func (*UpgradeAxelarProxyContractProposalWithDeposit) GetDescription

func (*UpgradeAxelarProxyContractProposalWithDeposit) GetNewProxyAddress

func (m *UpgradeAxelarProxyContractProposalWithDeposit) GetNewProxyAddress() string

func (*UpgradeAxelarProxyContractProposalWithDeposit) GetTitle

func (*UpgradeAxelarProxyContractProposalWithDeposit) Marshal

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

func (*UpgradeAxelarProxyContractProposalWithDeposit) MarshalTo

func (*UpgradeAxelarProxyContractProposalWithDeposit) MarshalToSizedBuffer

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

func (*UpgradeAxelarProxyContractProposalWithDeposit) ProtoMessage

func (*UpgradeAxelarProxyContractProposalWithDeposit) Reset

func (*UpgradeAxelarProxyContractProposalWithDeposit) Size

func (*UpgradeAxelarProxyContractProposalWithDeposit) String

func (*UpgradeAxelarProxyContractProposalWithDeposit) Unmarshal

func (*UpgradeAxelarProxyContractProposalWithDeposit) XXX_DiscardUnknown

func (m *UpgradeAxelarProxyContractProposalWithDeposit) XXX_DiscardUnknown()

func (*UpgradeAxelarProxyContractProposalWithDeposit) XXX_Marshal

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

func (*UpgradeAxelarProxyContractProposalWithDeposit) XXX_Merge

func (*UpgradeAxelarProxyContractProposalWithDeposit) XXX_Size

func (*UpgradeAxelarProxyContractProposalWithDeposit) XXX_Unmarshal

type WinningAxelarCork

type WinningAxelarCork struct {
	Cork        *AxelarCork `protobuf:"bytes,1,opt,name=cork,proto3" json:"cork,omitempty"`
	BlockHeight uint64      `protobuf:"varint,2,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
}

Represents a cork that has received enough votes to be executed

func (*WinningAxelarCork) Descriptor

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

func (*WinningAxelarCork) GetBlockHeight

func (m *WinningAxelarCork) GetBlockHeight() uint64

func (*WinningAxelarCork) GetCork

func (m *WinningAxelarCork) GetCork() *AxelarCork

func (*WinningAxelarCork) Marshal

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

func (*WinningAxelarCork) MarshalTo

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

func (*WinningAxelarCork) MarshalToSizedBuffer

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

func (*WinningAxelarCork) ProtoMessage

func (*WinningAxelarCork) ProtoMessage()

func (*WinningAxelarCork) Reset

func (m *WinningAxelarCork) Reset()

func (*WinningAxelarCork) Size

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

func (*WinningAxelarCork) String

func (m *WinningAxelarCork) String() string

func (*WinningAxelarCork) Unmarshal

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

func (*WinningAxelarCork) XXX_DiscardUnknown

func (m *WinningAxelarCork) XXX_DiscardUnknown()

func (*WinningAxelarCork) XXX_Marshal

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

func (*WinningAxelarCork) XXX_Merge

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

func (*WinningAxelarCork) XXX_Size

func (m *WinningAxelarCork) XXX_Size() int

func (*WinningAxelarCork) XXX_Unmarshal

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

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL