 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Index ¶
- func JsonTx(raw []byte) (cosmosTypes.Tx, error)
- type CancelUnbondingDelegation
- type ChannelChange
- type CoinReceived
- type CoinSpent
- type Commission
- type CompleteRedelegation
- type CompleteUnbonding
- type ConnectionChange
- type CreateCollateralToken
- type CreateMailbox
- type CreateSyntheticToken
- type DecodedMsg
- type DecodedTx
- type Delegate
- type FungibleTokenPacket
- type HyperlaneDispatchEvent
- type HyperlaneProcessEvent
- type HyperlaneReceiveTransferEvent
- type HyperlaneSendTransferEvent
- type ProposalStatus
- type RecvPacket
- type Redelegate
- type Rewards
- type SetMailbox
- type SetToken
- type Slash
- type Unbond
- type UpdateClient
- type WithdrawCommission
- type WithdrawRewards
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type CancelUnbondingDelegation ¶ added in v1.6.0
type CancelUnbondingDelegation struct {
	Amount         *types.Coin
	Validator      string
	Delegator      string
	CreationHeight int64
}
    func NewCancelUnbondingDelegation ¶ added in v1.6.0
func NewCancelUnbondingDelegation(m map[string]any) (body CancelUnbondingDelegation, err error)
type ChannelChange ¶ added in v1.13.0
type ChannelChange struct {
	ChannelId             string
	ConnectionId          string
	CounterpartyChannelId string
	CounterpartyPortId    string
	PortId                string
}
    func NewChannelChange ¶ added in v1.13.0
func NewChannelChange(m map[string]any) (cc ChannelChange)
type CoinReceived ¶
func NewCoinReceived ¶
func NewCoinReceived(m map[string]any) (body CoinReceived, err error)
type Commission ¶ added in v1.6.0
func NewCommission ¶ added in v1.6.0
func NewCommission(m map[string]any) (body Commission, err error)
type CompleteRedelegation ¶ added in v1.6.0
type CompleteRedelegation struct {
	Amount        *types.Coin
	Delegator     string
	DestValidator string
	SrcValidator  string
}
    func NewCompleteRedelegation ¶ added in v1.6.0
func NewCompleteRedelegation(m map[string]any) (body CompleteRedelegation, err error)
type CompleteUnbonding ¶ added in v1.6.0
func NewCompleteUnbonding ¶ added in v1.6.0
func NewCompleteUnbonding(m map[string]any) (body CompleteUnbonding, err error)
type ConnectionChange ¶ added in v1.13.0
type ConnectionChange struct {
	ClientId                 string
	ConnectionId             string
	CounterpartyClientId     string
	CounterpartyConnectionId string
}
    func NewConnectionOpen ¶ added in v1.13.0
func NewConnectionOpen(m map[string]any) (cc ConnectionChange)
type CreateCollateralToken ¶ added in v1.15.0
func NewCreateCollateralToken ¶ added in v1.15.0
func NewCreateCollateralToken(m map[string]any) (cct CreateCollateralToken, err error)
type CreateMailbox ¶ added in v1.15.0
type CreateMailbox struct {
	MailboxId    string
	Owner        string
	DefaultIsm   string
	DefaultHook  string
	RequiredHook string
	LocalDomain  uint64
}
    func NewCreateMailbox ¶ added in v1.15.0
func NewCreateMailbox(m map[string]any) (cm CreateMailbox, err error)
type CreateSyntheticToken ¶ added in v1.15.0
func NewCreateSyntheticToken ¶ added in v1.15.0
func NewCreateSyntheticToken(m map[string]any) (cst CreateSyntheticToken, err error)
type DecodedMsg ¶
type DecodedMsg struct {
	Msg       storage.Message
	BlobsSize int64
	Addresses []storage.AddressWithType
}
    func Message ¶
func Message( ctx *context.Context, msg cosmosTypes.Msg, position int, status storageTypes.Status, ) (d DecodedMsg, err error)
type DecodedTx ¶
type DecodedTx struct {
	TimeoutHeight uint64
	Memo          string
	Messages      []cosmosTypes.Msg
	Fee           decimal.Decimal
	Signers       map[types.Address][]byte
	Blobs         []*blobTypes.Blob
}
    func NewDecodedTx ¶ added in v1.13.0
func NewDecodedTx() DecodedTx
type FungibleTokenPacket ¶ added in v1.13.0
type FungibleTokenPacket struct {
	Amount   decimal.Decimal
	Denom    string
	Memo     string
	Module   string
	Receiver string
	Sender   string
	Success  string
	Error    string
}
    func NewFungibleTokenPacket ¶ added in v1.13.0
func NewFungibleTokenPacket(m map[string]any) (ftp FungibleTokenPacket)
type HyperlaneDispatchEvent ¶ added in v1.15.0
type HyperlaneDispatchEvent struct {
	OriginMailboxId string
	Sender          string
	Recipient       string
	Destination     uint64
	Message         *util.HyperlaneMessage
}
    func NewHyperlaneDispatchEvent ¶ added in v1.15.0
func NewHyperlaneDispatchEvent(m map[string]any) (hde HyperlaneDispatchEvent, err error)
type HyperlaneProcessEvent ¶ added in v1.15.0
type HyperlaneProcessEvent struct {
	OriginMailboxId string
	Sender          string
	Recipient       string
	MessageId       string
	Origin          uint64
	Message         *util.HyperlaneMessage
}
    func NewHyperlaneProcessEvent ¶ added in v1.15.0
func NewHyperlaneProcessEvent(m map[string]any) (hpe HyperlaneProcessEvent, err error)
type HyperlaneReceiveTransferEvent ¶ added in v1.15.0
type HyperlaneReceiveTransferEvent struct {
	Amount       decimal.Decimal
	Denom        string
	OriginDomain uint64
	Recipient    string
	Sender       string
	TokenId      string
}
    func NewHyperlaneReceiveTransferEvent ¶ added in v1.15.0
func NewHyperlaneReceiveTransferEvent(m map[string]any) (hrte HyperlaneReceiveTransferEvent, err error)
type HyperlaneSendTransferEvent ¶ added in v1.15.0
type HyperlaneSendTransferEvent struct {
	Amount            decimal.Decimal
	Denom             string
	DestinationDomain uint64
	Recipient         string
	Sender            string
	TokenId           string
}
    func NewHyperlaneSendTransferEvent ¶ added in v1.15.0
func NewHyperlaneSendTransferEvent(m map[string]any) (hste HyperlaneSendTransferEvent, err error)
type ProposalStatus ¶ added in v1.12.0
func NewProposalStatus ¶ added in v1.12.0
func NewProposalStatus(m map[string]any) (body ProposalStatus, err error)
type RecvPacket ¶ added in v1.13.0
type RecvPacket struct {
	Ordering      string
	Connection    string
	Data          string
	DstChannel    string
	DstPort       string
	SrcChannel    string
	SrcPort       string
	Sequence      uint64
	Timeout       time.Time
	TimeoutHeight uint64
}
    func NewRecvPacket ¶ added in v1.13.0
func NewRecvPacket(m map[string]any) (rp RecvPacket, err error)
type Redelegate ¶ added in v1.6.0
type Redelegate struct {
	Amount         *types.Coin
	DestValidator  string
	SrcValidator   string
	CompletionTime time.Time
}
    func NewRedelegate ¶ added in v1.6.0
func NewRedelegate(m map[string]any) (body Redelegate, err error)
type SetMailbox ¶ added in v1.15.0
type SetMailbox struct {
	MailboxId         string
	Owner             string
	DefaultIsm        string
	DefaultHook       string
	NewOwner          string
	RenounceOwnership bool
}
    func NewSetMailbox ¶ added in v1.15.0
func NewSetMailbox(m map[string]any) (sm SetMailbox, err error)
type SetToken ¶ added in v1.15.0
type Slash ¶ added in v1.6.0
type UpdateClient ¶ added in v1.13.0
func NewUpdateClient ¶ added in v1.13.0
func NewUpdateClient(m map[string]any) (cc UpdateClient, err error)
type WithdrawCommission ¶ added in v1.6.0
func NewWithdrawCommission ¶ added in v1.6.0
func NewWithdrawCommission(m map[string]any) (body WithdrawCommission, err error)
type WithdrawRewards ¶ added in v1.6.0
func NewWithdrawRewards ¶ added in v1.6.0
func NewWithdrawRewards(m map[string]any) (body WithdrawRewards, err error)
 Click to show internal directories. 
   Click to hide internal directories.