types

package
v1.7.0 Latest Latest
Warning

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

Go to latest
Published: Aug 25, 2022 License: Apache-2.0 Imports: 38 Imported by: 0

Documentation

Overview

Package types is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const (
	// OutgoingBatchTxCheckpointABIJSON checks the ETH ABI for compatability of the OutgoingBatchTx message
	OutgoingBatchTxCheckpointABIJSON = `` /* 756-byte string literal not displayed */

	// ValsetCheckpointABIJSON checks the ETH ABI for compatability of the Valset update message
	ValsetCheckpointABIJSON = `` /* 589-byte string literal not displayed */

	// OutgoingLogicCallABIJSON checks the ETH ABI for compatability of the logic call message
	OutgoingLogicCallABIJSON = `` /* 1153-byte string literal not displayed */

)
View Source
const (
	ERC20 = iota
	ERC721
)
View Source
const (
	// GravityDenomPrefix indicates the prefix for all assests minted by this module
	GravityDenomPrefix = ModuleName

	// GravityDenomSeparator is the separator for gravity denoms
	GravityDenomSeparator = ""

	// ETHContractAddressLen is the length of contract address strings
	ETHContractAddressLen = 42

	// GravityDenomLen is the length of the denoms generated by the gravity module
	GravityDenomLen = len(GravityDenomPrefix) + len(GravityDenomSeparator) + ETHContractAddressLen
)
View Source
const (
	EventTypeObservation               = "observation"
	EventTypeOutgoingBatch             = "outgoing_batch"
	EventTypeMultisigUpdateRequest     = "multisig_update_request"
	EventTypeOutgoingBatchCanceled     = "outgoing_batch_canceled"
	EventTypeOutgoingLogicCallCanceled = "outgoing_logic_call_canceled"
	EventTypeBridgeWithdrawalReceived  = "withdrawal_received"
	EventTypeBridgeDepositReceived     = "deposit_received"
	EventTypeBridgeWithdrawCanceled    = "withdraw_canceled"

	AttributeKeyAttestationID     = "attestation_id"
	AttributeKeyBatchConfirmKey   = "batch_confirm_key"
	AttributeKeyValsetConfirmKey  = "valset_confirm_key"
	AttributeKeyMultisigID        = "multisig_id"
	AttributeKeyOutgoingBatchID   = "batch_id"
	AttributeKeyOutgoingTXID      = "outgoing_tx_id"
	AttributeKeyAttestationType   = "attestation_type"
	AttributeKeyContract          = "bridge_contract"
	AttributeKeyNonce             = "nonce"
	AttributeKeyValsetNonce       = "valset_nonce"
	AttributeKeyBatchNonce        = "batch_nonce"
	AttributeKeyBridgeChainID     = "gravity_id"
	AttributeKeySetOperatorAddr   = "set_operator_address"
	AttributeKeyInvalidationID    = "logic_call_invalidation_id"
	AttributeKeyInvalidationNonce = "logic_call_invalidation_nonce"
)
View Source
const (
	// todo: implement oracle constants as params
	DefaultParamspace = ModuleName
	AttestationPeriod = 24 * time.Hour // TODO: value????
)

DefaultParamspace defines the default auth module parameter subspace

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

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

	// RouterKey is the module name router key
	RouterKey = ModuleName

	// QuerierRoute to be used for querierer msgs
	QuerierRoute = ModuleName

	WlKTokenAddress = "0x0000000000000000000000ffff"
)
View Source
const (

	// This retrieves a specific validator set by it's nonce
	// used to compare what's on Ethereum with what's in Cosmos
	// to perform slashing / validation of system consistency
	QueryValsetRequest = "valsetRequest"
	// Gets all the confirmation signatures for a given validator
	// set, used by the relayer to package the validator set and
	// it's signatures into an Ethereum transaction
	QueryValsetConfirmsByNonce = "valsetConfirms"
	// Gets the last N (where N is currently 5) validator sets that
	// have been produced by the chain. Useful to see if any recently
	// signed requests can be submitted.
	QueryLastValsetRequests = "lastValsetRequests"
	// Gets a list of unsigned valsets for a given validators delegate
	// orchestrator address. Up to 100 are sent at a time
	QueryLastPendingValsetRequestByAddr = "lastPendingValsetRequest"

	QueryCurrentValset = "currentValset"
	// TODO remove this, it's not used, getting one confirm at a time
	// is mostly useless
	QueryValsetConfirm = "valsetConfirm"

	// This retrieves a specific batch by it's nonce and token contract
	// or in the case of a Cosmos originated address it's denom
	QueryBatch = "batch"
	// Get the last unsigned batch (of any denom) for the validators
	// orchestrator to sign
	QueryLastPendingBatchRequestByAddr = "lastPendingBatchRequest"
	// gets the last 100 outgoing batches, regardless of denom, useful
	// for a relayer to see what is available to relay
	QueryLatestTxBatches = "lastBatches"
	// Used by the relayer to package a batch with signatures required
	// to submit to Ethereum
	QueryBatchConfirms = "batchConfirms"
	// Used to query all pending SendToEth transactions and fees available for each
	// token type, a relayer can then estimate their potential profit when requesting
	// a batch
	QueryBatchFees = "batchFees"

	// Token mapping
	// This retrieves the denom which is represented by a given ERC20 contract
	QueryERC20ToDenom = "ERC20ToDenom"
	// This retrieves the ERC20 contract which represents a given denom
	QueryDenomToERC20 = "DenomToERC20"

	// This retrieves the denom which is represented by a given ERC721 contract
	QueryERC721ToDenom = "ERC721ToDenom"
	// This retrieves the ERC721 contract which represents a given denom
	QueryDenomToERC721 = "DenomToERC721"

	// Query pending transactions
	QueryPendingSendToEths = "PendingSendToEth"

	// Query last event nonce
	QueryLastEventNonce = "lastEventNonce"

	// Query last valset confirm nonce
	QueryLastValsetConfirmNonce = "lastValsetConfirmNonce"

	//
	QueryTxId       = "txId"
	QueryEventNonce = "eventNonce"

	QueryObservedEventNonce = "observedEventNonce"
)
View Source
const (
	TypeMsgDepositClaim = "deposit_claim"
)
View Source
const (
	TypeMsgWithdraw721Claim = "withdraw_721_claim"
)
View Source
const (
	TypeMsgWithdrawClaim = "withdraw_claim"
)

Variables

View Source
var (
	ErrInvalidLengthBatch        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowBatch          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupBatch = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInternal                = sdkerrors.Register(ModuleName, 1, "internal")
	ErrDuplicate               = sdkerrors.Register(ModuleName, 2, "duplicate")
	ErrInvalid                 = sdkerrors.Register(ModuleName, 3, "invalid")
	ErrTimeout                 = sdkerrors.Register(ModuleName, 4, "timeout")
	ErrUnknown                 = sdkerrors.Register(ModuleName, 5, "unknown")
	ErrEmpty                   = sdkerrors.Register(ModuleName, 6, "empty")
	ErrOutdated                = sdkerrors.Register(ModuleName, 7, "outdated")
	ErrUnsupported             = sdkerrors.Register(ModuleName, 8, "unsupported")
	ErrNonContiguousEventNonce = sdkerrors.Register(ModuleName, 9, "non contiguous event nonce")
	ErrNoContractMetaData      = sdkerrors.Register(ModuleName, 10, "contract metadata not found")
	ErrMappedContractNotFound  = sdkerrors.Register(ModuleName, 11, "mapped contract not found")
	ErrBatchIDNil              = sdkerrors.Register(ModuleName, 12, "batch id can not be nil")

	ErrDenomDecimal = sdkerrors.Register(ModuleName, 13, "denom decimal invalid")
	ErrDenomName    = sdkerrors.Register(ModuleName, 14, "denom name invalid")
	ErrDenomSymbol  = sdkerrors.Register(ModuleName, 15, "denom symbol invalid")

	ErrQueryDenom         = sdkerrors.Register(ModuleName, 16, "denom query failed")
	ErrQueryDenomMismatch = sdkerrors.Register(ModuleName, 17, "denom query mismatch")

	ErrQueryERC20  = sdkerrors.Register(ModuleName, 18, "erc20 query failed")
	ErrNoTxToRelay = sdkerrors.Register(ModuleName, 19, "no such tx to request batch")
)
View Source
var (
	// AttestationVotesPowerThreshold threshold of votes power to succeed
	AttestationVotesPowerThreshold = sdk.NewInt(66)

	// ParamsStoreKeySignedValsetsWindow stores the signed blocks window
	ParamsStoreKeySignedValsetsWindow = []byte("SignedValsetsWindow")

	// ParamsStoreKeySignedBatchesWindow stores the signed blocks window
	ParamsStoreKeySignedBatchesWindow = []byte("SignedBatchesWindow")

	// ParamsStoreKeySignedClaimsWindow stores the signed blocks window
	ParamsStoreKeySignedClaimsWindow = []byte("SignedClaimsWindow")

	// ParamsStoreKeySignedClaimsWindow stores the signed blocks window
	ParamsStoreKeyTargetBatchTimeout = []byte("TargetBatchTimeout")

	// ParamsStoreKeySignedClaimsWindow stores the signed blocks window
	ParamsStoreKeyAverageBlockTime = []byte("AverageBlockTime")

	// ParamsStoreKeySignedClaimsWindow stores the signed blocks window
	ParamsStoreKeyAverageEthereumBlockTime = []byte("AverageEthereumBlockTime")

	// ParamsStoreSlashFractionValset stores the slash fraction valset
	ParamsStoreSlashFractionValset = []byte("SlashFractionValset")

	// ParamsStoreSlashFractionBatch stores the slash fraction Batch
	ParamsStoreSlashFractionBatch = []byte("SlashFractionBatch")

	// ParamsStoreSlashFractionClaim stores the slash fraction Claim
	ParamsStoreSlashFractionClaim = []byte("SlashFractionClaim")

	// ParamsStoreSlashFractionConflictingClaim stores the slash fraction ConflictingClaim
	ParamsStoreSlashFractionConflictingClaim = []byte("SlashFractionConflictingClaim")

	//  ParamStoreUnbondSlashingValsetsWindow stores unbond slashing valset window
	ParamStoreUnbondSlashingValsetsWindow = []byte("UnbondSlashingValsetsWindow")
)
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 (
	// EthAddressKey indexes cosmos validator account addresses
	// i.e. cosmos1ahx7f8wyertuus9r20284ej0asrs085case3kn
	EthAddressKey = []byte{0x1}

	// ValsetRequestKey indexes valset requests by nonce
	ValsetRequestKey = []byte{0x2}

	// ValsetConfirmKey indexes valset confirmations by nonce and the validator account address
	// i.e cosmos1ahx7f8wyertuus9r20284ej0asrs085case3kn
	ValsetConfirmKey = []byte{0x3}

	// OracleClaimKey Claim details by nonce and validator address
	// i.e. cosmosvaloper1ahx7f8wyertuus9r20284ej0asrs085case3kn
	// A claim is named more intuitively than an Attestation, it is literally
	// a validator making a claim to have seen something happen. Claims are
	// attached to attestations which can be thought of as 'the event' that
	// will eventually be executed.
	OracleClaimKey = []byte{0x4}

	// OracleAttestationKey attestation details by nonce and validator address
	// i.e. cosmosvaloper1ahx7f8wyertuus9r20284ej0asrs085case3kn
	// An attestation can be thought of as the 'event to be executed' while
	// the Claims are an individual validator saying that they saw an event
	// occur the Attestation is 'the event' that multiple claims vote on and
	// eventually executes
	OracleAttestationKey = []byte{0x5}

	// OutgoingTXPoolKey indexes the last nonce for the outgoing tx pool
	OutgoingTXPoolKey = []byte{0x6}

	// SequenceKeyPrefix indexes different txids
	SequenceKeyPrefix = []byte{0x7}

	// DenomiatorPrefix indexes token contract addresses from ETH on gravity
	DenomiatorPrefix = []byte{0x8}

	// SecondIndexOutgoingTXFeeKey indexes fee amounts by token contract address
	SecondIndexOutgoingTXFeeKey = []byte{0x9}

	// OutgoingTXBatchKey indexes outgoing tx batches under a nonce and token address
	OutgoingTXBatchKey = []byte{0xa}

	// OutgoingTXBatchBlockKey indexes outgoing tx batches under a block height and token address
	OutgoingTXBatchBlockKey = []byte{0xb}

	// OutgoingTXRequestBatchKey indexes outgoing tx batches under a nonce and token address
	OutgoingTXRequestBatchKey = []byte{0xc}

	// SecondIndexNonceByClaimKey indexes latest nonce for a given claim type
	SecondIndexNonceByClaimKey = []byte{0xf}

	// BatchConfirmKey indexes validator confirmations by token contract address
	BatchConfirmKey = []byte{0xe1}

	// KeyLastTXPoolID indexes the lastTxPoolID
	KeyLastTXPoolID = append(SequenceKeyPrefix, []byte("lastTxPoolId")...)

	// KeyLastOutgoingBatchID indexes the lastBatchID
	KeyLastOutgoingBatchID = append(SequenceKeyPrefix, []byte("lastBatchId")...)

	// KeyOrchestratorAddress indexes the validator keys for an orchestrator
	KeyOrchestratorAddress = []byte{0xe8}

	// KeyOutgoingLogicCall indexes the outgoing logic calls
	KeyOutgoingLogicCall = []byte{0xde}

	// KeyOutgoingLogicConfirm indexes the outgoing logic confirms
	KeyOutgoingLogicConfirm = []byte{0xae}

	// save gravity list
	GravityListKey = []byte{0xaf}

	// LastEventNonceByValidatorKey indexes lateset event nonce by validator
	LastEventNonceByValidatorKey = []byte{0xf1}

	// LastObservedEventNonceKey indexes the latest event nonce
	LastObservedEventNonceKey = []byte{0xf2}

	// LastValsetConfirmNonceKey indexes the latest valset confirm nonce
	LastValsetConfirmNonceKey = []byte{0xf3}

	// LastObservedEthereumBlockHeightKey indexes the latest Ethereum block height
	LastObservedEthereumBlockHeightKey = []byte{0xf4}

	// WlkToEthKey prefixes the index of wlk asset to eth ERC20s
	WlkToEthKey = []byte{0xf5}

	// EthToWlkKey prefixes the index of eth originated assets ERC20s to wlk
	EthToWlkKey = []byte{0xf6}

	// LastSlashedValsetNonce indexes the latest slashed valset nonce
	LastSlashedValsetNonce = []byte{0xf7}

	// LatestValsetNonce indexes the latest valset nonce
	LatestValsetNonce = []byte{0xf8}

	// LastSlashedBatchBlock indexes the latest slashed batch block height
	LastSlashedBatchBlock = []byte{0xf9}

	// LastUnBondingBlockHeight indexes the last validator unbonding block height
	LastUnBondingBlockHeight = []byte{0xfa}

	ContractMetaDataKey = []byte{0xfb}

	TxIdKey = []byte{0xfc}

	TxIdTokenTypeKey = []byte{0xcc}

	EventNonceKey = []byte{0xfd}

	// WlkToEthKey prefixes the index of wlk asset to eth ERC20s
	WRC721ToEth721Key = []byte{0xfe}

	// EthToWlkKey prefixes the index of eth originated assets ERC20s to wlk
	ERC721ToWRC721Key = []byte{0xff}
)
View Source
var (
	ErrInvalidLengthMsgs        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowMsgs          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupMsgs = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthPool        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowPool          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupPool = 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 (
	ErrInvalidLengthTypes        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowTypes          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupTypes = fmt.Errorf("proto: unexpected end of group")
)
View Source
var ClaimType_name = map[int32]string{
	0: "CLAIM_TYPE_UNSPECIFIED",
	1: "CLAIM_TYPE_DEPOSIT",
	2: "CLAIM_TYPE_DEPOSIT721",
	3: "CLAIM_TYPE_WITHDRAW",
	4: "CLAIM_TYPE_ERC20_DEPLOYED",
	5: "CLAIM_TYPE_ERC721_DEPLOYED",
	6: "CLAIM_TYPE_LOGIC_CALL_EXECUTED",
	7: "CLAIM_TYPE_VALSET_CONFIRM_NONCE",
}
View Source
var ClaimType_value = map[string]int32{
	"CLAIM_TYPE_UNSPECIFIED":          0,
	"CLAIM_TYPE_DEPOSIT":              1,
	"CLAIM_TYPE_DEPOSIT721":           2,
	"CLAIM_TYPE_WITHDRAW":             3,
	"CLAIM_TYPE_ERC20_DEPLOYED":       4,
	"CLAIM_TYPE_ERC721_DEPLOYED":      5,
	"CLAIM_TYPE_LOGIC_CALL_EXECUTED":  6,
	"CLAIM_TYPE_VALSET_CONFIRM_NONCE": 7,
}
View Source
var GravityCodec *codec.Codec
View Source
var SignType_name = map[int32]string{
	0: "SIGN_TYPE_UNSPECIFIED",
	1: "SIGN_TYPE_ORCHESTRATOR_SIGNED_MULTI_SIG_UPDATE",
	2: "SIGN_TYPE_ORCHESTRATOR_SIGNED_WITHDRAW_BATCH",
}
View Source
var SignType_value = map[string]int32{
	"SIGN_TYPE_UNSPECIFIED":                          0,
	"SIGN_TYPE_ORCHESTRATOR_SIGNED_MULTI_SIG_UPDATE": 1,
	"SIGN_TYPE_ORCHESTRATOR_SIGNED_WITHDRAW_BATCH":   2,
}
View Source
var SubModuleCdc *codec.ProtoCodec

Functions

func EthAddrGreaterThan added in v1.6.61

func EthAddrGreaterThan(e, o string) bool

EthAddrGreaterThan migrates the Ethereum address less than function

func GetAttestationKey

func GetAttestationKey(eventNonce uint64, claimHash []byte) []byte

GetAttestationKey returns the following key format prefix nonce claim-details-hash [0x5][0 0 0 0 0 0 0 1][fd1af8cec6c67fcf156f1b61fdf91ebc04d05484d007436e75342fc05bbff35a] An attestation is an event multiple people are voting on, this function needs the claim details because each Attestation is aggregating all claims of a specific event, lets say validator X and validator y where making different claims about the same event nonce Note that the claim hash does NOT include the claimer address and only identifies an event

func GetAttestationKeyWithHash

func GetAttestationKeyWithHash(eventNonce uint64, claimHash []byte) []byte

GetAttestationKeyWithHash returns the following key format prefix nonce claim-details-hash [0x5][0 0 0 0 0 0 0 1][fd1af8cec6c67fcf156f1b61fdf91ebc04d05484d007436e75342fc05bbff35a] An attestation is an event multiple people are voting on, this function needs the claim details because each Attestation is aggregating all claims of a specific event, lets say validator X and validator y where making different claims about the same event nonce Note that the claim hash does NOT include the claimer address and only identifies an event

func GetBatchConfirmKey

func GetBatchConfirmKey(tokenContract string, batchNonce uint64, validator sdk.AccAddress) []byte

GetBatchConfirmKey returns the following key format prefix eth-contract-address BatchNonce Validator-address [0xe1][0xc783df8a850f42e7F7e57013759C285caa701eB6][0 0 0 0 0 0 0 1][cosmosvaloper1ahx7f8wyertuus9r20284ej0asrs085case3kn] TODO this should be a sdk.AccAddress

func GetClaimKey

func GetClaimKey(details EthereumClaim) []byte

GetClaimKey returns the following key format prefix type cosmos-validator-address nonce attestation-details-hash [0x0][0 0 0 1][cosmosvaloper1ahx7f8wyertuus9r20284ej0asrs085case3kn][0 0 0 0 0 0 0 1][fd1af8cec6c67fcf156f1b61fdf91ebc04d05484d007436e75342fc05bbff35a] The Claim hash identifies a unique event, for example it would have a event nonce, a sender and a receiver. Or an event nonce and a batch nonce. But the Claim is stored indexed with the claimer key to make sure that it is unique.

func GetContractMetaDataKey added in v1.5.53

func GetContractMetaDataKey(contract string) []byte

func GetERC721ToWRC721Key added in v1.6.21

func GetERC721ToWRC721Key(erc721 string) []byte

func GetEthAddressKey

func GetEthAddressKey(validator sdk.AccAddress) []byte

GetEthAddressKey returns the following key format prefix cosmos-validator [0x0][cosmosvaloper1ahx7f8wyertuus9r20284ej0asrs085case3kn]

func GetEthToWlkKey added in v1.5.53

func GetEthToWlkKey(erc20 string) []byte

func GetEventNonceKey added in v1.5.53

func GetEventNonceKey(eventNonce uint64) []byte

func GetFeeSecondIndexKey

func GetFeeSecondIndexKey(fee ERC20Token) []byte

GetFeeSecondIndexKey returns the following key format prefix eth-contract-address fee_amount [0x9][0xc783df8a850f42e7F7e57013759C285caa701eB6][1000000000]

func GetGravityKey added in v1.6.47

func GetGravityKey(gid string) []byte

func GetLastEventNonceByValidatorKey

func GetLastEventNonceByValidatorKey(validator sdk.AccAddress) []byte

GetLastEventNonceByValidatorKey indexes lateset event nonce by validator GetLastEventNonceByValidatorKey returns the following key format prefix cosmos-validator [0x0][cosmos1ahx7f8wyertuus9r20284ej0asrs085case3kn]

func GetOrchestratorAddressKey

func GetOrchestratorAddressKey(orc sdk.AccAddress) []byte

GetOrchestratorAddressKey returns the following key format prefix [0xe8][cosmos1ahx7f8wyertuus9r20284ej0asrs085case3kn]

func GetOutgoingTxBatchBlockKey

func GetOutgoingTxBatchBlockKey(block uint64) []byte

GetOutgoingTxBatchBlockKey returns the following key format prefix blockheight [0xb][0 0 0 0 2 1 4 3]

func GetOutgoingTxBatchKey

func GetOutgoingTxBatchKey(tokenContract string, nonce uint64) []byte

GetOutgoingTxBatchKey returns the following key format prefix nonce eth-contract-address [0xa][0 0 0 0 0 0 0 1][0xc783df8a850f42e7F7e57013759C285caa701eB6]

func GetOutgoingTxPoolKey

func GetOutgoingTxPoolKey(id uint64) []byte

GetOutgoingTxPoolKey returns the following key format prefix id [0x6][0 0 0 0 0 0 0 1]

func GetOutgoingTxRequestBatchKey added in v1.6.21

func GetOutgoingTxRequestBatchKey(tokenContract string, nonce uint64) []byte

func GetTxIdKey added in v1.5.53

func GetTxIdKey(txId uint64) []byte

func GetTxIdTokenTypeKey added in v1.6.70

func GetTxIdTokenTypeKey(txId uint64) []byte

func GetValsetConfirmKey

func GetValsetConfirmKey(nonce uint64, validator sdk.AccAddress) []byte

GetValsetConfirmKey returns the following key format prefix nonce validator-address [0x0][0 0 0 0 0 0 0 1][cosmos1ahx7f8wyertuus9r20284ej0asrs085case3kn] MARK finish-batches: this is where the key is created in the old (presumed working) code

func GetValsetKey

func GetValsetKey(nonce uint64) []byte

GetValsetKey returns the following key format prefix nonce [0x0][0 0 0 0 0 0 0 1]

func GetWRC721ToERC721Key added in v1.6.21

func GetWRC721ToERC721Key(wrc721 string) []byte

func GetWlKToEthKey added in v1.5.53

func GetWlKToEthKey(denom string) []byte

func GravityDenom

func GravityDenom(tokenContract string) string

func GravityDenomToERC20

func GravityDenomToERC20(denom string) (string, error)

func GravityDenomToERC721 added in v1.6.21

func GravityDenomToERC721(denom string) (string, error)

func NewEthereumSignature

func NewEthereumSignature(hash []byte, privateKey *ecdsa.PrivateKey) ([]byte, error)

NewEthereumSignature creates a new signuature over a given byte array

func ParamKeyTable

func ParamKeyTable() paramtypes.KeyTable

ParamKeyTable for auth module

func RegisterCodec

func RegisterCodec(cdc *codec.Codec)

RegisterCodec registers concrete types on the Amino codec

func RegisterInterfaces added in v1.5.53

func RegisterInterfaces(registry codectypes.InterfaceRegistry)

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)

func SetBinary added in v1.5.53

func SetBinary(registry codectypes.InterfaceRegistry)

func UInt64Bytes

func UInt64Bytes(n uint64) []byte

UInt64Bytes uses the SDK byte marshaling to encode a uint64

func UInt64FromBytes

func UInt64FromBytes(s []byte) uint64

UInt64FromBytes create uint from binary big endian representation

func UInt64FromString

func UInt64FromString(s string) (uint64, error)

UInt64FromString to parse out a uint64 for a nonce

func ValidateEthAddress

func ValidateEthAddress(a string) error

ValidateEthAddress validates the ethereum address strings

func ValidateEthereumSignature

func ValidateEthereumSignature(hash []byte, signature []byte, ethAddress string) error

ValidateEthereumSignature takes a message, an associated signature and public key and returns an error if the signature isn't valid

Types

type Attestation

type Attestation struct {
	Observed bool          `protobuf:"varint,1,opt,name=observed,proto3" json:"observed,omitempty"`
	Votes    []string      `protobuf:"bytes,2,rep,name=votes,proto3" json:"votes,omitempty"`
	Height   uint64        `protobuf:"varint,3,opt,name=height,proto3" json:"height,omitempty"`
	Claim    EthereumClaim `protobuf:"bytes,4,opt,name=claim,proto3" json:"claim"`
}

Attestation is an aggregate of `claims` that eventually becomes `observed` by all orchestrators EVENT_NONCE: EventNonce a nonce provided by the gravity contract that is unique per event fired These event nonces must be relayed in order. This is a correctness issue, if relaying out of order transaction replay attacks become possible OBSERVED: Observed indicates that >67% of validators have attested to the event, and that the event should be executed by the gravity state machine

The actual content of the claims is passed in with the transaction making the claim and then passed through the call stack alongside the attestation while it is processed the key in which the attestation is stored is keyed on the exact details of the claim but there is no reason to store those exact details becuause the next message sender will kindly provide you with them.

func (*Attestation) GetClaim

func (m *Attestation) GetClaim() EthereumClaim

func (*Attestation) GetHeight

func (m *Attestation) GetHeight() uint64

func (*Attestation) GetVotes

func (m *Attestation) GetVotes() []string

type BatchFees

type BatchFees struct {
	Token     string                                 `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
	TotalFees github_com_cosmos_cosmos_sdk_types.Int `` /* 128-byte string literal not displayed */
}

func (*BatchFees) Descriptor

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

func (*BatchFees) GetToken

func (m *BatchFees) GetToken() string

func (*BatchFees) Marshal

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

func (*BatchFees) MarshalTo

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

func (*BatchFees) MarshalToSizedBuffer

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

func (*BatchFees) ProtoMessage

func (*BatchFees) ProtoMessage()

func (*BatchFees) Reset

func (m *BatchFees) Reset()

func (*BatchFees) Size

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

func (*BatchFees) String

func (m *BatchFees) String() string

func (*BatchFees) Unmarshal

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

func (*BatchFees) XXX_DiscardUnknown

func (m *BatchFees) XXX_DiscardUnknown()

func (*BatchFees) XXX_Marshal

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

func (*BatchFees) XXX_Merge

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

func (*BatchFees) XXX_Size

func (m *BatchFees) XXX_Size() int

func (*BatchFees) XXX_Unmarshal

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

type BridgeValidator

type BridgeValidator struct {
	Power           uint64 `protobuf:"varint,1,opt,name=power,proto3" json:"power,omitempty"`
	EthereumAddress string `protobuf:"bytes,2,opt,name=ethereum_address,json=ethereumAddress,proto3" json:"ethereum_address,omitempty"`
}

BridgeValidator represents a validator's ETH address and its power

func (*BridgeValidator) Descriptor

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

func (*BridgeValidator) GetEthereumAddress

func (m *BridgeValidator) GetEthereumAddress() string

func (*BridgeValidator) GetPower

func (m *BridgeValidator) GetPower() uint64

func (*BridgeValidator) Marshal

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

func (*BridgeValidator) MarshalTo

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

func (*BridgeValidator) MarshalToSizedBuffer

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

func (*BridgeValidator) ProtoMessage

func (*BridgeValidator) ProtoMessage()

func (*BridgeValidator) Reset

func (m *BridgeValidator) Reset()

func (*BridgeValidator) Size

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

func (*BridgeValidator) String

func (m *BridgeValidator) String() string

func (*BridgeValidator) Unmarshal

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

func (*BridgeValidator) ValidateBasic

func (b *BridgeValidator) ValidateBasic() error

ValidateBasic performs stateless checks on validity

func (*BridgeValidator) XXX_DiscardUnknown

func (m *BridgeValidator) XXX_DiscardUnknown()

func (*BridgeValidator) XXX_Marshal

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

func (*BridgeValidator) XXX_Merge

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

func (*BridgeValidator) XXX_Size

func (m *BridgeValidator) XXX_Size() int

func (*BridgeValidator) XXX_Unmarshal

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

type BridgeValidators

type BridgeValidators []*BridgeValidator

BridgeValidators is the sorted set of validator data for Ethereum bridge MultiSig set

func (BridgeValidators) GetPowers

func (b BridgeValidators) GetPowers() []uint64

GetPowers returns only the power values for all members

func (BridgeValidators) HasDuplicates

func (b BridgeValidators) HasDuplicates() bool

HasDuplicates returns true if there are duplicates in the set

func (BridgeValidators) PowerDiff

func (b BridgeValidators) PowerDiff(c BridgeValidators) float64

PowerDiff returns the difference in power between two bridge validator sets TODO: this needs to be potentially refactored

func (BridgeValidators) Sort

func (b BridgeValidators) Sort()

Sort sorts the validators by power

func (BridgeValidators) TotalPower

func (b BridgeValidators) TotalPower() (out uint64)

TotalPower returns the total power in the bridge validator set

func (BridgeValidators) ValidateBasic

func (b BridgeValidators) ValidateBasic() error

ValidateBasic performs stateless checks

type ClaimType

type ClaimType int32

ClaimType is the cosmos type of an event from the counterpart chain that can be handled

const (
	CLAIM_TYPE_UNSPECIFIED          ClaimType = 0
	CLAIM_TYPE_DEPOSIT              ClaimType = 1
	CLAIM_TYPE_DEPOSIT721           ClaimType = 2
	CLAIM_TYPE_WITHDRAW             ClaimType = 3
	CLAIM_TYPE_ERC20_DEPLOYED       ClaimType = 4
	CLAIM_TYPE_ERC721_DEPLOYED      ClaimType = 5
	CLAIM_TYPE_LOGIC_CALL_EXECUTED  ClaimType = 6
	CLAIM_TYPE_VALSET_CONFIRM_NONCE ClaimType = 7
)

func (ClaimType) String

func (x ClaimType) String() string

type ERC20ToDenom

type ERC20ToDenom struct {
	Erc20 string `protobuf:"bytes,1,opt,name=erc20,proto3" json:"erc20,omitempty"`
	Denom string `protobuf:"bytes,2,opt,name=denom,proto3" json:"denom,omitempty"`
}

This records the relationship between an ERC20 token and the denom of the corresponding Cosmos originated asset

func (*ERC20ToDenom) Descriptor

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

func (*ERC20ToDenom) GetDenom

func (m *ERC20ToDenom) GetDenom() string

func (*ERC20ToDenom) GetErc20

func (m *ERC20ToDenom) GetErc20() string

func (*ERC20ToDenom) Marshal

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

func (*ERC20ToDenom) MarshalTo

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

func (*ERC20ToDenom) MarshalToSizedBuffer

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

func (*ERC20ToDenom) ProtoMessage

func (*ERC20ToDenom) ProtoMessage()

func (*ERC20ToDenom) Reset

func (m *ERC20ToDenom) Reset()

func (*ERC20ToDenom) Size

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

func (*ERC20ToDenom) String

func (m *ERC20ToDenom) String() string

func (*ERC20ToDenom) Unmarshal

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

func (*ERC20ToDenom) XXX_DiscardUnknown

func (m *ERC20ToDenom) XXX_DiscardUnknown()

func (*ERC20ToDenom) XXX_Marshal

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

func (*ERC20ToDenom) XXX_Merge

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

func (*ERC20ToDenom) XXX_Size

func (m *ERC20ToDenom) XXX_Size() int

func (*ERC20ToDenom) XXX_Unmarshal

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

type ERC20Token

type ERC20Token struct {
	Contract string  `protobuf:"bytes,1,opt,name=contract,proto3" json:"contract,omitempty"`
	Amount   sdk.Int `protobuf:"bytes,2,opt,name=amount,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"amount"`
}

ERC20Token unique identifier for an Ethereum ERC20 token. CONTRACT: The contract address on ETH of the token, this could be a Cosmos originated token, if so it will be the ERC20 address of the representation (note: developers should look up the token symbol using the address on ETH to display for UI)

func NewERC20Token

func NewERC20Token(amount uint64, contract string) *ERC20Token

NewERC20Token returns a new instance of an ERC20

func NewSDKIntERC20Token

func NewSDKIntERC20Token(amount sdk.Int, contract string) *ERC20Token

func (*ERC20Token) Add

func (e *ERC20Token) Add(o *ERC20Token) *ERC20Token

Add adds one ERC20 to another TODO: make this return errors instead

func (*ERC20Token) GravityCoin

func (e *ERC20Token) GravityCoin() sdk.Coin

GravityCoin returns the gravity representation of the ERC20

func (*ERC20Token) ValidateBasic

func (e *ERC20Token) ValidateBasic() error

ValidateBasic permforms stateless validation

type ERC721ToDenom added in v1.6.21

type ERC721ToDenom struct {
	Erc721 string `protobuf:"bytes,1,opt,name=erc721,proto3" json:"erc20,omitempty"`
	Denom  string `protobuf:"bytes,2,opt,name=denom,proto3" json:"denom,omitempty"`
}

type EthereumClaim

type EthereumClaim interface {
	// GetEventNonce All Ethereum claims that we relay from the Gravity contract and into the module
	// have a nonce that is monotonically increasing and unique, since this nonce is
	// issued by the Ethereum contract it is immutable and must be agreed on by all validators
	// any disagreement on what claim goes to what nonce means someone is lying.
	GetEventNonce() uint64
	// GetBlockHeight The block height that the claimed event occurred on. This EventNonce provides sufficient
	// ordering for the execution of all claims. The block height is used only for batchTimeouts + logicTimeouts
	// when we go to create a new batch we set the timeout some number of batches out from the last
	// known height plus projected block progress since then.
	GetBlockHeight() uint64
	// GetClaimer the delegate address of the claimer, for MsgDepositClaim and MsgWithdrawClaim
	// this is sent in as the sdk.AccAddress of the delegated key. it is up to the user
	// to disambiguate this into a sdk.ValAddress
	GetClaimer() sdk.AccAddress
	// GetType Which type of claim this is
	GetType() ClaimType
	ValidateBasic() error
	ClaimHash() []byte
}

EthereumClaim represents a claim on ethereum state

type GenesisState

type GenesisState struct {
	Params       *Params                      `protobuf:"bytes,1,opt,name=params,proto3" json:"params,omitempty"`
	Valsets      []*Valset                    `protobuf:"bytes,3,rep,name=valsets,proto3" json:"valsets,omitempty"`
	DelegateKeys []*MsgSetOrchestratorAddress `protobuf:"bytes,10,rep,name=delegate_keys,json=delegateKeys,proto3" json:"delegate_keys,omitempty"`
	Gravitys     map[string]GravityData       `json:"gravitys,omitempty"`
}

GenesisState struct

func DefaultGenesisState

func DefaultGenesisState() *GenesisState

DefaultGenesisState returns empty genesis state TODO: set some better defaults here

func (*GenesisState) Descriptor

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

func (*GenesisState) GetDelegateKeys

func (m *GenesisState) GetDelegateKeys() []*MsgSetOrchestratorAddress

func (*GenesisState) GetParams

func (m *GenesisState) GetParams() *Params

func (*GenesisState) GetValsets

func (m *GenesisState) GetValsets() []*Valset

func (*GenesisState) ProtoMessage

func (*GenesisState) ProtoMessage()

func (*GenesisState) Reset

func (m *GenesisState) Reset()

func (*GenesisState) String

func (m *GenesisState) String() string

func (GenesisState) ValidateBasic

func (s GenesisState) ValidateBasic() error

ValidateBasic validates genesis state by looping through the params and calling their validation functions

func (*GenesisState) XXX_DiscardUnknown

func (m *GenesisState) XXX_DiscardUnknown()

type GravityData added in v1.6.47

type GravityData struct {
	LastObservedNonce  uint64                `protobuf:"varint,2,opt,name=last_observed_nonce,json=lastObservedNonce,proto3" json:"last_observed_nonce,omitempty"`
	ValsetConfirms     []*MsgValsetConfirm   `protobuf:"bytes,4,rep,name=valset_confirms,json=valsetConfirms,proto3" json:"valset_confirms,omitempty"`
	Batches            []*OutgoingTxBatch    `protobuf:"bytes,5,rep,name=batches,proto3" json:"batches,omitempty"`
	BatchConfirms      []MsgConfirmBatch     `protobuf:"bytes,6,rep,name=batch_confirms,json=batchConfirms,proto3" json:"batch_confirms"`
	Attestations       []Attestation         `protobuf:"bytes,9,rep,name=attestations,proto3" json:"attestations"`
	Erc20ToDenoms      []*ERC20ToDenom       `protobuf:"bytes,11,rep,name=erc20_to_denoms,json=erc20ToDenoms,proto3" json:"erc20_to_denoms,omitempty"`
	UnbatchedTransfers []*OutgoingTransferTx `protobuf:"bytes,12,rep,name=unbatched_transfers,json=unbatchedTransfers,proto3" json:"unbatched_transfers,omitempty"`
}

GenesisState struct

type GravityInterface added in v1.6.47

type GravityInterface interface {
	GetGravityID() string
}

type IDSet

type IDSet struct {
	Ids []uint64 `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids,omitempty"`
}

IDSet represents a set of IDs

func (*IDSet) Descriptor

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

func (*IDSet) GetIds

func (m *IDSet) GetIds() []uint64

func (*IDSet) Marshal

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

func (*IDSet) MarshalTo

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

func (*IDSet) MarshalToSizedBuffer

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

func (*IDSet) ProtoMessage

func (*IDSet) ProtoMessage()

func (*IDSet) Reset

func (m *IDSet) Reset()

func (*IDSet) Size

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

func (*IDSet) String

func (m *IDSet) String() string

func (*IDSet) Unmarshal

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

func (*IDSet) XXX_DiscardUnknown

func (m *IDSet) XXX_DiscardUnknown()

func (*IDSet) XXX_Marshal

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

func (*IDSet) XXX_Merge

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

func (*IDSet) XXX_Size

func (m *IDSet) XXX_Size() int

func (*IDSet) XXX_Unmarshal

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

type LastObservedEthereumBlockHeight

type LastObservedEthereumBlockHeight struct {
	CosmosBlockHeight   uint64 `protobuf:"varint,1,opt,name=cosmos_block_height,json=cosmosBlockHeight,proto3" json:"cosmos_block_height,omitempty"`
	EthereumBlockHeight uint64 `protobuf:"varint,2,opt,name=ethereum_block_height,json=ethereumBlockHeight,proto3" json:"ethereum_block_height,omitempty"`
}

LastObservedEthereumBlockHeight stores the last observed Ethereum block height along with the Cosmos block height that it was observed at. These two numbers can be used to project outward and always produce batches with timeouts in the future even if no Ethereum block height has been relayed for a long time

func (*LastObservedEthereumBlockHeight) Descriptor

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

func (*LastObservedEthereumBlockHeight) GetCosmosBlockHeight

func (m *LastObservedEthereumBlockHeight) GetCosmosBlockHeight() uint64

func (*LastObservedEthereumBlockHeight) GetEthereumBlockHeight

func (m *LastObservedEthereumBlockHeight) GetEthereumBlockHeight() uint64

func (*LastObservedEthereumBlockHeight) Marshal

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

func (*LastObservedEthereumBlockHeight) MarshalTo

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

func (*LastObservedEthereumBlockHeight) MarshalToSizedBuffer

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

func (*LastObservedEthereumBlockHeight) ProtoMessage

func (*LastObservedEthereumBlockHeight) ProtoMessage()

func (*LastObservedEthereumBlockHeight) Reset

func (*LastObservedEthereumBlockHeight) Size

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

func (*LastObservedEthereumBlockHeight) String

func (*LastObservedEthereumBlockHeight) Unmarshal

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

func (*LastObservedEthereumBlockHeight) XXX_DiscardUnknown

func (m *LastObservedEthereumBlockHeight) XXX_DiscardUnknown()

func (*LastObservedEthereumBlockHeight) XXX_Marshal

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

func (*LastObservedEthereumBlockHeight) XXX_Merge

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

func (*LastObservedEthereumBlockHeight) XXX_Size

func (m *LastObservedEthereumBlockHeight) XXX_Size() int

func (*LastObservedEthereumBlockHeight) XXX_Unmarshal

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

type MetaData added in v1.5.53

type MetaData struct {
	Symbol   string
	Name     string
	Decimals uint64
}

type MsgCancelSendToEth

type MsgCancelSendToEth struct {
	TransactionId uint64 `protobuf:"varint,1,opt,name=transaction_id,json=transactionId,proto3" json:"transaction_id,omitempty"`
	Sender        string `protobuf:"bytes,2,opt,name=sender,proto3" json:"sender,omitempty"`
	GravityID     string `protobuf:"bytes,3,opt,name=gravity_id,proto3" json:"gravity_id"`
}

This call allows the sender (and only the sender) to cancel a given MsgSendToEth and recieve a refund of the tokens

func NewMsgCancelSendToEth

func NewMsgCancelSendToEth(val sdk.AccAddress, id uint64) *MsgCancelSendToEth

NewMsgCancelSendToEth returns a new msgSetOrchestratorAddress

func (*MsgCancelSendToEth) Bytes

func (msg *MsgCancelSendToEth) Bytes() []byte

func (*MsgCancelSendToEth) Descriptor

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

func (MsgCancelSendToEth) GetFromAddress

func (msg MsgCancelSendToEth) GetFromAddress() sdk.AccAddress

func (*MsgCancelSendToEth) GetGravityID added in v1.6.47

func (m *MsgCancelSendToEth) GetGravityID() string

func (*MsgCancelSendToEth) GetSender

func (m *MsgCancelSendToEth) GetSender() string

func (*MsgCancelSendToEth) GetSignBytes

func (msg *MsgCancelSendToEth) GetSignBytes() []byte

GetSignBytes encodes the message for signing

func (*MsgCancelSendToEth) GetSigners

func (msg *MsgCancelSendToEth) GetSigners() []sdk.AccAddress

GetSigners defines whose signature is required

func (*MsgCancelSendToEth) GetTransactionId

func (m *MsgCancelSendToEth) GetTransactionId() uint64

func (*MsgCancelSendToEth) Marshal

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

func (*MsgCancelSendToEth) MarshalTo

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

func (*MsgCancelSendToEth) MarshalToSizedBuffer

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

func (*MsgCancelSendToEth) MsgType

func (msg *MsgCancelSendToEth) MsgType() string

MsgType should return the action

func (*MsgCancelSendToEth) ProtoMessage

func (*MsgCancelSendToEth) ProtoMessage()

func (*MsgCancelSendToEth) Reset

func (m *MsgCancelSendToEth) Reset()

func (*MsgCancelSendToEth) Route

func (msg *MsgCancelSendToEth) Route() string

Route should return the name of the module

func (*MsgCancelSendToEth) Size

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

func (*MsgCancelSendToEth) String

func (m *MsgCancelSendToEth) String() string

func (*MsgCancelSendToEth) Unmarshal

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

func (*MsgCancelSendToEth) ValidateBasic

func (msg *MsgCancelSendToEth) ValidateBasic() (err error)

ValidateBasic performs stateless checks

func (*MsgCancelSendToEth) XXX_DiscardUnknown

func (m *MsgCancelSendToEth) XXX_DiscardUnknown()

func (*MsgCancelSendToEth) XXX_Marshal

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

func (*MsgCancelSendToEth) XXX_Merge

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

func (*MsgCancelSendToEth) XXX_Size

func (m *MsgCancelSendToEth) XXX_Size() int

func (*MsgCancelSendToEth) XXX_Unmarshal

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

type MsgCancelSendToEthResponse

type MsgCancelSendToEthResponse struct {
}

func (*MsgCancelSendToEthResponse) Descriptor

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

func (*MsgCancelSendToEthResponse) Marshal

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

func (*MsgCancelSendToEthResponse) MarshalTo

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

func (*MsgCancelSendToEthResponse) MarshalToSizedBuffer

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

func (*MsgCancelSendToEthResponse) ProtoMessage

func (*MsgCancelSendToEthResponse) ProtoMessage()

func (*MsgCancelSendToEthResponse) Reset

func (m *MsgCancelSendToEthResponse) Reset()

func (*MsgCancelSendToEthResponse) Size

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

func (*MsgCancelSendToEthResponse) String

func (m *MsgCancelSendToEthResponse) String() string

func (*MsgCancelSendToEthResponse) Unmarshal

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

func (*MsgCancelSendToEthResponse) XXX_DiscardUnknown

func (m *MsgCancelSendToEthResponse) XXX_DiscardUnknown()

func (*MsgCancelSendToEthResponse) XXX_Marshal

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

func (*MsgCancelSendToEthResponse) XXX_Merge

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

func (*MsgCancelSendToEthResponse) XXX_Size

func (m *MsgCancelSendToEthResponse) XXX_Size() int

func (*MsgCancelSendToEthResponse) XXX_Unmarshal

func (m *MsgCancelSendToEthResponse) 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 MsgConfirm721Batch added in v1.6.21

type MsgConfirm721Batch struct {
	Nonce         uint64 `protobuf:"varint,1,opt,name=nonce,proto3" json:"nonce,omitempty"`
	TokenContract string `protobuf:"bytes,2,opt,name=token_contract,json=tokenContract,proto3" json:"token_contract,omitempty"`
	EthSigner     string `protobuf:"bytes,3,opt,name=eth_signer,json=ethSigner,proto3" json:"eth_signer,omitempty"`
	Orchestrator  string `protobuf:"bytes,4,opt,name=orchestrator,proto3" json:"orchestrator,omitempty"`
	Signature     string `protobuf:"bytes,5,opt,name=signature,proto3" json:"signature,omitempty"`
	GravityID     string `protobuf:"bytes,6,opt,name=gravity_id,proto3" json:"gravity_id"`
}

func (*MsgConfirm721Batch) Bytes added in v1.6.21

func (msg *MsgConfirm721Batch) Bytes() []byte

func (MsgConfirm721Batch) GetFromAddress added in v1.6.21

func (msg MsgConfirm721Batch) GetFromAddress() sdk.AccAddress

func (*MsgConfirm721Batch) GetGravityID added in v1.6.47

func (m *MsgConfirm721Batch) GetGravityID() string

func (MsgConfirm721Batch) GetSignBytes added in v1.6.21

func (msg MsgConfirm721Batch) GetSignBytes() []byte

GetSignBytes encodes the message for signing

func (MsgConfirm721Batch) GetSigners added in v1.6.21

func (msg MsgConfirm721Batch) GetSigners() []sdk.AccAddress

GetSigners defines whose signature is required

func (MsgConfirm721Batch) MsgType added in v1.6.21

func (msg MsgConfirm721Batch) MsgType() string

MsgType should return the action

func (*MsgConfirm721Batch) ProtoMessage added in v1.6.21

func (*MsgConfirm721Batch) ProtoMessage()

func (*MsgConfirm721Batch) Reset added in v1.6.21

func (m *MsgConfirm721Batch) Reset()

func (MsgConfirm721Batch) Route added in v1.6.21

func (msg MsgConfirm721Batch) Route() string

Route should return the name of the module

func (*MsgConfirm721Batch) String added in v1.6.21

func (m *MsgConfirm721Batch) String() string

func (MsgConfirm721Batch) ValidateBasic added in v1.6.21

func (msg MsgConfirm721Batch) ValidateBasic() error

ValidateBasic performs stateless checks

type MsgConfirm721BatchResponse added in v1.6.21

type MsgConfirm721BatchResponse struct {
}

func (*MsgConfirm721BatchResponse) ProtoMessage added in v1.6.21

func (*MsgConfirm721BatchResponse) ProtoMessage()

func (*MsgConfirm721BatchResponse) Reset added in v1.6.21

func (m *MsgConfirm721BatchResponse) Reset()

func (*MsgConfirm721BatchResponse) String added in v1.6.21

func (m *MsgConfirm721BatchResponse) String() string

type MsgConfirmBatch

type MsgConfirmBatch struct {
	Nonce         uint64 `protobuf:"varint,1,opt,name=nonce,proto3" json:"nonce,omitempty"`
	TokenContract string `protobuf:"bytes,2,opt,name=token_contract,json=tokenContract,proto3" json:"token_contract,omitempty"`
	EthSigner     string `protobuf:"bytes,3,opt,name=eth_signer,json=ethSigner,proto3" json:"eth_signer,omitempty"`
	Orchestrator  string `protobuf:"bytes,4,opt,name=orchestrator,proto3" json:"orchestrator,omitempty"`
	Signature     string `protobuf:"bytes,5,opt,name=signature,proto3" json:"signature,omitempty"`
	TokenType     uint64 `protobuf:"bytes,6,opt,name=token_type,json=tokenType,proto3" json:"token_type"`
	GravityID     string `protobuf:"bytes,7,opt,name=gravity_id,proto3" json:"gravity_id"`
}

MsgConfirmBatch When validators observe a MsgRequestBatch they form a batch by ordering transactions currently in the txqueue in order of highest to lowest fee, cutting off when the batch either reaches a hardcoded maximum size (to be decided, probably around 100) or when transactions stop being profitable (TODO determine this without nondeterminism) This message includes the batch as well as an Ethereum signature over this batch by the validator -------------

func (*MsgConfirmBatch) Bytes

func (msg *MsgConfirmBatch) Bytes() []byte

func (*MsgConfirmBatch) Descriptor

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

func (*MsgConfirmBatch) GetEthSigner

func (m *MsgConfirmBatch) GetEthSigner() string

func (MsgConfirmBatch) GetFromAddress

func (msg MsgConfirmBatch) GetFromAddress() sdk.AccAddress

func (*MsgConfirmBatch) GetGravityID added in v1.6.47

func (m *MsgConfirmBatch) GetGravityID() string

func (*MsgConfirmBatch) GetNonce

func (m *MsgConfirmBatch) GetNonce() uint64

func (*MsgConfirmBatch) GetOrchestrator

func (m *MsgConfirmBatch) GetOrchestrator() string

func (MsgConfirmBatch) GetSignBytes

func (msg MsgConfirmBatch) GetSignBytes() []byte

GetSignBytes encodes the message for signing

func (*MsgConfirmBatch) GetSignature

func (m *MsgConfirmBatch) GetSignature() string

func (MsgConfirmBatch) GetSigners

func (msg MsgConfirmBatch) GetSigners() []sdk.AccAddress

GetSigners defines whose signature is required

func (*MsgConfirmBatch) GetTokenContract

func (m *MsgConfirmBatch) GetTokenContract() string

func (*MsgConfirmBatch) Marshal

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

func (*MsgConfirmBatch) MarshalTo

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

func (*MsgConfirmBatch) MarshalToSizedBuffer

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

func (MsgConfirmBatch) MsgType

func (msg MsgConfirmBatch) MsgType() string

MsgType should return the action

func (*MsgConfirmBatch) ProtoMessage

func (*MsgConfirmBatch) ProtoMessage()

func (*MsgConfirmBatch) Reset

func (m *MsgConfirmBatch) Reset()

func (MsgConfirmBatch) Route

func (msg MsgConfirmBatch) Route() string

Route should return the name of the module

func (*MsgConfirmBatch) Size

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

func (*MsgConfirmBatch) String

func (m *MsgConfirmBatch) String() string

func (*MsgConfirmBatch) Unmarshal

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

func (MsgConfirmBatch) ValidateBasic

func (msg MsgConfirmBatch) ValidateBasic() error

ValidateBasic performs stateless checks

func (*MsgConfirmBatch) XXX_DiscardUnknown

func (m *MsgConfirmBatch) XXX_DiscardUnknown()

func (*MsgConfirmBatch) XXX_Marshal

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

func (*MsgConfirmBatch) XXX_Merge

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

func (*MsgConfirmBatch) XXX_Size

func (m *MsgConfirmBatch) XXX_Size() int

func (*MsgConfirmBatch) XXX_Unmarshal

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

type MsgConfirmBatchResponse

type MsgConfirmBatchResponse struct {
}

func (*MsgConfirmBatchResponse) Descriptor

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

func (*MsgConfirmBatchResponse) Marshal

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

func (*MsgConfirmBatchResponse) MarshalTo

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

func (*MsgConfirmBatchResponse) MarshalToSizedBuffer

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

func (*MsgConfirmBatchResponse) ProtoMessage

func (*MsgConfirmBatchResponse) ProtoMessage()

func (*MsgConfirmBatchResponse) Reset

func (m *MsgConfirmBatchResponse) Reset()

func (*MsgConfirmBatchResponse) Size

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

func (*MsgConfirmBatchResponse) String

func (m *MsgConfirmBatchResponse) String() string

func (*MsgConfirmBatchResponse) Unmarshal

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

func (*MsgConfirmBatchResponse) XXX_DiscardUnknown

func (m *MsgConfirmBatchResponse) XXX_DiscardUnknown()

func (*MsgConfirmBatchResponse) XXX_Marshal

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

func (*MsgConfirmBatchResponse) XXX_Merge

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

func (*MsgConfirmBatchResponse) XXX_Size

func (m *MsgConfirmBatchResponse) XXX_Size() int

func (*MsgConfirmBatchResponse) XXX_Unmarshal

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

type MsgConfirmLogicCall

type MsgConfirmLogicCall struct {
	InvalidationId    string `protobuf:"bytes,1,opt,name=invalidation_id,json=invalidationId,proto3" json:"invalidation_id,omitempty"`
	InvalidationNonce uint64 `protobuf:"varint,2,opt,name=invalidation_nonce,json=invalidationNonce,proto3" json:"invalidation_nonce,omitempty"`
	EthSigner         string `protobuf:"bytes,3,opt,name=eth_signer,json=ethSigner,proto3" json:"eth_signer,omitempty"`
	Orchestrator      string `protobuf:"bytes,4,opt,name=orchestrator,proto3" json:"orchestrator,omitempty"`
	Signature         string `protobuf:"bytes,5,opt,name=signature,proto3" json:"signature,omitempty"`
}

MsgConfirmLogicCall When validators observe a MsgRequestBatch they form a batch by ordering transactions currently in the txqueue in order of highest to lowest fee, cutting off when the batch either reaches a hardcoded maximum size (to be decided, probably around 100) or when transactions stop being profitable (TODO determine this without nondeterminism) This message includes the batch as well as an Ethereum signature over this batch by the validator -------------

func (*MsgConfirmLogicCall) Descriptor

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

func (*MsgConfirmLogicCall) GetEthSigner

func (m *MsgConfirmLogicCall) GetEthSigner() string

func (*MsgConfirmLogicCall) GetInvalidationId

func (m *MsgConfirmLogicCall) GetInvalidationId() string

func (*MsgConfirmLogicCall) GetInvalidationNonce

func (m *MsgConfirmLogicCall) GetInvalidationNonce() uint64

func (*MsgConfirmLogicCall) GetOrchestrator

func (m *MsgConfirmLogicCall) GetOrchestrator() string

func (*MsgConfirmLogicCall) GetSignature

func (m *MsgConfirmLogicCall) GetSignature() string

func (*MsgConfirmLogicCall) Marshal

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

func (*MsgConfirmLogicCall) MarshalTo

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

func (*MsgConfirmLogicCall) MarshalToSizedBuffer

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

func (*MsgConfirmLogicCall) ProtoMessage

func (*MsgConfirmLogicCall) ProtoMessage()

func (*MsgConfirmLogicCall) Reset

func (m *MsgConfirmLogicCall) Reset()

func (*MsgConfirmLogicCall) Size

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

func (*MsgConfirmLogicCall) String

func (m *MsgConfirmLogicCall) String() string

func (*MsgConfirmLogicCall) Unmarshal

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

func (*MsgConfirmLogicCall) XXX_DiscardUnknown

func (m *MsgConfirmLogicCall) XXX_DiscardUnknown()

func (*MsgConfirmLogicCall) XXX_Marshal

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

func (*MsgConfirmLogicCall) XXX_Merge

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

func (*MsgConfirmLogicCall) XXX_Size

func (m *MsgConfirmLogicCall) XXX_Size() int

func (*MsgConfirmLogicCall) XXX_Unmarshal

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

type MsgConfirmLogicCallResponse

type MsgConfirmLogicCallResponse struct {
}

func (*MsgConfirmLogicCallResponse) Descriptor

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

func (*MsgConfirmLogicCallResponse) Marshal

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

func (*MsgConfirmLogicCallResponse) MarshalTo

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

func (*MsgConfirmLogicCallResponse) MarshalToSizedBuffer

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

func (*MsgConfirmLogicCallResponse) ProtoMessage

func (*MsgConfirmLogicCallResponse) ProtoMessage()

func (*MsgConfirmLogicCallResponse) Reset

func (m *MsgConfirmLogicCallResponse) Reset()

func (*MsgConfirmLogicCallResponse) Size

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

func (*MsgConfirmLogicCallResponse) String

func (m *MsgConfirmLogicCallResponse) String() string

func (*MsgConfirmLogicCallResponse) Unmarshal

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

func (*MsgConfirmLogicCallResponse) XXX_DiscardUnknown

func (m *MsgConfirmLogicCallResponse) XXX_DiscardUnknown()

func (*MsgConfirmLogicCallResponse) XXX_Marshal

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

func (*MsgConfirmLogicCallResponse) XXX_Merge

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

func (*MsgConfirmLogicCallResponse) XXX_Size

func (m *MsgConfirmLogicCallResponse) XXX_Size() int

func (*MsgConfirmLogicCallResponse) XXX_Unmarshal

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

type MsgDeposit721Claim added in v1.6.21

type MsgDeposit721Claim struct {
	EventNonce     uint64  `protobuf:"varint,1,opt,name=event_nonce,json=eventNonce,proto3" json:"event_nonce,omitempty"`
	BlockHeight    uint64  `protobuf:"varint,2,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
	TokenContract  string  `protobuf:"bytes,3,opt,name=token_contract,json=tokenContract,proto3" json:"token_contract,omitempty"`
	TokenName      string  `protobuf:"bytes,4,opt,name=token_name,json=tokenName,proto3" json:"token_name,omitempty"`
	TokenSymbol    string  `protobuf:"bytes,5,opt,name=token_symbol,json=tokenSymbol,proto3" json:"token_symbol,omitempty"`
	TokenID        sdk.Int `protobuf:"bytes,6,opt,name=token_id,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"token_id"`
	EthereumSender string  `protobuf:"bytes,7,opt,name=ethereum_sender,json=ethereumSender,proto3" json:"ethereum_sender,omitempty"`
	CosmosReceiver string  `protobuf:"bytes,8,opt,name=cosmos_receiver,json=cosmosReceiver,proto3" json:"cosmos_receiver,omitempty"`
	Orchestrator   string  `protobuf:"bytes,9,opt,name=orchestrator,proto3" json:"orchestrator,omitempty"`
	GravityID      string  `protobuf:"bytes,10,opt,name=gravity_id,proto3" json:"gravity_id"`
}

func (*MsgDeposit721Claim) Bytes added in v1.6.21

func (msg *MsgDeposit721Claim) Bytes() []byte

func (*MsgDeposit721Claim) ClaimHash added in v1.6.21

func (msg *MsgDeposit721Claim) ClaimHash() []byte

ClaimHash implements BridgeDeposit.Hash

func (*MsgDeposit721Claim) GetBlockHeight added in v1.6.21

func (m *MsgDeposit721Claim) GetBlockHeight() uint64

func (MsgDeposit721Claim) GetClaimer added in v1.6.21

func (msg MsgDeposit721Claim) GetClaimer() sdk.AccAddress

func (*MsgDeposit721Claim) GetEventNonce added in v1.6.21

func (m *MsgDeposit721Claim) GetEventNonce() uint64

func (MsgDeposit721Claim) GetFromAddress added in v1.6.21

func (msg MsgDeposit721Claim) GetFromAddress() sdk.AccAddress

func (*MsgDeposit721Claim) GetGravityID added in v1.6.47

func (m *MsgDeposit721Claim) GetGravityID() string

func (MsgDeposit721Claim) GetSignBytes added in v1.6.21

func (msg MsgDeposit721Claim) GetSignBytes() []byte

GetSignBytes encodes the message for signing

func (MsgDeposit721Claim) GetSigners added in v1.6.21

func (msg MsgDeposit721Claim) GetSigners() []sdk.AccAddress

GetSigners defines whose signature is required

func (*MsgDeposit721Claim) GetType added in v1.6.21

func (e *MsgDeposit721Claim) GetType() ClaimType

GetType returns the type of the claim

func (MsgDeposit721Claim) MsgType added in v1.6.21

func (msg MsgDeposit721Claim) MsgType() string

MsgType should return the action

func (*MsgDeposit721Claim) ProtoMessage added in v1.6.21

func (*MsgDeposit721Claim) ProtoMessage()

func (*MsgDeposit721Claim) Reset added in v1.6.21

func (m *MsgDeposit721Claim) Reset()

func (MsgDeposit721Claim) Route added in v1.6.21

func (msg MsgDeposit721Claim) Route() string

Route should return the name of the module

func (*MsgDeposit721Claim) String added in v1.6.21

func (m *MsgDeposit721Claim) String() string

func (*MsgDeposit721Claim) ValidateBasic added in v1.6.21

func (e *MsgDeposit721Claim) ValidateBasic() error

ValidateBasic performs stateless checks

type MsgDeposit721ClaimResponse added in v1.6.21

type MsgDeposit721ClaimResponse struct {
}

func (*MsgDeposit721ClaimResponse) ProtoMessage added in v1.6.21

func (*MsgDeposit721ClaimResponse) ProtoMessage()

func (*MsgDeposit721ClaimResponse) Reset added in v1.6.21

func (m *MsgDeposit721ClaimResponse) Reset()

func (*MsgDeposit721ClaimResponse) String added in v1.6.21

func (m *MsgDeposit721ClaimResponse) String() string

type MsgDepositClaim

type MsgDepositClaim struct {
	EventNonce     uint64  `protobuf:"varint,1,opt,name=event_nonce,json=eventNonce,proto3" json:"event_nonce,omitempty"`
	BlockHeight    uint64  `protobuf:"varint,2,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
	TokenContract  string  `protobuf:"bytes,3,opt,name=token_contract,json=tokenContract,proto3" json:"token_contract,omitempty"`
	TokenName      string  `protobuf:"bytes,4,opt,name=token_name,json=tokenName,proto3" json:"token_name,omitempty"`
	TokenDecimals  uint64  `protobuf:"bytes,5,opt,name=token_decimals,json=tokenDecimals,proto3" json:"token_decimals,omitempty"`
	TokenSymbol    string  `protobuf:"bytes,6,opt,name=token_symbol,json=tokenSymbol,proto3" json:"token_symbol,omitempty"`
	Amount         sdk.Int `protobuf:"bytes,7,opt,name=amount,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"amount"`
	EthereumSender string  `protobuf:"bytes,8,opt,name=ethereum_sender,json=ethereumSender,proto3" json:"ethereum_sender,omitempty"`
	CosmosReceiver string  `protobuf:"bytes,9,opt,name=cosmos_receiver,json=cosmosReceiver,proto3" json:"cosmos_receiver,omitempty"`
	Orchestrator   string  `protobuf:"bytes,10,opt,name=orchestrator,proto3" json:"orchestrator,omitempty"`
	GravityID      string  `protobuf:"bytes,11,opt,name=gravity_id,proto3" json:"gravity_id"`
}

EthereumBridgeDepositClaim When more than 66% of the active validator set has claimed to have seen the deposit enter the ethereum blockchain coins are issued to the Cosmos address in question -------------

func (*MsgDepositClaim) Bytes

func (msg *MsgDepositClaim) Bytes() []byte

func (*MsgDepositClaim) ClaimHash

func (msg *MsgDepositClaim) ClaimHash() []byte

ClaimHash implements BridgeDeposit.Hash

func (*MsgDepositClaim) Descriptor

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

func (*MsgDepositClaim) GetBlockHeight

func (m *MsgDepositClaim) GetBlockHeight() uint64

func (MsgDepositClaim) GetClaimer

func (msg MsgDepositClaim) GetClaimer() sdk.AccAddress

func (*MsgDepositClaim) GetCosmosReceiver

func (m *MsgDepositClaim) GetCosmosReceiver() string

func (*MsgDepositClaim) GetEthereumSender

func (m *MsgDepositClaim) GetEthereumSender() string

func (*MsgDepositClaim) GetEventNonce

func (m *MsgDepositClaim) GetEventNonce() uint64

func (MsgDepositClaim) GetFromAddress

func (msg MsgDepositClaim) GetFromAddress() sdk.AccAddress

func (*MsgDepositClaim) GetGravityID added in v1.6.47

func (m *MsgDepositClaim) GetGravityID() string

func (*MsgDepositClaim) GetOrchestrator

func (m *MsgDepositClaim) GetOrchestrator() string

func (MsgDepositClaim) GetSignBytes

func (msg MsgDepositClaim) GetSignBytes() []byte

GetSignBytes encodes the message for signing

func (MsgDepositClaim) GetSigners

func (msg MsgDepositClaim) GetSigners() []sdk.AccAddress

GetSigners defines whose signature is required

func (*MsgDepositClaim) GetTokenContract

func (m *MsgDepositClaim) GetTokenContract() string

func (*MsgDepositClaim) GetType

func (e *MsgDepositClaim) GetType() ClaimType

GetType returns the type of the claim

func (*MsgDepositClaim) Marshal

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

func (*MsgDepositClaim) MarshalTo

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

func (*MsgDepositClaim) MarshalToSizedBuffer

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

func (MsgDepositClaim) MsgType

func (msg MsgDepositClaim) MsgType() string

MsgType should return the action

func (*MsgDepositClaim) ProtoMessage

func (*MsgDepositClaim) ProtoMessage()

func (*MsgDepositClaim) Reset

func (m *MsgDepositClaim) Reset()

func (MsgDepositClaim) Route

func (msg MsgDepositClaim) Route() string

Route should return the name of the module

func (*MsgDepositClaim) Size

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

func (*MsgDepositClaim) String

func (m *MsgDepositClaim) String() string

func (*MsgDepositClaim) Unmarshal

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

func (*MsgDepositClaim) ValidateBasic

func (e *MsgDepositClaim) ValidateBasic() error

ValidateBasic performs stateless checks

func (*MsgDepositClaim) XXX_DiscardUnknown

func (m *MsgDepositClaim) XXX_DiscardUnknown()

func (*MsgDepositClaim) XXX_Marshal

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

func (*MsgDepositClaim) XXX_Merge

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

func (*MsgDepositClaim) XXX_Size

func (m *MsgDepositClaim) XXX_Size() int

func (*MsgDepositClaim) XXX_Unmarshal

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

type MsgDepositClaimResponse

type MsgDepositClaimResponse struct {
}

func (*MsgDepositClaimResponse) Descriptor

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

func (*MsgDepositClaimResponse) Marshal

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

func (*MsgDepositClaimResponse) MarshalTo

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

func (*MsgDepositClaimResponse) MarshalToSizedBuffer

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

func (*MsgDepositClaimResponse) ProtoMessage

func (*MsgDepositClaimResponse) ProtoMessage()

func (*MsgDepositClaimResponse) Reset

func (m *MsgDepositClaimResponse) Reset()

func (*MsgDepositClaimResponse) Size

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

func (*MsgDepositClaimResponse) String

func (m *MsgDepositClaimResponse) String() string

func (*MsgDepositClaimResponse) Unmarshal

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

func (*MsgDepositClaimResponse) XXX_DiscardUnknown

func (m *MsgDepositClaimResponse) XXX_DiscardUnknown()

func (*MsgDepositClaimResponse) XXX_Marshal

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

func (*MsgDepositClaimResponse) XXX_Merge

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

func (*MsgDepositClaimResponse) XXX_Size

func (m *MsgDepositClaimResponse) XXX_Size() int

func (*MsgDepositClaimResponse) XXX_Unmarshal

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

type MsgERC20DeployedClaim

type MsgERC20DeployedClaim struct {
	EventNonce    uint64 `protobuf:"varint,1,opt,name=event_nonce,json=eventNonce,proto3" json:"event_nonce,omitempty"`
	BlockHeight   uint64 `protobuf:"varint,2,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
	CosmosDenom   string `protobuf:"bytes,3,opt,name=cosmos_denom,json=cosmosDenom,proto3" json:"cosmos_denom,omitempty"`
	TokenContract string `protobuf:"bytes,4,opt,name=token_contract,json=tokenContract,proto3" json:"token_contract,omitempty"`
	Name          string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
	Symbol        string `protobuf:"bytes,6,opt,name=symbol,proto3" json:"symbol,omitempty"`
	Decimals      uint64 `protobuf:"varint,7,opt,name=decimals,proto3" json:"decimals,omitempty"`
	Orchestrator  string `protobuf:"bytes,8,opt,name=orchestrator,proto3" json:"orchestrator,omitempty"`
	GravityID     string `protobuf:"bytes,9,opt,name=gravity_id,proto3" json:"gravity_id"`
}

ERC20DeployedClaim allows the Cosmos module to learn about an ERC20 that someone deployed to represent a Cosmos asset

func (*MsgERC20DeployedClaim) Bytes

func (msg *MsgERC20DeployedClaim) Bytes() []byte

func (*MsgERC20DeployedClaim) ClaimHash

func (msg *MsgERC20DeployedClaim) ClaimHash() []byte

ClaimHash implements BridgeDeposit.Hash

func (*MsgERC20DeployedClaim) Descriptor

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

func (*MsgERC20DeployedClaim) GetBlockHeight

func (m *MsgERC20DeployedClaim) GetBlockHeight() uint64

func (MsgERC20DeployedClaim) GetClaimer

func (msg MsgERC20DeployedClaim) GetClaimer() sdk.AccAddress

func (*MsgERC20DeployedClaim) GetCosmosDenom

func (m *MsgERC20DeployedClaim) GetCosmosDenom() string

func (*MsgERC20DeployedClaim) GetDecimals

func (m *MsgERC20DeployedClaim) GetDecimals() uint64

func (*MsgERC20DeployedClaim) GetEventNonce

func (m *MsgERC20DeployedClaim) GetEventNonce() uint64

func (MsgERC20DeployedClaim) GetFromAddress

func (msg MsgERC20DeployedClaim) GetFromAddress() sdk.AccAddress

func (*MsgERC20DeployedClaim) GetGravityID added in v1.6.47

func (m *MsgERC20DeployedClaim) GetGravityID() string

func (*MsgERC20DeployedClaim) GetName

func (m *MsgERC20DeployedClaim) GetName() string

func (*MsgERC20DeployedClaim) GetOrchestrator

func (m *MsgERC20DeployedClaim) GetOrchestrator() string

func (MsgERC20DeployedClaim) GetSignBytes

func (msg MsgERC20DeployedClaim) GetSignBytes() []byte

GetSignBytes encodes the message for signing

func (MsgERC20DeployedClaim) GetSigners

func (msg MsgERC20DeployedClaim) GetSigners() []sdk.AccAddress

GetSigners defines whose signature is required

func (*MsgERC20DeployedClaim) GetSymbol

func (m *MsgERC20DeployedClaim) GetSymbol() string

func (*MsgERC20DeployedClaim) GetTokenContract

func (m *MsgERC20DeployedClaim) GetTokenContract() string

func (*MsgERC20DeployedClaim) GetType

func (e *MsgERC20DeployedClaim) GetType() ClaimType

GetType returns the type of the claim

func (*MsgERC20DeployedClaim) Marshal

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

func (*MsgERC20DeployedClaim) MarshalTo

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

func (*MsgERC20DeployedClaim) MarshalToSizedBuffer

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

func (MsgERC20DeployedClaim) MsgType

func (msg MsgERC20DeployedClaim) MsgType() string

MsgType should return the action

func (*MsgERC20DeployedClaim) ProtoMessage

func (*MsgERC20DeployedClaim) ProtoMessage()

func (*MsgERC20DeployedClaim) Reset

func (m *MsgERC20DeployedClaim) Reset()

func (MsgERC20DeployedClaim) Route

func (msg MsgERC20DeployedClaim) Route() string

Route should return the name of the module

func (*MsgERC20DeployedClaim) Size

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

func (*MsgERC20DeployedClaim) String

func (m *MsgERC20DeployedClaim) String() string

func (*MsgERC20DeployedClaim) Unmarshal

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

func (*MsgERC20DeployedClaim) ValidateBasic

func (e *MsgERC20DeployedClaim) ValidateBasic() error

ValidateBasic performs stateless checks

func (*MsgERC20DeployedClaim) XXX_DiscardUnknown

func (m *MsgERC20DeployedClaim) XXX_DiscardUnknown()

func (*MsgERC20DeployedClaim) XXX_Marshal

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

func (*MsgERC20DeployedClaim) XXX_Merge

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

func (*MsgERC20DeployedClaim) XXX_Size

func (m *MsgERC20DeployedClaim) XXX_Size() int

func (*MsgERC20DeployedClaim) XXX_Unmarshal

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

type MsgERC20DeployedClaimResponse

type MsgERC20DeployedClaimResponse struct {
}

func (*MsgERC20DeployedClaimResponse) Descriptor

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

func (*MsgERC20DeployedClaimResponse) Marshal

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

func (*MsgERC20DeployedClaimResponse) MarshalTo

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

func (*MsgERC20DeployedClaimResponse) MarshalToSizedBuffer

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

func (*MsgERC20DeployedClaimResponse) ProtoMessage

func (*MsgERC20DeployedClaimResponse) ProtoMessage()

func (*MsgERC20DeployedClaimResponse) Reset

func (m *MsgERC20DeployedClaimResponse) Reset()

func (*MsgERC20DeployedClaimResponse) Size

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

func (*MsgERC20DeployedClaimResponse) String

func (*MsgERC20DeployedClaimResponse) Unmarshal

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

func (*MsgERC20DeployedClaimResponse) XXX_DiscardUnknown

func (m *MsgERC20DeployedClaimResponse) XXX_DiscardUnknown()

func (*MsgERC20DeployedClaimResponse) XXX_Marshal

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

func (*MsgERC20DeployedClaimResponse) XXX_Merge

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

func (*MsgERC20DeployedClaimResponse) XXX_Size

func (m *MsgERC20DeployedClaimResponse) XXX_Size() int

func (*MsgERC20DeployedClaimResponse) XXX_Unmarshal

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

type MsgERC721DeployedClaim added in v1.6.21

type MsgERC721DeployedClaim struct {
	EventNonce    uint64 `protobuf:"varint,1,opt,name=event_nonce,json=eventNonce,proto3" json:"event_nonce,omitempty"`
	BlockHeight   uint64 `protobuf:"varint,2,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
	CosmosDenom   string `protobuf:"bytes,3,opt,name=cosmos_denom,json=cosmosDenom,proto3" json:"cosmos_denom,omitempty"`
	TokenContract string `protobuf:"bytes,4,opt,name=token_contract,json=tokenContract,proto3" json:"token_contract,omitempty"`
	Name          string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
	Symbol        string `protobuf:"bytes,6,opt,name=symbol,proto3" json:"symbol,omitempty"`
	Orchestrator  string `protobuf:"bytes,7,opt,name=orchestrator,proto3" json:"orchestrator,omitempty"`
	GravityID     string `protobuf:"bytes,5,opt,name=gravity_id,proto3" json:"gravity_id"`
}

func (*MsgERC721DeployedClaim) Bytes added in v1.6.21

func (msg *MsgERC721DeployedClaim) Bytes() []byte

func (*MsgERC721DeployedClaim) ClaimHash added in v1.6.21

func (msg *MsgERC721DeployedClaim) ClaimHash() []byte

ClaimHash implements BridgeDeposit.Hash

func (*MsgERC721DeployedClaim) GetBlockHeight added in v1.6.21

func (m *MsgERC721DeployedClaim) GetBlockHeight() uint64

func (MsgERC721DeployedClaim) GetClaimer added in v1.6.21

func (msg MsgERC721DeployedClaim) GetClaimer() sdk.AccAddress

func (*MsgERC721DeployedClaim) GetEventNonce added in v1.6.21

func (m *MsgERC721DeployedClaim) GetEventNonce() uint64

func (MsgERC721DeployedClaim) GetFromAddress added in v1.6.21

func (msg MsgERC721DeployedClaim) GetFromAddress() sdk.AccAddress

func (*MsgERC721DeployedClaim) GetGravityID added in v1.6.47

func (m *MsgERC721DeployedClaim) GetGravityID() string

func (MsgERC721DeployedClaim) GetSignBytes added in v1.6.21

func (msg MsgERC721DeployedClaim) GetSignBytes() []byte

GetSignBytes encodes the message for signing

func (MsgERC721DeployedClaim) GetSigners added in v1.6.21

func (msg MsgERC721DeployedClaim) GetSigners() []sdk.AccAddress

GetSigners defines whose signature is required

func (*MsgERC721DeployedClaim) GetType added in v1.6.21

func (e *MsgERC721DeployedClaim) GetType() ClaimType

GetType returns the type of the claim

func (MsgERC721DeployedClaim) MsgType added in v1.6.21

func (msg MsgERC721DeployedClaim) MsgType() string

MsgType should return the action

func (*MsgERC721DeployedClaim) ProtoMessage added in v1.6.21

func (*MsgERC721DeployedClaim) ProtoMessage()

func (*MsgERC721DeployedClaim) Reset added in v1.6.21

func (m *MsgERC721DeployedClaim) Reset()

func (MsgERC721DeployedClaim) Route added in v1.6.21

func (msg MsgERC721DeployedClaim) Route() string

Route should return the name of the module

func (*MsgERC721DeployedClaim) String added in v1.6.21

func (m *MsgERC721DeployedClaim) String() string

func (*MsgERC721DeployedClaim) ValidateBasic added in v1.6.21

func (e *MsgERC721DeployedClaim) ValidateBasic() error

ValidateBasic performs stateless checks

type MsgERC721DeployedClaimResponse added in v1.6.21

type MsgERC721DeployedClaimResponse struct {
}

func (*MsgERC721DeployedClaimResponse) ProtoMessage added in v1.6.21

func (*MsgERC721DeployedClaimResponse) ProtoMessage()

func (*MsgERC721DeployedClaimResponse) Reset added in v1.6.21

func (m *MsgERC721DeployedClaimResponse) Reset()

func (*MsgERC721DeployedClaimResponse) String added in v1.6.21

type MsgLogicCallExecutedClaim

type MsgLogicCallExecutedClaim struct {
	EventNonce        uint64 `protobuf:"varint,1,opt,name=event_nonce,json=eventNonce,proto3" json:"event_nonce,omitempty"`
	BlockHeight       uint64 `protobuf:"varint,2,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
	InvalidationId    []byte `protobuf:"bytes,3,opt,name=invalidation_id,json=invalidationId,proto3" json:"invalidation_id,omitempty"`
	InvalidationNonce uint64 `protobuf:"varint,4,opt,name=invalidation_nonce,json=invalidationNonce,proto3" json:"invalidation_nonce,omitempty"`
	Orchestrator      string `protobuf:"bytes,5,opt,name=orchestrator,proto3" json:"orchestrator,omitempty"`
}

This informs the Cosmos module that a logic call has been executed

func (*MsgLogicCallExecutedClaim) Descriptor

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

func (*MsgLogicCallExecutedClaim) GetBlockHeight

func (m *MsgLogicCallExecutedClaim) GetBlockHeight() uint64

func (*MsgLogicCallExecutedClaim) GetEventNonce

func (m *MsgLogicCallExecutedClaim) GetEventNonce() uint64

func (*MsgLogicCallExecutedClaim) GetInvalidationId

func (m *MsgLogicCallExecutedClaim) GetInvalidationId() []byte

func (*MsgLogicCallExecutedClaim) GetInvalidationNonce

func (m *MsgLogicCallExecutedClaim) GetInvalidationNonce() uint64

func (*MsgLogicCallExecutedClaim) GetOrchestrator

func (m *MsgLogicCallExecutedClaim) GetOrchestrator() string

func (*MsgLogicCallExecutedClaim) Marshal

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

func (*MsgLogicCallExecutedClaim) MarshalTo

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

func (*MsgLogicCallExecutedClaim) MarshalToSizedBuffer

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

func (*MsgLogicCallExecutedClaim) ProtoMessage

func (*MsgLogicCallExecutedClaim) ProtoMessage()

func (*MsgLogicCallExecutedClaim) Reset

func (m *MsgLogicCallExecutedClaim) Reset()

func (*MsgLogicCallExecutedClaim) Size

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

func (*MsgLogicCallExecutedClaim) String

func (m *MsgLogicCallExecutedClaim) String() string

func (*MsgLogicCallExecutedClaim) Unmarshal

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

func (*MsgLogicCallExecutedClaim) XXX_DiscardUnknown

func (m *MsgLogicCallExecutedClaim) XXX_DiscardUnknown()

func (*MsgLogicCallExecutedClaim) XXX_Marshal

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

func (*MsgLogicCallExecutedClaim) XXX_Merge

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

func (*MsgLogicCallExecutedClaim) XXX_Size

func (m *MsgLogicCallExecutedClaim) XXX_Size() int

func (*MsgLogicCallExecutedClaim) XXX_Unmarshal

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

type MsgLogicCallExecutedClaimResponse

type MsgLogicCallExecutedClaimResponse struct {
}

func (*MsgLogicCallExecutedClaimResponse) Descriptor

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

func (*MsgLogicCallExecutedClaimResponse) Marshal

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

func (*MsgLogicCallExecutedClaimResponse) MarshalTo

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

func (*MsgLogicCallExecutedClaimResponse) MarshalToSizedBuffer

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

func (*MsgLogicCallExecutedClaimResponse) ProtoMessage

func (*MsgLogicCallExecutedClaimResponse) ProtoMessage()

func (*MsgLogicCallExecutedClaimResponse) Reset

func (*MsgLogicCallExecutedClaimResponse) Size

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

func (*MsgLogicCallExecutedClaimResponse) String

func (*MsgLogicCallExecutedClaimResponse) Unmarshal

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

func (*MsgLogicCallExecutedClaimResponse) XXX_DiscardUnknown

func (m *MsgLogicCallExecutedClaimResponse) XXX_DiscardUnknown()

func (*MsgLogicCallExecutedClaimResponse) XXX_Marshal

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

func (*MsgLogicCallExecutedClaimResponse) XXX_Merge

func (*MsgLogicCallExecutedClaimResponse) XXX_Size

func (m *MsgLogicCallExecutedClaimResponse) XXX_Size() int

func (*MsgLogicCallExecutedClaimResponse) XXX_Unmarshal

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

type MsgRequest721Batch added in v1.6.21

type MsgRequest721Batch struct {
	Sender    string `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"`
	Denom     string `protobuf:"bytes,2,opt,name=denom,proto3" json:"denom,omitempty"`
	GravityID string `protobuf:"bytes,3,opt,name=gravity_id,proto3" json:"gravity_id"`
}

func (*MsgRequest721Batch) Bytes added in v1.6.21

func (msg *MsgRequest721Batch) Bytes() []byte

func (MsgRequest721Batch) GetFromAddress added in v1.6.21

func (msg MsgRequest721Batch) GetFromAddress() sdk.AccAddress

func (*MsgRequest721Batch) GetGravityID added in v1.6.47

func (m *MsgRequest721Batch) GetGravityID() string

func (MsgRequest721Batch) GetSignBytes added in v1.6.21

func (msg MsgRequest721Batch) GetSignBytes() []byte

GetSignBytes encodes the message for signing

func (MsgRequest721Batch) GetSigners added in v1.6.21

func (msg MsgRequest721Batch) GetSigners() []sdk.AccAddress

GetSigners defines whose signature is required

func (MsgRequest721Batch) MsgType added in v1.6.21

func (msg MsgRequest721Batch) MsgType() string

MsgType should return the action

func (*MsgRequest721Batch) ProtoMessage added in v1.6.21

func (*MsgRequest721Batch) ProtoMessage()

func (*MsgRequest721Batch) Reset added in v1.6.21

func (m *MsgRequest721Batch) Reset()

func (MsgRequest721Batch) Route added in v1.6.21

func (msg MsgRequest721Batch) Route() string

Route should return the name of the module

func (*MsgRequest721Batch) String added in v1.6.21

func (m *MsgRequest721Batch) String() string

func (MsgRequest721Batch) ValidateBasic added in v1.6.21

func (msg MsgRequest721Batch) ValidateBasic() error

ValidateBasic performs stateless checks

type MsgRequest721BatchResponse added in v1.6.21

type MsgRequest721BatchResponse struct {
}

func (*MsgRequest721BatchResponse) ProtoMessage added in v1.6.21

func (*MsgRequest721BatchResponse) ProtoMessage()

func (*MsgRequest721BatchResponse) Reset added in v1.6.21

func (m *MsgRequest721BatchResponse) Reset()

func (*MsgRequest721BatchResponse) String added in v1.6.21

func (m *MsgRequest721BatchResponse) String() string

type MsgRequestBatch

type MsgRequestBatch struct {
	Sender    string `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"`
	Denom     string `protobuf:"bytes,2,opt,name=denom,proto3" json:"denom,omitempty"`
	TokenType uint64 `protobuf:"bytes,3,opt,name=token_type,proto3" json:"token_type,omitempty"`
	GravityID string `protobuf:"bytes,4,opt,name=gravity_id,proto3" json:"gravity_id"`
}

MsgRequestBatch this is a message anyone can send that requests a batch of transactions to send across the bridge be created for whatever block height this message is included in. This acts as a coordination point, the handler for this message looks at the AddToOutgoingPool tx's in the store and generates a batch, also available in the store tied to this message. The validators then grab this batch, sign it, submit the signatures with a MsgConfirmBatch before a relayer can finally submit the batch -------------

func NewMsgRequestBatch

func NewMsgRequestBatch(orchestrator sdk.AccAddress) *MsgRequestBatch

NewMsgRequestBatch returns a new msgRequestBatch

func (*MsgRequestBatch) Bytes

func (msg *MsgRequestBatch) Bytes() []byte

func (*MsgRequestBatch) Descriptor

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

func (*MsgRequestBatch) GetDenom

func (m *MsgRequestBatch) GetDenom() string

func (MsgRequestBatch) GetFromAddress

func (msg MsgRequestBatch) GetFromAddress() sdk.AccAddress

func (*MsgRequestBatch) GetGravityID added in v1.6.47

func (m *MsgRequestBatch) GetGravityID() string

func (*MsgRequestBatch) GetSender

func (m *MsgRequestBatch) GetSender() string

func (MsgRequestBatch) GetSignBytes

func (msg MsgRequestBatch) GetSignBytes() []byte

GetSignBytes encodes the message for signing

func (MsgRequestBatch) GetSigners

func (msg MsgRequestBatch) GetSigners() []sdk.AccAddress

GetSigners defines whose signature is required

func (*MsgRequestBatch) Marshal

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

func (*MsgRequestBatch) MarshalTo

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

func (*MsgRequestBatch) MarshalToSizedBuffer

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

func (MsgRequestBatch) MsgType

func (msg MsgRequestBatch) MsgType() string

MsgType should return the action

func (*MsgRequestBatch) ProtoMessage

func (*MsgRequestBatch) ProtoMessage()

func (*MsgRequestBatch) Reset

func (m *MsgRequestBatch) Reset()

func (MsgRequestBatch) Route

func (msg MsgRequestBatch) Route() string

Route should return the name of the module

func (*MsgRequestBatch) Size

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

func (*MsgRequestBatch) String

func (m *MsgRequestBatch) String() string

func (*MsgRequestBatch) Unmarshal

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

func (MsgRequestBatch) ValidateBasic

func (msg MsgRequestBatch) ValidateBasic() error

ValidateBasic performs stateless checks

func (*MsgRequestBatch) XXX_DiscardUnknown

func (m *MsgRequestBatch) XXX_DiscardUnknown()

func (*MsgRequestBatch) XXX_Marshal

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

func (*MsgRequestBatch) XXX_Merge

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

func (*MsgRequestBatch) XXX_Size

func (m *MsgRequestBatch) XXX_Size() int

func (*MsgRequestBatch) XXX_Unmarshal

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

type MsgRequestBatchResponse

type MsgRequestBatchResponse struct {
}

func (*MsgRequestBatchResponse) Descriptor

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

func (*MsgRequestBatchResponse) Marshal

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

func (*MsgRequestBatchResponse) MarshalTo

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

func (*MsgRequestBatchResponse) MarshalToSizedBuffer

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

func (*MsgRequestBatchResponse) ProtoMessage

func (*MsgRequestBatchResponse) ProtoMessage()

func (*MsgRequestBatchResponse) Reset

func (m *MsgRequestBatchResponse) Reset()

func (*MsgRequestBatchResponse) Size

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

func (*MsgRequestBatchResponse) String

func (m *MsgRequestBatchResponse) String() string

func (*MsgRequestBatchResponse) Unmarshal

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

func (*MsgRequestBatchResponse) XXX_DiscardUnknown

func (m *MsgRequestBatchResponse) XXX_DiscardUnknown()

func (*MsgRequestBatchResponse) XXX_Marshal

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

func (*MsgRequestBatchResponse) XXX_Merge

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

func (*MsgRequestBatchResponse) XXX_Size

func (m *MsgRequestBatchResponse) XXX_Size() int

func (*MsgRequestBatchResponse) XXX_Unmarshal

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

type MsgSend721ToEth added in v1.6.21

type MsgSend721ToEth struct {
	Sender    string   `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"`
	EthDest   string   `protobuf:"bytes,2,opt,name=eth_dest,json=ethDest,proto3" json:"eth_dest,omitempty"`
	Amount    sdk.Coin `protobuf:"bytes,3,opt,name=amount,proto3" json:"amount"`
	BridgeFee sdk.Coin `protobuf:"bytes,4,opt,name=bridge_fee,json=bridgeFee,proto3" json:"bridge_fee"`
	GravityID string   `protobuf:"bytes,5,opt,name=gravity_id,proto3" json:"gravity_id"`
}

func (*MsgSend721ToEth) Bytes added in v1.6.21

func (msg *MsgSend721ToEth) Bytes() []byte

func (*MsgSend721ToEth) Descriptor added in v1.6.21

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

func (*MsgSend721ToEth) GetAmount added in v1.6.21

func (m *MsgSend721ToEth) GetAmount() sdk.Coin

func (*MsgSend721ToEth) GetBridgeFee added in v1.6.21

func (m *MsgSend721ToEth) GetBridgeFee() sdk.Coin

func (*MsgSend721ToEth) GetEthDest added in v1.6.21

func (m *MsgSend721ToEth) GetEthDest() string

func (MsgSend721ToEth) GetFromAddress added in v1.6.21

func (msg MsgSend721ToEth) GetFromAddress() sdk.AccAddress

func (*MsgSend721ToEth) GetGravityID added in v1.6.47

func (m *MsgSend721ToEth) GetGravityID() string

func (*MsgSend721ToEth) GetSender added in v1.6.21

func (m *MsgSend721ToEth) GetSender() string

func (MsgSend721ToEth) GetSignBytes added in v1.6.21

func (msg MsgSend721ToEth) GetSignBytes() []byte

GetSignBytes encodes the message for signing

func (MsgSend721ToEth) GetSigners added in v1.6.21

func (msg MsgSend721ToEth) GetSigners() []sdk.AccAddress

GetSigners defines whose signature is required

func (MsgSend721ToEth) MsgType added in v1.6.21

func (msg MsgSend721ToEth) MsgType() string

MsgType should return the action

func (*MsgSend721ToEth) ProtoMessage added in v1.6.21

func (*MsgSend721ToEth) ProtoMessage()

func (*MsgSend721ToEth) Reset added in v1.6.21

func (m *MsgSend721ToEth) Reset()

func (MsgSend721ToEth) Route added in v1.6.21

func (msg MsgSend721ToEth) Route() string

Route should return the name of the module

func (*MsgSend721ToEth) String added in v1.6.21

func (m *MsgSend721ToEth) String() string

func (MsgSend721ToEth) ValidateBasic added in v1.6.21

func (msg MsgSend721ToEth) ValidateBasic() error

ValidateBasic runs stateless checks on the message Checks if the Eth address is valid

type MsgSend721ToEthResponse added in v1.6.21

type MsgSend721ToEthResponse struct {
}

func (*MsgSend721ToEthResponse) ProtoMessage added in v1.6.21

func (*MsgSend721ToEthResponse) ProtoMessage()

func (*MsgSend721ToEthResponse) Reset added in v1.6.21

func (m *MsgSend721ToEthResponse) Reset()

func (*MsgSend721ToEthResponse) String added in v1.6.21

func (m *MsgSend721ToEthResponse) String() string

type MsgSendToEth

type MsgSendToEth struct {
	Sender    string   `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"`
	EthDest   string   `protobuf:"bytes,2,opt,name=eth_dest,json=ethDest,proto3" json:"eth_dest,omitempty"`
	Amount    sdk.Coin `protobuf:"bytes,3,opt,name=amount,proto3" json:"amount"`
	BridgeFee sdk.Coin `protobuf:"bytes,4,opt,name=bridge_fee,json=bridgeFee,proto3" json:"bridge_fee"`
	TokenType uint64   `protobuf:"bytes,5,opt,name=token_type,json=tokenType,proto3" json:"token_type"`
	GravityID string   `protobuf:"bytes,6,opt,name=gravity_id,proto3" json:"gravity_id"`
}

MsgSendToEth This is the message that a user calls when they want to bridge an asset it will later be removed when it is included in a batch and successfully submitted tokens are removed from the users balance immediately ------------- AMOUNT: the coin to send across the bridge, note the restriction that this is a single coin not a set of coins that is normal in other Cosmos messages FEE: the fee paid for the bridge, distinct from the fee paid to the chain to actually send this message in the first place. So a successful send has two layers of fees for the user

func NewMsgSendToEth

func NewMsgSendToEth(sender sdk.AccAddress, destAddress string, send sdk.Coin, bridgeFee sdk.Coin) *MsgSendToEth

NewMsgSendToEth returns a new msgSendToEth

func (MsgSendToEth) Bytes

func (msg MsgSendToEth) Bytes() []byte

func (*MsgSendToEth) Descriptor

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

func (*MsgSendToEth) GetAmount

func (m *MsgSendToEth) GetAmount() sdk.Coin

func (*MsgSendToEth) GetBridgeFee

func (m *MsgSendToEth) GetBridgeFee() sdk.Coin

func (*MsgSendToEth) GetEthDest

func (m *MsgSendToEth) GetEthDest() string

func (MsgSendToEth) GetFromAddress

func (msg MsgSendToEth) GetFromAddress() sdk.AccAddress

func (*MsgSendToEth) GetGravityID added in v1.6.47

func (m *MsgSendToEth) GetGravityID() string

func (*MsgSendToEth) GetSender

func (m *MsgSendToEth) GetSender() string

func (MsgSendToEth) GetSignBytes

func (msg MsgSendToEth) GetSignBytes() []byte

GetSignBytes encodes the message for signing

func (MsgSendToEth) GetSigners

func (msg MsgSendToEth) GetSigners() []sdk.AccAddress

GetSigners defines whose signature is required

func (*MsgSendToEth) Marshal

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

func (*MsgSendToEth) MarshalTo

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

func (*MsgSendToEth) MarshalToSizedBuffer

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

func (MsgSendToEth) MsgType

func (msg MsgSendToEth) MsgType() string

MsgType should return the action

func (*MsgSendToEth) ProtoMessage

func (*MsgSendToEth) ProtoMessage()

func (*MsgSendToEth) Reset

func (m *MsgSendToEth) Reset()

func (MsgSendToEth) Route

func (msg MsgSendToEth) Route() string

Route should return the name of the module

func (*MsgSendToEth) Size

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

func (*MsgSendToEth) String

func (m *MsgSendToEth) String() string

func (*MsgSendToEth) Unmarshal

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

func (MsgSendToEth) ValidateBasic

func (msg MsgSendToEth) ValidateBasic() error

ValidateBasic runs stateless checks on the message Checks if the Eth address is valid

func (*MsgSendToEth) XXX_DiscardUnknown

func (m *MsgSendToEth) XXX_DiscardUnknown()

func (*MsgSendToEth) XXX_Marshal

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

func (*MsgSendToEth) XXX_Merge

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

func (*MsgSendToEth) XXX_Size

func (m *MsgSendToEth) XXX_Size() int

func (*MsgSendToEth) XXX_Unmarshal

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

type MsgSendToEthResponse

type MsgSendToEthResponse struct {
}

func (*MsgSendToEthResponse) Descriptor

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

func (*MsgSendToEthResponse) Marshal

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

func (*MsgSendToEthResponse) MarshalTo

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

func (*MsgSendToEthResponse) MarshalToSizedBuffer

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

func (*MsgSendToEthResponse) ProtoMessage

func (*MsgSendToEthResponse) ProtoMessage()

func (*MsgSendToEthResponse) Reset

func (m *MsgSendToEthResponse) Reset()

func (*MsgSendToEthResponse) Size

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

func (*MsgSendToEthResponse) String

func (m *MsgSendToEthResponse) String() string

func (*MsgSendToEthResponse) Unmarshal

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

func (*MsgSendToEthResponse) XXX_DiscardUnknown

func (m *MsgSendToEthResponse) XXX_DiscardUnknown()

func (*MsgSendToEthResponse) XXX_Marshal

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

func (*MsgSendToEthResponse) XXX_Merge

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

func (*MsgSendToEthResponse) XXX_Size

func (m *MsgSendToEthResponse) XXX_Size() int

func (*MsgSendToEthResponse) XXX_Unmarshal

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

type MsgServer

type MsgServer interface {
	SetGravityID(context.Context, string) error
	RevertGravityID()
	ValsetConfirm(context.Context, *MsgValsetConfirm) (*MsgValsetConfirmResponse, error)
	SendToEth(context.Context, *MsgSendToEth) (*MsgSendToEthResponse, error)
	RequestBatch(context.Context, *MsgRequestBatch) (*MsgRequestBatchResponse, error)
	ConfirmBatch(context.Context, *MsgConfirmBatch) (*MsgConfirmBatchResponse, error)
	//ConfirmLogicCall(context.Context, *MsgConfirmLogicCall) (*MsgConfirmLogicCallResponse, error)
	DepositClaim(context.Context, *MsgDepositClaim) (*MsgDepositClaimResponse, error)
	Deposit721Claim(context.Context, *MsgDeposit721Claim) (*MsgDeposit721ClaimResponse, error)
	WithdrawClaim(context.Context, *MsgWithdrawClaim) (*MsgWithdrawClaimResponse, error)
	ERC20DeployedClaim(context.Context, *MsgERC20DeployedClaim) (*MsgERC20DeployedClaimResponse, error)
	ERC721DeployedClaim(context.Context, *MsgERC721DeployedClaim) (*MsgERC721DeployedClaimResponse, error)
	//LogicCallExecutedClaim(context.Context, *MsgLogicCallExecutedClaim) (*MsgLogicCallExecutedClaimResponse, error)
	ValsetConfirmNonceClaim(context.Context, *MsgValsetConfirmNonceClaim) (*MsgValsetConfirmNonceClaimResponse, error)
	//SetOrchestratorAddress(context.Context, *MsgSetOrchestratorAddress) (*MsgSetOrchestratorAddressResponse, error)
	CancelSendToEth(context.Context, *MsgCancelSendToEth) (*MsgCancelSendToEthResponse, error)
}

MsgServer is the server API for Msg service.

type MsgSetOrchestratorAddress

type MsgSetOrchestratorAddress struct {
	Validator    string `protobuf:"bytes,1,opt,name=validator,proto3" json:"validator,omitempty"`
	Orchestrator string `protobuf:"bytes,2,opt,name=orchestrator,proto3" json:"orchestrator,omitempty"`
	EthAddress   string `protobuf:"bytes,3,opt,name=eth_address,json=ethAddress,proto3" json:"eth_address,omitempty"`
}

MsgSetOrchestratorAddress this message allows validators to delegate their voting responsibilities to a given key. This key is then used as an optional authentication method for sigining oracle claims VALIDATOR The validator field is a cosmosvaloper1... string (i.e. sdk.ValAddress) that references a validator in the active set ORCHESTRATOR The orchestrator field is a cosmos1... string (i.e. sdk.AccAddress) that references the key that is being delegated to ETH_ADDRESS This is a hex encoded 0x Ethereum public key that will be used by this validator on Ethereum

func (*MsgSetOrchestratorAddress) Descriptor

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

func (*MsgSetOrchestratorAddress) GetEthAddress

func (m *MsgSetOrchestratorAddress) GetEthAddress() string

func (*MsgSetOrchestratorAddress) GetOrchestrator

func (m *MsgSetOrchestratorAddress) GetOrchestrator() string

func (*MsgSetOrchestratorAddress) GetValidator

func (m *MsgSetOrchestratorAddress) GetValidator() string

func (*MsgSetOrchestratorAddress) Marshal

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

func (*MsgSetOrchestratorAddress) MarshalTo

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

func (*MsgSetOrchestratorAddress) MarshalToSizedBuffer

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

func (*MsgSetOrchestratorAddress) ProtoMessage

func (*MsgSetOrchestratorAddress) ProtoMessage()

func (*MsgSetOrchestratorAddress) Reset

func (m *MsgSetOrchestratorAddress) Reset()

func (*MsgSetOrchestratorAddress) Size

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

func (*MsgSetOrchestratorAddress) String

func (m *MsgSetOrchestratorAddress) String() string

func (*MsgSetOrchestratorAddress) Unmarshal

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

func (*MsgSetOrchestratorAddress) XXX_DiscardUnknown

func (m *MsgSetOrchestratorAddress) XXX_DiscardUnknown()

func (*MsgSetOrchestratorAddress) XXX_Marshal

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

func (*MsgSetOrchestratorAddress) XXX_Merge

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

func (*MsgSetOrchestratorAddress) XXX_Size

func (m *MsgSetOrchestratorAddress) XXX_Size() int

func (*MsgSetOrchestratorAddress) XXX_Unmarshal

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

type MsgSetOrchestratorAddressResponse

type MsgSetOrchestratorAddressResponse struct {
}

func (*MsgSetOrchestratorAddressResponse) Descriptor

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

func (*MsgSetOrchestratorAddressResponse) Marshal

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

func (*MsgSetOrchestratorAddressResponse) MarshalTo

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

func (*MsgSetOrchestratorAddressResponse) MarshalToSizedBuffer

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

func (*MsgSetOrchestratorAddressResponse) ProtoMessage

func (*MsgSetOrchestratorAddressResponse) ProtoMessage()

func (*MsgSetOrchestratorAddressResponse) Reset

func (*MsgSetOrchestratorAddressResponse) Size

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

func (*MsgSetOrchestratorAddressResponse) String

func (*MsgSetOrchestratorAddressResponse) Unmarshal

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

func (*MsgSetOrchestratorAddressResponse) XXX_DiscardUnknown

func (m *MsgSetOrchestratorAddressResponse) XXX_DiscardUnknown()

func (*MsgSetOrchestratorAddressResponse) XXX_Marshal

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

func (*MsgSetOrchestratorAddressResponse) XXX_Merge

func (*MsgSetOrchestratorAddressResponse) XXX_Size

func (m *MsgSetOrchestratorAddressResponse) XXX_Size() int

func (*MsgSetOrchestratorAddressResponse) XXX_Unmarshal

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

type MsgValsetConfirm

type MsgValsetConfirm struct {
	Nonce        uint64 `protobuf:"varint,1,opt,name=nonce,proto3" json:"nonce,omitempty"`
	Orchestrator string `protobuf:"bytes,2,opt,name=orchestrator,proto3" json:"orchestrator,omitempty"`
	EthAddress   string `protobuf:"bytes,3,opt,name=eth_address,json=ethAddress,proto3" json:"eth_address,omitempty"`
	Signature    string `protobuf:"bytes,4,opt,name=signature,proto3" json:"signature,omitempty"`
	GravityID    string `protobuf:"bytes,5,opt,name=gravity_id,proto3" json:"gravity_id"`
}

MsgValsetConfirm this is the message sent by the validators when they wish to submit their signatures over the validator set at a given block height. A validator must first call MsgSetEthAddress to set their Ethereum address to be used for signing. Then someone (anyone) must make a ValsetRequest, the request is essentially a messaging mechanism to determine which block all validators should submit signatures over. Finally validators sign the validator set, powers, and Ethereum addresses of the entire validator set at the height of a ValsetRequest and submit that signature with this message.

If a sufficient number of validators (66% of voting power) (A) have set Ethereum addresses and (B) submit ValsetConfirm messages with their signatures it is then possible for anyone to view these signatures in the chain store and submit them to Ethereum to update the validator set -------------

func NewMsgValsetConfirm

func NewMsgValsetConfirm(nonce uint64, ethAddress string, validator sdk.AccAddress, signature string) *MsgValsetConfirm

NewMsgValsetConfirm returns a new msgValsetConfirm

func (*MsgValsetConfirm) Bytes

func (msg *MsgValsetConfirm) Bytes() []byte

func (*MsgValsetConfirm) Descriptor

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

func (*MsgValsetConfirm) GetEthAddress

func (m *MsgValsetConfirm) GetEthAddress() string

func (*MsgValsetConfirm) GetFromAddress

func (msg *MsgValsetConfirm) GetFromAddress() sdk.AccAddress

func (*MsgValsetConfirm) GetGravityID added in v1.6.47

func (m *MsgValsetConfirm) GetGravityID() string

func (*MsgValsetConfirm) GetNonce

func (m *MsgValsetConfirm) GetNonce() uint64

func (*MsgValsetConfirm) GetOrchestrator

func (m *MsgValsetConfirm) GetOrchestrator() string

func (*MsgValsetConfirm) GetSignBytes

func (msg *MsgValsetConfirm) GetSignBytes() []byte

GetSignBytes encodes the message for signing

func (*MsgValsetConfirm) GetSignature

func (m *MsgValsetConfirm) GetSignature() string

func (*MsgValsetConfirm) GetSigners

func (msg *MsgValsetConfirm) GetSigners() []sdk.AccAddress

GetSigners defines whose signature is required

func (*MsgValsetConfirm) Marshal

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

func (*MsgValsetConfirm) MarshalTo

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

func (*MsgValsetConfirm) MarshalToSizedBuffer

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

func (*MsgValsetConfirm) MsgType

func (msg *MsgValsetConfirm) MsgType() string

MsgType should return the action

func (*MsgValsetConfirm) ProtoMessage

func (*MsgValsetConfirm) ProtoMessage()

func (*MsgValsetConfirm) Reset

func (m *MsgValsetConfirm) Reset()

func (*MsgValsetConfirm) Route

func (msg *MsgValsetConfirm) Route() string

Route should return the name of the module

func (*MsgValsetConfirm) Size

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

func (*MsgValsetConfirm) String

func (m *MsgValsetConfirm) String() string

func (*MsgValsetConfirm) Unmarshal

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

func (*MsgValsetConfirm) ValidateBasic

func (msg *MsgValsetConfirm) ValidateBasic() (err error)

ValidateBasic performs stateless checks

func (*MsgValsetConfirm) XXX_DiscardUnknown

func (m *MsgValsetConfirm) XXX_DiscardUnknown()

func (*MsgValsetConfirm) XXX_Marshal

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

func (*MsgValsetConfirm) XXX_Merge

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

func (*MsgValsetConfirm) XXX_Size

func (m *MsgValsetConfirm) XXX_Size() int

func (*MsgValsetConfirm) XXX_Unmarshal

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

type MsgValsetConfirmNonceClaim added in v1.6.24

type MsgValsetConfirmNonceClaim struct {
	ValsetNonce  uint64 `protobuf:"varint,1,opt,name=valset_nonce,json=valset_nonce,proto3" json:"valset_nonce,omitempty"`
	EventNonce   uint64 `protobuf:"varint,2,opt,name=event_nonce,json=event_nonce,proto3" json:"event_nonce,omitempty"`
	Orchestrator string `protobuf:"bytes,3,opt,name=orchestrator,proto3" json:"orchestrator,omitempty"`
	GravityID    string `protobuf:"bytes,4,opt,name=gravity_id,proto3" json:"gravity_id"`
}

func (*MsgValsetConfirmNonceClaim) Bytes added in v1.6.24

func (msg *MsgValsetConfirmNonceClaim) Bytes() []byte

func (*MsgValsetConfirmNonceClaim) ClaimHash added in v1.6.24

func (msg *MsgValsetConfirmNonceClaim) ClaimHash() []byte

ClaimHash implements BridgeDeposit.Hash

func (*MsgValsetConfirmNonceClaim) GetBlockHeight added in v1.6.24

func (m *MsgValsetConfirmNonceClaim) GetBlockHeight() uint64

func (MsgValsetConfirmNonceClaim) GetClaimer added in v1.6.24

func (msg MsgValsetConfirmNonceClaim) GetClaimer() sdk.AccAddress

func (*MsgValsetConfirmNonceClaim) GetEventNonce added in v1.6.24

func (m *MsgValsetConfirmNonceClaim) GetEventNonce() uint64

func (MsgValsetConfirmNonceClaim) GetFromAddress added in v1.6.24

func (msg MsgValsetConfirmNonceClaim) GetFromAddress() sdk.AccAddress

func (*MsgValsetConfirmNonceClaim) GetGravityID added in v1.6.47

func (m *MsgValsetConfirmNonceClaim) GetGravityID() string

func (MsgValsetConfirmNonceClaim) GetSignBytes added in v1.6.24

func (msg MsgValsetConfirmNonceClaim) GetSignBytes() []byte

GetSignBytes encodes the message for signing

func (MsgValsetConfirmNonceClaim) GetSigners added in v1.6.24

func (msg MsgValsetConfirmNonceClaim) GetSigners() []sdk.AccAddress

GetSigners defines whose signature is required

func (*MsgValsetConfirmNonceClaim) GetType added in v1.6.24

GetType returns the type of the claim

func (MsgValsetConfirmNonceClaim) MsgType added in v1.6.24

func (msg MsgValsetConfirmNonceClaim) MsgType() string

MsgType should return the action

func (*MsgValsetConfirmNonceClaim) ProtoMessage added in v1.6.24

func (*MsgValsetConfirmNonceClaim) ProtoMessage()

func (*MsgValsetConfirmNonceClaim) Reset added in v1.6.24

func (m *MsgValsetConfirmNonceClaim) Reset()

func (MsgValsetConfirmNonceClaim) Route added in v1.6.24

func (msg MsgValsetConfirmNonceClaim) Route() string

Route should return the name of the module

func (*MsgValsetConfirmNonceClaim) String added in v1.6.24

func (m *MsgValsetConfirmNonceClaim) String() string

func (*MsgValsetConfirmNonceClaim) ValidateBasic added in v1.6.24

func (e *MsgValsetConfirmNonceClaim) ValidateBasic() error

ValidateBasic performs stateless checks

type MsgValsetConfirmNonceClaimResponse added in v1.6.24

type MsgValsetConfirmNonceClaimResponse struct {
}

func (*MsgValsetConfirmNonceClaimResponse) ProtoMessage added in v1.6.24

func (*MsgValsetConfirmNonceClaimResponse) ProtoMessage()

func (*MsgValsetConfirmNonceClaimResponse) Reset added in v1.6.24

func (*MsgValsetConfirmNonceClaimResponse) String added in v1.6.24

type MsgValsetConfirmResponse

type MsgValsetConfirmResponse struct {
}

func (*MsgValsetConfirmResponse) Descriptor

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

func (*MsgValsetConfirmResponse) Marshal

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

func (*MsgValsetConfirmResponse) MarshalTo

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

func (*MsgValsetConfirmResponse) MarshalToSizedBuffer

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

func (*MsgValsetConfirmResponse) ProtoMessage

func (*MsgValsetConfirmResponse) ProtoMessage()

func (*MsgValsetConfirmResponse) Reset

func (m *MsgValsetConfirmResponse) Reset()

func (*MsgValsetConfirmResponse) Size

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

func (*MsgValsetConfirmResponse) String

func (m *MsgValsetConfirmResponse) String() string

func (*MsgValsetConfirmResponse) Unmarshal

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

func (*MsgValsetConfirmResponse) XXX_DiscardUnknown

func (m *MsgValsetConfirmResponse) XXX_DiscardUnknown()

func (*MsgValsetConfirmResponse) XXX_Marshal

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

func (*MsgValsetConfirmResponse) XXX_Merge

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

func (*MsgValsetConfirmResponse) XXX_Size

func (m *MsgValsetConfirmResponse) XXX_Size() int

func (*MsgValsetConfirmResponse) XXX_Unmarshal

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

type MsgWithdraw721Claim added in v1.6.21

type MsgWithdraw721Claim struct {
	EventNonce    uint64 `protobuf:"varint,1,opt,name=event_nonce,json=eventNonce,proto3" json:"event_nonce,omitempty"`
	BlockHeight   uint64 `protobuf:"varint,2,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
	BatchNonce    uint64 `protobuf:"varint,3,opt,name=batch_nonce,json=batchNonce,proto3" json:"batch_nonce,omitempty"`
	TokenContract string `protobuf:"bytes,4,opt,name=token_contract,json=tokenContract,proto3" json:"token_contract,omitempty"`
	Orchestrator  string `protobuf:"bytes,5,opt,name=orchestrator,proto3" json:"orchestrator,omitempty"`
	GravityID     string `protobuf:"bytes,6,opt,name=gravity_id,proto3" json:"gravity_id"`
}

func (*MsgWithdraw721Claim) Bytes added in v1.6.21

func (msg *MsgWithdraw721Claim) Bytes() []byte

func (*MsgWithdraw721Claim) ClaimHash added in v1.6.21

func (b *MsgWithdraw721Claim) ClaimHash() []byte

ClaimHash implements WithdrawBatch.Hash

func (*MsgWithdraw721Claim) GetBatchNonce added in v1.6.21

func (m *MsgWithdraw721Claim) GetBatchNonce() uint64

func (*MsgWithdraw721Claim) GetBlockHeight added in v1.6.21

func (m *MsgWithdraw721Claim) GetBlockHeight() uint64

func (MsgWithdraw721Claim) GetClaimer added in v1.6.21

func (msg MsgWithdraw721Claim) GetClaimer() sdk.AccAddress

func (*MsgWithdraw721Claim) GetEventNonce added in v1.6.21

func (m *MsgWithdraw721Claim) GetEventNonce() uint64

func (MsgWithdraw721Claim) GetFromAddress added in v1.6.21

func (msg MsgWithdraw721Claim) GetFromAddress() sdk.AccAddress

func (*MsgWithdraw721Claim) GetGravityID added in v1.6.47

func (m *MsgWithdraw721Claim) GetGravityID() string

func (*MsgWithdraw721Claim) GetOrchestrator added in v1.6.21

func (m *MsgWithdraw721Claim) GetOrchestrator() string

func (MsgWithdraw721Claim) GetSignBytes added in v1.6.21

func (msg MsgWithdraw721Claim) GetSignBytes() []byte

GetSignBytes encodes the message for signing

func (MsgWithdraw721Claim) GetSigners added in v1.6.21

func (msg MsgWithdraw721Claim) GetSigners() []sdk.AccAddress

GetSigners defines whose signature is required

func (*MsgWithdraw721Claim) GetTokenContract added in v1.6.21

func (m *MsgWithdraw721Claim) GetTokenContract() string

func (*MsgWithdraw721Claim) GetType added in v1.6.21

func (e *MsgWithdraw721Claim) GetType() ClaimType

GetType returns the claim type

func (MsgWithdraw721Claim) MsgType added in v1.6.21

func (msg MsgWithdraw721Claim) MsgType() string

MsgType should return the action

func (MsgWithdraw721Claim) Route added in v1.6.21

func (msg MsgWithdraw721Claim) Route() string

Route should return the name of the module

func (*MsgWithdraw721Claim) ValidateBasic added in v1.6.21

func (e *MsgWithdraw721Claim) ValidateBasic() error

ValidateBasic performs stateless checks

type MsgWithdraw721ClaimResponse added in v1.6.21

type MsgWithdraw721ClaimResponse struct {
}

func (*MsgWithdraw721ClaimResponse) ProtoMessage added in v1.6.21

func (*MsgWithdraw721ClaimResponse) ProtoMessage()

func (*MsgWithdraw721ClaimResponse) Reset added in v1.6.21

func (m *MsgWithdraw721ClaimResponse) Reset()

func (*MsgWithdraw721ClaimResponse) String added in v1.6.21

func (m *MsgWithdraw721ClaimResponse) String() string

type MsgWithdrawClaim

type MsgWithdrawClaim struct {
	EventNonce    uint64 `protobuf:"varint,1,opt,name=event_nonce,json=eventNonce,proto3" json:"event_nonce,omitempty"`
	BlockHeight   uint64 `protobuf:"varint,2,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
	BatchNonce    uint64 `protobuf:"varint,3,opt,name=batch_nonce,json=batchNonce,proto3" json:"batch_nonce,omitempty"`
	TokenContract string `protobuf:"bytes,4,opt,name=token_contract,json=tokenContract,proto3" json:"token_contract,omitempty"`
	Orchestrator  string `protobuf:"bytes,5,opt,name=orchestrator,proto3" json:"orchestrator,omitempty"`
	GravityID     string `protobuf:"bytes,6,opt,name=gravity_id,proto3" json:"gravity_id"`
}

WithdrawClaim claims that a batch of withdrawal operations on the bridge contract was executed.

func (*MsgWithdrawClaim) Bytes

func (msg *MsgWithdrawClaim) Bytes() []byte

func (*MsgWithdrawClaim) ClaimHash

func (b *MsgWithdrawClaim) ClaimHash() []byte

ClaimHash implements WithdrawBatch.Hash

func (*MsgWithdrawClaim) Descriptor

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

func (*MsgWithdrawClaim) GetBatchNonce

func (m *MsgWithdrawClaim) GetBatchNonce() uint64

func (*MsgWithdrawClaim) GetBlockHeight

func (m *MsgWithdrawClaim) GetBlockHeight() uint64

func (MsgWithdrawClaim) GetClaimer

func (msg MsgWithdrawClaim) GetClaimer() sdk.AccAddress

func (*MsgWithdrawClaim) GetEventNonce

func (m *MsgWithdrawClaim) GetEventNonce() uint64

func (MsgWithdrawClaim) GetFromAddress

func (msg MsgWithdrawClaim) GetFromAddress() sdk.AccAddress

func (*MsgWithdrawClaim) GetGravityID added in v1.6.47

func (m *MsgWithdrawClaim) GetGravityID() string

func (*MsgWithdrawClaim) GetOrchestrator

func (m *MsgWithdrawClaim) GetOrchestrator() string

func (MsgWithdrawClaim) GetSignBytes

func (msg MsgWithdrawClaim) GetSignBytes() []byte

GetSignBytes encodes the message for signing

func (MsgWithdrawClaim) GetSigners

func (msg MsgWithdrawClaim) GetSigners() []sdk.AccAddress

GetSigners defines whose signature is required

func (*MsgWithdrawClaim) GetTokenContract

func (m *MsgWithdrawClaim) GetTokenContract() string

func (*MsgWithdrawClaim) GetType

func (e *MsgWithdrawClaim) GetType() ClaimType

GetType returns the claim type

func (*MsgWithdrawClaim) Marshal

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

func (*MsgWithdrawClaim) MarshalTo

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

func (*MsgWithdrawClaim) MarshalToSizedBuffer

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

func (MsgWithdrawClaim) MsgType

func (msg MsgWithdrawClaim) MsgType() string

MsgType should return the action

func (*MsgWithdrawClaim) ProtoMessage

func (*MsgWithdrawClaim) ProtoMessage()

func (*MsgWithdrawClaim) Reset

func (m *MsgWithdrawClaim) Reset()

func (MsgWithdrawClaim) Route

func (msg MsgWithdrawClaim) Route() string

Route should return the name of the module

func (*MsgWithdrawClaim) Size

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

func (*MsgWithdrawClaim) String

func (m *MsgWithdrawClaim) String() string

func (*MsgWithdrawClaim) Unmarshal

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

func (*MsgWithdrawClaim) ValidateBasic

func (e *MsgWithdrawClaim) ValidateBasic() error

ValidateBasic performs stateless checks

func (*MsgWithdrawClaim) XXX_DiscardUnknown

func (m *MsgWithdrawClaim) XXX_DiscardUnknown()

func (*MsgWithdrawClaim) XXX_Marshal

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

func (*MsgWithdrawClaim) XXX_Merge

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

func (*MsgWithdrawClaim) XXX_Size

func (m *MsgWithdrawClaim) XXX_Size() int

func (*MsgWithdrawClaim) XXX_Unmarshal

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

type MsgWithdrawClaimResponse

type MsgWithdrawClaimResponse struct {
}

func (*MsgWithdrawClaimResponse) Descriptor

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

func (*MsgWithdrawClaimResponse) Marshal

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

func (*MsgWithdrawClaimResponse) MarshalTo

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

func (*MsgWithdrawClaimResponse) MarshalToSizedBuffer

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

func (*MsgWithdrawClaimResponse) ProtoMessage

func (*MsgWithdrawClaimResponse) ProtoMessage()

func (*MsgWithdrawClaimResponse) Reset

func (m *MsgWithdrawClaimResponse) Reset()

func (*MsgWithdrawClaimResponse) Size

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

func (*MsgWithdrawClaimResponse) String

func (m *MsgWithdrawClaimResponse) String() string

func (*MsgWithdrawClaimResponse) Unmarshal

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

func (*MsgWithdrawClaimResponse) XXX_DiscardUnknown

func (m *MsgWithdrawClaimResponse) XXX_DiscardUnknown()

func (*MsgWithdrawClaimResponse) XXX_Marshal

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

func (*MsgWithdrawClaimResponse) XXX_Merge

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

func (*MsgWithdrawClaimResponse) XXX_Size

func (m *MsgWithdrawClaimResponse) XXX_Size() int

func (*MsgWithdrawClaimResponse) XXX_Unmarshal

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

type OutgoingLogicCall

type OutgoingLogicCall struct {
	Transfers            []*ERC20Token `protobuf:"bytes,1,rep,name=transfers,proto3" json:"transfers,omitempty"`
	Fees                 []*ERC20Token `protobuf:"bytes,2,rep,name=fees,proto3" json:"fees,omitempty"`
	LogicContractAddress string        `protobuf:"bytes,3,opt,name=logic_contract_address,json=logicContractAddress,proto3" json:"logic_contract_address,omitempty"`
	Payload              []byte        `protobuf:"bytes,4,opt,name=payload,proto3" json:"payload,omitempty"`
	Timeout              uint64        `protobuf:"varint,5,opt,name=timeout,proto3" json:"timeout,omitempty"`
	InvalidationId       []byte        `protobuf:"bytes,6,opt,name=invalidation_id,json=invalidationId,proto3" json:"invalidation_id,omitempty"`
	InvalidationNonce    uint64        `protobuf:"varint,7,opt,name=invalidation_nonce,json=invalidationNonce,proto3" json:"invalidation_nonce,omitempty"`
}

OutgoingLogicCall represents an individual logic call from gravity to ETH

func (*OutgoingLogicCall) Descriptor

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

func (OutgoingLogicCall) GetCheckpoint

func (c OutgoingLogicCall) GetCheckpoint(gravityIDstring string) ([]byte, error)

GetCheckpoint gets the checkpoint signature from the given outgoing tx batch

func (*OutgoingLogicCall) GetFees

func (m *OutgoingLogicCall) GetFees() []*ERC20Token

func (*OutgoingLogicCall) GetInvalidationId

func (m *OutgoingLogicCall) GetInvalidationId() []byte

func (*OutgoingLogicCall) GetInvalidationNonce

func (m *OutgoingLogicCall) GetInvalidationNonce() uint64

func (*OutgoingLogicCall) GetLogicContractAddress

func (m *OutgoingLogicCall) GetLogicContractAddress() string

func (*OutgoingLogicCall) GetPayload

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

func (*OutgoingLogicCall) GetTimeout

func (m *OutgoingLogicCall) GetTimeout() uint64

func (*OutgoingLogicCall) GetTransfers

func (m *OutgoingLogicCall) GetTransfers() []*ERC20Token

func (*OutgoingLogicCall) Marshal

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

func (*OutgoingLogicCall) MarshalTo

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

func (*OutgoingLogicCall) MarshalToSizedBuffer

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

func (*OutgoingLogicCall) ProtoMessage

func (*OutgoingLogicCall) ProtoMessage()

func (*OutgoingLogicCall) Reset

func (m *OutgoingLogicCall) Reset()

func (*OutgoingLogicCall) Size

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

func (*OutgoingLogicCall) String

func (m *OutgoingLogicCall) String() string

func (*OutgoingLogicCall) Unmarshal

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

func (*OutgoingLogicCall) XXX_DiscardUnknown

func (m *OutgoingLogicCall) XXX_DiscardUnknown()

func (*OutgoingLogicCall) XXX_Marshal

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

func (*OutgoingLogicCall) XXX_Merge

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

func (*OutgoingLogicCall) XXX_Size

func (m *OutgoingLogicCall) XXX_Size() int

func (*OutgoingLogicCall) XXX_Unmarshal

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

type OutgoingTransferTx

type OutgoingTransferTx struct {
	Id          uint64      `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Sender      string      `protobuf:"bytes,2,opt,name=sender,proto3" json:"sender,omitempty"`
	DestAddress string      `protobuf:"bytes,3,opt,name=dest_address,json=destAddress,proto3" json:"dest_address,omitempty"`
	Erc20Token  *ERC20Token `protobuf:"bytes,4,opt,name=erc20_token,json=erc20Token,proto3" json:"erc20_token,omitempty"`
	Erc20Fee    *ERC20Token `protobuf:"bytes,5,opt,name=erc20_fee,json=erc20Fee,proto3" json:"erc20_fee,omitempty"`
}

OutgoingTransferTx represents an individual send from gravity to ETH

func (*OutgoingTransferTx) Descriptor

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

func (*OutgoingTransferTx) GetDestAddress

func (m *OutgoingTransferTx) GetDestAddress() string

func (*OutgoingTransferTx) GetErc20Fee

func (m *OutgoingTransferTx) GetErc20Fee() *ERC20Token

func (*OutgoingTransferTx) GetErc20Token

func (m *OutgoingTransferTx) GetErc20Token() *ERC20Token

func (*OutgoingTransferTx) GetId

func (m *OutgoingTransferTx) GetId() uint64

func (*OutgoingTransferTx) GetSender

func (m *OutgoingTransferTx) GetSender() string

func (*OutgoingTransferTx) Marshal

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

func (*OutgoingTransferTx) MarshalTo

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

func (*OutgoingTransferTx) MarshalToSizedBuffer

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

func (*OutgoingTransferTx) ProtoMessage

func (*OutgoingTransferTx) ProtoMessage()

func (*OutgoingTransferTx) Reset

func (m *OutgoingTransferTx) Reset()

func (*OutgoingTransferTx) Size

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

func (*OutgoingTransferTx) String

func (m *OutgoingTransferTx) String() string

func (*OutgoingTransferTx) Unmarshal

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

func (*OutgoingTransferTx) XXX_DiscardUnknown

func (m *OutgoingTransferTx) XXX_DiscardUnknown()

func (*OutgoingTransferTx) XXX_Marshal

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

func (*OutgoingTransferTx) XXX_Merge

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

func (*OutgoingTransferTx) XXX_Size

func (m *OutgoingTransferTx) XXX_Size() int

func (*OutgoingTransferTx) XXX_Unmarshal

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

type OutgoingTxBatch

type OutgoingTxBatch struct {
	BatchNonce    uint64                `protobuf:"varint,1,opt,name=batch_nonce,json=batchNonce,proto3" json:"batch_nonce,omitempty"`
	BatchTimeout  uint64                `protobuf:"varint,2,opt,name=batch_timeout,json=batchTimeout,proto3" json:"batch_timeout,omitempty"`
	Transactions  []*OutgoingTransferTx `protobuf:"bytes,3,rep,name=transactions,proto3" json:"transactions,omitempty"`
	TokenContract string                `protobuf:"bytes,4,opt,name=token_contract,json=tokenContract,proto3" json:"token_contract,omitempty"`
	Block         uint64                `protobuf:"varint,5,opt,name=block,proto3" json:"block,omitempty"`
	TokenType     uint64                `protobuf:"bytes,6,opt,name=token_type,json=tokenType,proto3" json:"token_type"`
}

OutgoingTxBatch represents a batch of transactions going from gravity to ETH

func (*OutgoingTxBatch) Descriptor

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

func (*OutgoingTxBatch) GetBatchNonce

func (m *OutgoingTxBatch) GetBatchNonce() uint64

func (*OutgoingTxBatch) GetBatchTimeout

func (m *OutgoingTxBatch) GetBatchTimeout() uint64

func (*OutgoingTxBatch) GetBlock

func (m *OutgoingTxBatch) GetBlock() uint64

func (OutgoingTxBatch) GetCheckpoint

func (b OutgoingTxBatch) GetCheckpoint(gravityIDstring string, tokenType uint64) ([]byte, error)

GetCheckpoint gets the checkpoint signature from the given outgoing tx batch

func (OutgoingTxBatch) GetFees

func (b OutgoingTxBatch) GetFees() sdk.Int

GetFees returns the total fees contained within a given batch

func (*OutgoingTxBatch) GetTokenContract

func (m *OutgoingTxBatch) GetTokenContract() string

func (*OutgoingTxBatch) GetTransactions

func (m *OutgoingTxBatch) GetTransactions() []*OutgoingTransferTx

func (*OutgoingTxBatch) Marshal

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

func (*OutgoingTxBatch) MarshalTo

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

func (*OutgoingTxBatch) MarshalToSizedBuffer

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

func (*OutgoingTxBatch) ProtoMessage

func (*OutgoingTxBatch) ProtoMessage()

func (*OutgoingTxBatch) Reset

func (m *OutgoingTxBatch) Reset()

func (*OutgoingTxBatch) Size

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

func (*OutgoingTxBatch) String

func (m *OutgoingTxBatch) String() string

func (*OutgoingTxBatch) Unmarshal

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

func (*OutgoingTxBatch) XXX_DiscardUnknown

func (m *OutgoingTxBatch) XXX_DiscardUnknown()

func (*OutgoingTxBatch) XXX_Marshal

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

func (*OutgoingTxBatch) XXX_Merge

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

func (*OutgoingTxBatch) XXX_Size

func (m *OutgoingTxBatch) XXX_Size() int

func (*OutgoingTxBatch) XXX_Unmarshal

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

type Params

type Params struct {
	GravityId                     string  `protobuf:"bytes,1,opt,name=gravity_id,json=gravityId,proto3" json:"gravity_id,omitempty"`
	ContractSourceHash            string  `protobuf:"bytes,2,opt,name=contract_source_hash,json=contractSourceHash,proto3" json:"contract_source_hash,omitempty"`
	BridgeEthereumAddress         string  `` /* 126-byte string literal not displayed */
	BridgeChainId                 uint64  `protobuf:"varint,5,opt,name=bridge_chain_id,json=bridgeChainId,proto3" json:"bridge_chain_id,omitempty"`
	SignedValsetsWindow           uint64  `protobuf:"varint,6,opt,name=signed_valsets_window,json=signedValsetsWindow,proto3" json:"signed_valsets_window,omitempty"`
	SignedBatchesWindow           uint64  `protobuf:"varint,7,opt,name=signed_batches_window,json=signedBatchesWindow,proto3" json:"signed_batches_window,omitempty"`
	SignedClaimsWindow            uint64  `protobuf:"varint,8,opt,name=signed_claims_window,json=signedClaimsWindow,proto3" json:"signed_claims_window,omitempty"`
	TargetBatchTimeout            uint64  `protobuf:"varint,10,opt,name=target_batch_timeout,json=targetBatchTimeout,proto3" json:"target_batch_timeout,omitempty"`
	AverageBlockTime              uint64  `protobuf:"varint,11,opt,name=average_block_time,json=averageBlockTime,proto3" json:"average_block_time,omitempty"`
	AverageEthereumBlockTime      uint64  `` /* 139-byte string literal not displayed */
	SlashFractionValset           sdk.Dec `` /* 161-byte string literal not displayed */
	SlashFractionBatch            sdk.Dec `` /* 158-byte string literal not displayed */
	SlashFractionClaim            sdk.Dec `` /* 158-byte string literal not displayed */
	SlashFractionConflictingClaim sdk.Dec `` /* 193-byte string literal not displayed */
	UnbondSlashingValsetsWindow   uint64  `` /* 148-byte string literal not displayed */
}

Params represent the Gravity genesis and store parameters gravity_id: a random 32 byte value to prevent signature reuse, for example if the cosmos validators decided to use the same Ethereum keys for another chain also running Gravity we would not want it to be possible to play a deposit from chain A back on chain B's Gravity. This value IS USED ON ETHEREUM so it must be set in your genesis.json before launch and not changed after deploying Gravity

contract_hash: the code hash of a known good version of the Gravity contract solidity code. This can be used to verify the correct version of the contract has been deployed. This is a reference value for goernance action only it is never read by any Gravity code

bridge_ethereum_address: is address of the bridge contract on the Ethereum side, this is a reference value for governance only and is not actually used by any Gravity code

bridge_chain_id: the unique identifier of the Ethereum chain, this is a reference value only and is not actually used by any Gravity code

These reference values may be used by future Gravity client implemetnations to allow for saftey features or convenience features like the Gravity address in your relayer. A relayer would require a configured Gravity address if governance had not set the address on the chain it was relaying for.

signed_valsets_window signed_batches_window signed_claims_window

These values represent the time in blocks that a validator has to submit a signature for a batch or valset, or to submit a claim for a particular attestation nonce. In the case of attestations this clock starts when the attestation is created, but only allows for slashing once the event has passed

target_batch_timeout:

This is the 'target' value for when batches time out, this is a target becuase Ethereum is a probabalistic chain and you can't say for sure what the block frequency is ahead of time.

average_block_time average_ethereum_block_time

These values are the average Cosmos block time and Ethereum block time repsectively and they are used to copute what the target batch timeout is. It is important that governance updates these in case of any major, prolonged change in the time it takes to produce a block

slash_fraction_valset slash_fraction_batch slash_fraction_claim slash_fraction_conflicting_claim

The slashing fractions for the various gravity related slashing conditions. The first three refer to not submitting a particular message, the third for submitting a different claim for the same Ethereum event

func DefaultParams

func DefaultParams() *Params

DefaultParams returns a copy of the default params

func (*Params) Descriptor

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

func (Params) Equal

func (p Params) Equal(p2 Params) bool

Equal returns a boolean determining if two Params types are identical.

func (*Params) GetAverageBlockTime

func (m *Params) GetAverageBlockTime() uint64

func (*Params) GetAverageEthereumBlockTime

func (m *Params) GetAverageEthereumBlockTime() uint64

func (*Params) GetBridgeChainId

func (m *Params) GetBridgeChainId() uint64

func (*Params) GetBridgeEthereumAddress

func (m *Params) GetBridgeEthereumAddress() string

func (*Params) GetContractSourceHash

func (m *Params) GetContractSourceHash() string

func (*Params) GetGravityId

func (m *Params) GetGravityId() string

func (*Params) GetSignedBatchesWindow

func (m *Params) GetSignedBatchesWindow() uint64

func (*Params) GetSignedClaimsWindow

func (m *Params) GetSignedClaimsWindow() uint64

func (*Params) GetSignedValsetsWindow

func (m *Params) GetSignedValsetsWindow() uint64

func (*Params) GetTargetBatchTimeout

func (m *Params) GetTargetBatchTimeout() uint64

func (*Params) GetUnbondSlashingValsetsWindow

func (m *Params) GetUnbondSlashingValsetsWindow() 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 implements the ParamSet interface and returns all the key/value pairs pairs of auth module's parameters.

func (*Params) ProtoMessage

func (*Params) ProtoMessage()

func (*Params) Reset

func (m *Params) Reset()

func (*Params) Size

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

func (*Params) String

func (m *Params) String() string

func (*Params) Unmarshal

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

func (Params) ValidateBasic

func (p Params) ValidateBasic() error

ValidateBasic checks that the parameters have valid values.

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 QueryBatchConfirmsRequest

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

func (*QueryBatchConfirmsRequest) Descriptor

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

func (*QueryBatchConfirmsRequest) GetContractAddress

func (m *QueryBatchConfirmsRequest) GetContractAddress() string

func (*QueryBatchConfirmsRequest) GetNonce

func (m *QueryBatchConfirmsRequest) GetNonce() uint64

func (*QueryBatchConfirmsRequest) Marshal

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

func (*QueryBatchConfirmsRequest) MarshalTo

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

func (*QueryBatchConfirmsRequest) MarshalToSizedBuffer

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

func (*QueryBatchConfirmsRequest) ProtoMessage

func (*QueryBatchConfirmsRequest) ProtoMessage()

func (*QueryBatchConfirmsRequest) Reset

func (m *QueryBatchConfirmsRequest) Reset()

func (*QueryBatchConfirmsRequest) Size

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

func (*QueryBatchConfirmsRequest) String

func (m *QueryBatchConfirmsRequest) String() string

func (*QueryBatchConfirmsRequest) Unmarshal

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

func (*QueryBatchConfirmsRequest) XXX_DiscardUnknown

func (m *QueryBatchConfirmsRequest) XXX_DiscardUnknown()

func (*QueryBatchConfirmsRequest) XXX_Marshal

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

func (*QueryBatchConfirmsRequest) XXX_Merge

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

func (*QueryBatchConfirmsRequest) XXX_Size

func (m *QueryBatchConfirmsRequest) XXX_Size() int

func (*QueryBatchConfirmsRequest) XXX_Unmarshal

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

type QueryBatchConfirmsResponse

type QueryBatchConfirmsResponse struct {
	Confirms []*MsgConfirmBatch `protobuf:"bytes,1,rep,name=confirms,proto3" json:"confirms,omitempty"`
}

func (*QueryBatchConfirmsResponse) Descriptor

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

func (*QueryBatchConfirmsResponse) GetConfirms

func (m *QueryBatchConfirmsResponse) GetConfirms() []*MsgConfirmBatch

func (*QueryBatchConfirmsResponse) Marshal

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

func (*QueryBatchConfirmsResponse) MarshalTo

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

func (*QueryBatchConfirmsResponse) MarshalToSizedBuffer

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

func (*QueryBatchConfirmsResponse) ProtoMessage

func (*QueryBatchConfirmsResponse) ProtoMessage()

func (*QueryBatchConfirmsResponse) Reset

func (m *QueryBatchConfirmsResponse) Reset()

func (*QueryBatchConfirmsResponse) Size

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

func (*QueryBatchConfirmsResponse) String

func (m *QueryBatchConfirmsResponse) String() string

func (*QueryBatchConfirmsResponse) Unmarshal

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

func (*QueryBatchConfirmsResponse) XXX_DiscardUnknown

func (m *QueryBatchConfirmsResponse) XXX_DiscardUnknown()

func (*QueryBatchConfirmsResponse) XXX_Marshal

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

func (*QueryBatchConfirmsResponse) XXX_Merge

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

func (*QueryBatchConfirmsResponse) XXX_Size

func (m *QueryBatchConfirmsResponse) XXX_Size() int

func (*QueryBatchConfirmsResponse) XXX_Unmarshal

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

type QueryBatchFeeRequest

type QueryBatchFeeRequest struct {
}

func (*QueryBatchFeeRequest) Descriptor

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

func (*QueryBatchFeeRequest) Marshal

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

func (*QueryBatchFeeRequest) MarshalTo

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

func (*QueryBatchFeeRequest) MarshalToSizedBuffer

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

func (*QueryBatchFeeRequest) ProtoMessage

func (*QueryBatchFeeRequest) ProtoMessage()

func (*QueryBatchFeeRequest) Reset

func (m *QueryBatchFeeRequest) Reset()

func (*QueryBatchFeeRequest) Size

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

func (*QueryBatchFeeRequest) String

func (m *QueryBatchFeeRequest) String() string

func (*QueryBatchFeeRequest) Unmarshal

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

func (*QueryBatchFeeRequest) XXX_DiscardUnknown

func (m *QueryBatchFeeRequest) XXX_DiscardUnknown()

func (*QueryBatchFeeRequest) XXX_Marshal

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

func (*QueryBatchFeeRequest) XXX_Merge

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

func (*QueryBatchFeeRequest) XXX_Size

func (m *QueryBatchFeeRequest) XXX_Size() int

func (*QueryBatchFeeRequest) XXX_Unmarshal

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

type QueryBatchFeeResponse

type QueryBatchFeeResponse struct {
	BatchFees []*BatchFees `protobuf:"bytes,1,rep,name=batch_fees,json=batchFees,proto3" json:"batch_fees,omitempty"`
}

func (*QueryBatchFeeResponse) Descriptor

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

func (*QueryBatchFeeResponse) GetBatchFees

func (m *QueryBatchFeeResponse) GetBatchFees() []*BatchFees

func (*QueryBatchFeeResponse) Marshal

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

func (*QueryBatchFeeResponse) MarshalTo

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

func (*QueryBatchFeeResponse) MarshalToSizedBuffer

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

func (*QueryBatchFeeResponse) ProtoMessage

func (*QueryBatchFeeResponse) ProtoMessage()

func (*QueryBatchFeeResponse) Reset

func (m *QueryBatchFeeResponse) Reset()

func (*QueryBatchFeeResponse) Size

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

func (*QueryBatchFeeResponse) String

func (m *QueryBatchFeeResponse) String() string

func (*QueryBatchFeeResponse) Unmarshal

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

func (*QueryBatchFeeResponse) XXX_DiscardUnknown

func (m *QueryBatchFeeResponse) XXX_DiscardUnknown()

func (*QueryBatchFeeResponse) XXX_Marshal

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

func (*QueryBatchFeeResponse) XXX_Merge

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

func (*QueryBatchFeeResponse) XXX_Size

func (m *QueryBatchFeeResponse) XXX_Size() int

func (*QueryBatchFeeResponse) XXX_Unmarshal

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

type QueryBatchRequestByNonceRequest

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

func (*QueryBatchRequestByNonceRequest) Descriptor

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

func (*QueryBatchRequestByNonceRequest) GetContractAddress

func (m *QueryBatchRequestByNonceRequest) GetContractAddress() string

func (*QueryBatchRequestByNonceRequest) GetNonce

func (*QueryBatchRequestByNonceRequest) Marshal

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

func (*QueryBatchRequestByNonceRequest) MarshalTo

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

func (*QueryBatchRequestByNonceRequest) MarshalToSizedBuffer

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

func (*QueryBatchRequestByNonceRequest) ProtoMessage

func (*QueryBatchRequestByNonceRequest) ProtoMessage()

func (*QueryBatchRequestByNonceRequest) Reset

func (*QueryBatchRequestByNonceRequest) Size

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

func (*QueryBatchRequestByNonceRequest) String

func (*QueryBatchRequestByNonceRequest) Unmarshal

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

func (*QueryBatchRequestByNonceRequest) XXX_DiscardUnknown

func (m *QueryBatchRequestByNonceRequest) XXX_DiscardUnknown()

func (*QueryBatchRequestByNonceRequest) XXX_Marshal

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

func (*QueryBatchRequestByNonceRequest) XXX_Merge

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

func (*QueryBatchRequestByNonceRequest) XXX_Size

func (m *QueryBatchRequestByNonceRequest) XXX_Size() int

func (*QueryBatchRequestByNonceRequest) XXX_Unmarshal

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

type QueryBatchRequestByNonceResponse

type QueryBatchRequestByNonceResponse struct {
	Batch *OutgoingTxBatch `protobuf:"bytes,1,opt,name=batch,proto3" json:"batch,omitempty"`
}

func (*QueryBatchRequestByNonceResponse) Descriptor

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

func (*QueryBatchRequestByNonceResponse) GetBatch

func (*QueryBatchRequestByNonceResponse) Marshal

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

func (*QueryBatchRequestByNonceResponse) MarshalTo

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

func (*QueryBatchRequestByNonceResponse) MarshalToSizedBuffer

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

func (*QueryBatchRequestByNonceResponse) ProtoMessage

func (*QueryBatchRequestByNonceResponse) ProtoMessage()

func (*QueryBatchRequestByNonceResponse) Reset

func (*QueryBatchRequestByNonceResponse) Size

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

func (*QueryBatchRequestByNonceResponse) String

func (*QueryBatchRequestByNonceResponse) Unmarshal

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

func (*QueryBatchRequestByNonceResponse) XXX_DiscardUnknown

func (m *QueryBatchRequestByNonceResponse) XXX_DiscardUnknown()

func (*QueryBatchRequestByNonceResponse) XXX_Marshal

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

func (*QueryBatchRequestByNonceResponse) XXX_Merge

func (*QueryBatchRequestByNonceResponse) XXX_Size

func (m *QueryBatchRequestByNonceResponse) XXX_Size() int

func (*QueryBatchRequestByNonceResponse) XXX_Unmarshal

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

type QueryClient

type QueryClient interface {
	// Deployments queries deployments
	Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error)
	CurrentValset(ctx context.Context, in *QueryCurrentValsetRequest, opts ...grpc.CallOption) (*QueryCurrentValsetResponse, error)
	ValsetRequest(ctx context.Context, in *QueryValsetRequestRequest, opts ...grpc.CallOption) (*QueryValsetRequestResponse, error)
	ValsetConfirm(ctx context.Context, in *QueryValsetConfirmRequest, opts ...grpc.CallOption) (*QueryValsetConfirmResponse, error)
	ValsetConfirmsByNonce(ctx context.Context, in *QueryValsetConfirmsByNonceRequest, opts ...grpc.CallOption) (*QueryValsetConfirmsByNonceResponse, error)
	LastValsetRequests(ctx context.Context, in *QueryLastValsetRequestsRequest, opts ...grpc.CallOption) (*QueryLastValsetRequestsResponse, error)
	LastPendingValsetRequestByAddr(ctx context.Context, in *QueryLastPendingValsetRequestByAddrRequest, opts ...grpc.CallOption) (*QueryLastPendingValsetRequestByAddrResponse, error)
	LastPendingBatchRequestByAddr(ctx context.Context, in *QueryLastPendingBatchRequestByAddrRequest, opts ...grpc.CallOption) (*QueryLastPendingBatchRequestByAddrResponse, error)
	LastPendingLogicCallByAddr(ctx context.Context, in *QueryLastPendingLogicCallByAddrRequest, opts ...grpc.CallOption) (*QueryLastPendingLogicCallByAddrResponse, error)
	LastEventNonceByAddr(ctx context.Context, in *QueryLastEventNonceByAddrRequest, opts ...grpc.CallOption) (*QueryLastEventNonceByAddrResponse, error)
	BatchFees(ctx context.Context, in *QueryBatchFeeRequest, opts ...grpc.CallOption) (*QueryBatchFeeResponse, error)
	OutgoingTxBatches(ctx context.Context, in *QueryOutgoingTxBatchesRequest, opts ...grpc.CallOption) (*QueryOutgoingTxBatchesResponse, error)
	OutgoingLogicCalls(ctx context.Context, in *QueryOutgoingLogicCallsRequest, opts ...grpc.CallOption) (*QueryOutgoingLogicCallsResponse, error)
	BatchRequestByNonce(ctx context.Context, in *QueryBatchRequestByNonceRequest, opts ...grpc.CallOption) (*QueryBatchRequestByNonceResponse, error)
	BatchConfirms(ctx context.Context, in *QueryBatchConfirmsRequest, opts ...grpc.CallOption) (*QueryBatchConfirmsResponse, error)
	LogicConfirms(ctx context.Context, in *QueryLogicConfirmsRequest, opts ...grpc.CallOption) (*QueryLogicConfirmsResponse, error)
	ERC20ToDenom(ctx context.Context, in *QueryERC20ToDenomRequest, opts ...grpc.CallOption) (*QueryERC20ToDenomResponse, error)
	DenomToERC20(ctx context.Context, in *QueryDenomToERC20Request, opts ...grpc.CallOption) (*QueryDenomToERC20Response, error)
	GetDelegateKeyByValidator(ctx context.Context, in *QueryDelegateKeysByValidatorAddress, opts ...grpc.CallOption) (*QueryDelegateKeysByValidatorAddressResponse, error)
	GetDelegateKeyByEth(ctx context.Context, in *QueryDelegateKeysByEthAddress, opts ...grpc.CallOption) (*QueryDelegateKeysByEthAddressResponse, error)
	GetDelegateKeyByOrchestrator(ctx context.Context, in *QueryDelegateKeysByOrchestratorAddress, opts ...grpc.CallOption) (*QueryDelegateKeysByOrchestratorAddressResponse, error)
	GetPendingSendToEth(ctx context.Context, in *QueryPendingSendToEth, opts ...grpc.CallOption) (*QueryPendingSendToEthResponse, 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 QueryCurrentValsetRequest

type QueryCurrentValsetRequest struct {
}

func (*QueryCurrentValsetRequest) Descriptor

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

func (*QueryCurrentValsetRequest) Marshal

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

func (*QueryCurrentValsetRequest) MarshalTo

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

func (*QueryCurrentValsetRequest) MarshalToSizedBuffer

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

func (*QueryCurrentValsetRequest) ProtoMessage

func (*QueryCurrentValsetRequest) ProtoMessage()

func (*QueryCurrentValsetRequest) Reset

func (m *QueryCurrentValsetRequest) Reset()

func (*QueryCurrentValsetRequest) Size

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

func (*QueryCurrentValsetRequest) String

func (m *QueryCurrentValsetRequest) String() string

func (*QueryCurrentValsetRequest) Unmarshal

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

func (*QueryCurrentValsetRequest) XXX_DiscardUnknown

func (m *QueryCurrentValsetRequest) XXX_DiscardUnknown()

func (*QueryCurrentValsetRequest) XXX_Marshal

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

func (*QueryCurrentValsetRequest) XXX_Merge

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

func (*QueryCurrentValsetRequest) XXX_Size

func (m *QueryCurrentValsetRequest) XXX_Size() int

func (*QueryCurrentValsetRequest) XXX_Unmarshal

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

type QueryCurrentValsetResponse

type QueryCurrentValsetResponse struct {
	Valset *Valset `protobuf:"bytes,1,opt,name=valset,proto3" json:"valset,omitempty"`
}

func (*QueryCurrentValsetResponse) Descriptor

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

func (*QueryCurrentValsetResponse) GetValset

func (m *QueryCurrentValsetResponse) GetValset() *Valset

func (*QueryCurrentValsetResponse) Marshal

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

func (*QueryCurrentValsetResponse) MarshalTo

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

func (*QueryCurrentValsetResponse) MarshalToSizedBuffer

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

func (*QueryCurrentValsetResponse) ProtoMessage

func (*QueryCurrentValsetResponse) ProtoMessage()

func (*QueryCurrentValsetResponse) Reset

func (m *QueryCurrentValsetResponse) Reset()

func (*QueryCurrentValsetResponse) Size

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

func (*QueryCurrentValsetResponse) String

func (m *QueryCurrentValsetResponse) String() string

func (*QueryCurrentValsetResponse) Unmarshal

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

func (*QueryCurrentValsetResponse) XXX_DiscardUnknown

func (m *QueryCurrentValsetResponse) XXX_DiscardUnknown()

func (*QueryCurrentValsetResponse) XXX_Marshal

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

func (*QueryCurrentValsetResponse) XXX_Merge

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

func (*QueryCurrentValsetResponse) XXX_Size

func (m *QueryCurrentValsetResponse) XXX_Size() int

func (*QueryCurrentValsetResponse) XXX_Unmarshal

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

type QueryDelegateKeysByEthAddress

type QueryDelegateKeysByEthAddress struct {
	EthAddress string `protobuf:"bytes,1,opt,name=eth_address,json=ethAddress,proto3" json:"eth_address,omitempty"`
}

func (*QueryDelegateKeysByEthAddress) Descriptor

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

func (*QueryDelegateKeysByEthAddress) GetEthAddress

func (m *QueryDelegateKeysByEthAddress) GetEthAddress() string

func (*QueryDelegateKeysByEthAddress) Marshal

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

func (*QueryDelegateKeysByEthAddress) MarshalTo

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

func (*QueryDelegateKeysByEthAddress) MarshalToSizedBuffer

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

func (*QueryDelegateKeysByEthAddress) ProtoMessage

func (*QueryDelegateKeysByEthAddress) ProtoMessage()

func (*QueryDelegateKeysByEthAddress) Reset

func (m *QueryDelegateKeysByEthAddress) Reset()

func (*QueryDelegateKeysByEthAddress) Size

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

func (*QueryDelegateKeysByEthAddress) String

func (*QueryDelegateKeysByEthAddress) Unmarshal

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

func (*QueryDelegateKeysByEthAddress) XXX_DiscardUnknown

func (m *QueryDelegateKeysByEthAddress) XXX_DiscardUnknown()

func (*QueryDelegateKeysByEthAddress) XXX_Marshal

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

func (*QueryDelegateKeysByEthAddress) XXX_Merge

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

func (*QueryDelegateKeysByEthAddress) XXX_Size

func (m *QueryDelegateKeysByEthAddress) XXX_Size() int

func (*QueryDelegateKeysByEthAddress) XXX_Unmarshal

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

type QueryDelegateKeysByEthAddressResponse

type QueryDelegateKeysByEthAddressResponse struct {
	ValidatorAddress    string `protobuf:"bytes,1,opt,name=validator_address,json=validatorAddress,proto3" json:"validator_address,omitempty"`
	OrchestratorAddress string `protobuf:"bytes,2,opt,name=orchestrator_address,json=orchestratorAddress,proto3" json:"orchestrator_address,omitempty"`
}

func (*QueryDelegateKeysByEthAddressResponse) Descriptor

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

func (*QueryDelegateKeysByEthAddressResponse) GetOrchestratorAddress

func (m *QueryDelegateKeysByEthAddressResponse) GetOrchestratorAddress() string

func (*QueryDelegateKeysByEthAddressResponse) GetValidatorAddress

func (m *QueryDelegateKeysByEthAddressResponse) GetValidatorAddress() string

func (*QueryDelegateKeysByEthAddressResponse) Marshal

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

func (*QueryDelegateKeysByEthAddressResponse) MarshalTo

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

func (*QueryDelegateKeysByEthAddressResponse) MarshalToSizedBuffer

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

func (*QueryDelegateKeysByEthAddressResponse) ProtoMessage

func (*QueryDelegateKeysByEthAddressResponse) ProtoMessage()

func (*QueryDelegateKeysByEthAddressResponse) Reset

func (*QueryDelegateKeysByEthAddressResponse) Size

func (*QueryDelegateKeysByEthAddressResponse) String

func (*QueryDelegateKeysByEthAddressResponse) Unmarshal

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

func (*QueryDelegateKeysByEthAddressResponse) XXX_DiscardUnknown

func (m *QueryDelegateKeysByEthAddressResponse) XXX_DiscardUnknown()

func (*QueryDelegateKeysByEthAddressResponse) XXX_Marshal

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

func (*QueryDelegateKeysByEthAddressResponse) XXX_Merge

func (*QueryDelegateKeysByEthAddressResponse) XXX_Size

func (*QueryDelegateKeysByEthAddressResponse) XXX_Unmarshal

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

type QueryDelegateKeysByOrchestratorAddress

type QueryDelegateKeysByOrchestratorAddress struct {
	OrchestratorAddress string `protobuf:"bytes,1,opt,name=orchestrator_address,json=orchestratorAddress,proto3" json:"orchestrator_address,omitempty"`
}

func (*QueryDelegateKeysByOrchestratorAddress) Descriptor

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

func (*QueryDelegateKeysByOrchestratorAddress) GetOrchestratorAddress

func (m *QueryDelegateKeysByOrchestratorAddress) GetOrchestratorAddress() string

func (*QueryDelegateKeysByOrchestratorAddress) Marshal

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

func (*QueryDelegateKeysByOrchestratorAddress) MarshalTo

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

func (*QueryDelegateKeysByOrchestratorAddress) MarshalToSizedBuffer

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

func (*QueryDelegateKeysByOrchestratorAddress) ProtoMessage

func (*QueryDelegateKeysByOrchestratorAddress) Reset

func (*QueryDelegateKeysByOrchestratorAddress) Size

func (*QueryDelegateKeysByOrchestratorAddress) String

func (*QueryDelegateKeysByOrchestratorAddress) Unmarshal

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

func (*QueryDelegateKeysByOrchestratorAddress) XXX_DiscardUnknown

func (m *QueryDelegateKeysByOrchestratorAddress) XXX_DiscardUnknown()

func (*QueryDelegateKeysByOrchestratorAddress) XXX_Marshal

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

func (*QueryDelegateKeysByOrchestratorAddress) XXX_Merge

func (*QueryDelegateKeysByOrchestratorAddress) XXX_Size

func (*QueryDelegateKeysByOrchestratorAddress) XXX_Unmarshal

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

type QueryDelegateKeysByOrchestratorAddressResponse

type QueryDelegateKeysByOrchestratorAddressResponse struct {
	ValidatorAddress string `protobuf:"bytes,1,opt,name=validator_address,json=validatorAddress,proto3" json:"validator_address,omitempty"`
	EthAddress       string `protobuf:"bytes,2,opt,name=eth_address,json=ethAddress,proto3" json:"eth_address,omitempty"`
}

func (*QueryDelegateKeysByOrchestratorAddressResponse) Descriptor

func (*QueryDelegateKeysByOrchestratorAddressResponse) GetEthAddress

func (*QueryDelegateKeysByOrchestratorAddressResponse) GetValidatorAddress

func (m *QueryDelegateKeysByOrchestratorAddressResponse) GetValidatorAddress() string

func (*QueryDelegateKeysByOrchestratorAddressResponse) Marshal

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

func (*QueryDelegateKeysByOrchestratorAddressResponse) MarshalTo

func (*QueryDelegateKeysByOrchestratorAddressResponse) MarshalToSizedBuffer

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

func (*QueryDelegateKeysByOrchestratorAddressResponse) ProtoMessage

func (*QueryDelegateKeysByOrchestratorAddressResponse) Reset

func (*QueryDelegateKeysByOrchestratorAddressResponse) Size

func (*QueryDelegateKeysByOrchestratorAddressResponse) String

func (*QueryDelegateKeysByOrchestratorAddressResponse) Unmarshal

func (*QueryDelegateKeysByOrchestratorAddressResponse) XXX_DiscardUnknown

func (m *QueryDelegateKeysByOrchestratorAddressResponse) XXX_DiscardUnknown()

func (*QueryDelegateKeysByOrchestratorAddressResponse) XXX_Marshal

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

func (*QueryDelegateKeysByOrchestratorAddressResponse) XXX_Merge

func (*QueryDelegateKeysByOrchestratorAddressResponse) XXX_Size

func (*QueryDelegateKeysByOrchestratorAddressResponse) XXX_Unmarshal

type QueryDelegateKeysByValidatorAddress

type QueryDelegateKeysByValidatorAddress struct {
	ValidatorAddress string `protobuf:"bytes,1,opt,name=validator_address,json=validatorAddress,proto3" json:"validator_address,omitempty"`
}

func (*QueryDelegateKeysByValidatorAddress) Descriptor

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

func (*QueryDelegateKeysByValidatorAddress) GetValidatorAddress

func (m *QueryDelegateKeysByValidatorAddress) GetValidatorAddress() string

func (*QueryDelegateKeysByValidatorAddress) Marshal

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

func (*QueryDelegateKeysByValidatorAddress) MarshalTo

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

func (*QueryDelegateKeysByValidatorAddress) MarshalToSizedBuffer

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

func (*QueryDelegateKeysByValidatorAddress) ProtoMessage

func (*QueryDelegateKeysByValidatorAddress) ProtoMessage()

func (*QueryDelegateKeysByValidatorAddress) Reset

func (*QueryDelegateKeysByValidatorAddress) Size

func (*QueryDelegateKeysByValidatorAddress) String

func (*QueryDelegateKeysByValidatorAddress) Unmarshal

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

func (*QueryDelegateKeysByValidatorAddress) XXX_DiscardUnknown

func (m *QueryDelegateKeysByValidatorAddress) XXX_DiscardUnknown()

func (*QueryDelegateKeysByValidatorAddress) XXX_Marshal

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

func (*QueryDelegateKeysByValidatorAddress) XXX_Merge

func (*QueryDelegateKeysByValidatorAddress) XXX_Size

func (*QueryDelegateKeysByValidatorAddress) XXX_Unmarshal

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

type QueryDelegateKeysByValidatorAddressResponse

type QueryDelegateKeysByValidatorAddressResponse struct {
	EthAddress          string `protobuf:"bytes,1,opt,name=eth_address,json=ethAddress,proto3" json:"eth_address,omitempty"`
	OrchestratorAddress string `protobuf:"bytes,2,opt,name=orchestrator_address,json=orchestratorAddress,proto3" json:"orchestrator_address,omitempty"`
}

func (*QueryDelegateKeysByValidatorAddressResponse) Descriptor

func (*QueryDelegateKeysByValidatorAddressResponse) GetEthAddress

func (*QueryDelegateKeysByValidatorAddressResponse) GetOrchestratorAddress

func (m *QueryDelegateKeysByValidatorAddressResponse) GetOrchestratorAddress() string

func (*QueryDelegateKeysByValidatorAddressResponse) Marshal

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

func (*QueryDelegateKeysByValidatorAddressResponse) MarshalTo

func (*QueryDelegateKeysByValidatorAddressResponse) MarshalToSizedBuffer

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

func (*QueryDelegateKeysByValidatorAddressResponse) ProtoMessage

func (*QueryDelegateKeysByValidatorAddressResponse) Reset

func (*QueryDelegateKeysByValidatorAddressResponse) Size

func (*QueryDelegateKeysByValidatorAddressResponse) String

func (*QueryDelegateKeysByValidatorAddressResponse) Unmarshal

func (*QueryDelegateKeysByValidatorAddressResponse) XXX_DiscardUnknown

func (m *QueryDelegateKeysByValidatorAddressResponse) XXX_DiscardUnknown()

func (*QueryDelegateKeysByValidatorAddressResponse) XXX_Marshal

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

func (*QueryDelegateKeysByValidatorAddressResponse) XXX_Merge

func (*QueryDelegateKeysByValidatorAddressResponse) XXX_Size

func (*QueryDelegateKeysByValidatorAddressResponse) XXX_Unmarshal

type QueryDenomToERC20Request

type QueryDenomToERC20Request struct {
	Denom string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
}

func (*QueryDenomToERC20Request) Descriptor

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

func (*QueryDenomToERC20Request) GetDenom

func (m *QueryDenomToERC20Request) GetDenom() string

func (*QueryDenomToERC20Request) Marshal

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

func (*QueryDenomToERC20Request) MarshalTo

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

func (*QueryDenomToERC20Request) MarshalToSizedBuffer

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

func (*QueryDenomToERC20Request) ProtoMessage

func (*QueryDenomToERC20Request) ProtoMessage()

func (*QueryDenomToERC20Request) Reset

func (m *QueryDenomToERC20Request) Reset()

func (*QueryDenomToERC20Request) Size

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

func (*QueryDenomToERC20Request) String

func (m *QueryDenomToERC20Request) String() string

func (*QueryDenomToERC20Request) Unmarshal

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

func (*QueryDenomToERC20Request) XXX_DiscardUnknown

func (m *QueryDenomToERC20Request) XXX_DiscardUnknown()

func (*QueryDenomToERC20Request) XXX_Marshal

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

func (*QueryDenomToERC20Request) XXX_Merge

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

func (*QueryDenomToERC20Request) XXX_Size

func (m *QueryDenomToERC20Request) XXX_Size() int

func (*QueryDenomToERC20Request) XXX_Unmarshal

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

type QueryDenomToERC20Response

type QueryDenomToERC20Response struct {
	Erc20            string `protobuf:"bytes,1,opt,name=erc20,proto3" json:"erc20,omitempty"`
	CosmosOriginated bool   `protobuf:"varint,2,opt,name=cosmos_originated,json=cosmosOriginated,proto3" json:"cosmos_originated,omitempty"`
}

func (*QueryDenomToERC20Response) Descriptor

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

func (*QueryDenomToERC20Response) GetCosmosOriginated

func (m *QueryDenomToERC20Response) GetCosmosOriginated() bool

func (*QueryDenomToERC20Response) GetErc20

func (m *QueryDenomToERC20Response) GetErc20() string

func (*QueryDenomToERC20Response) Marshal

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

func (*QueryDenomToERC20Response) MarshalTo

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

func (*QueryDenomToERC20Response) MarshalToSizedBuffer

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

func (*QueryDenomToERC20Response) ProtoMessage

func (*QueryDenomToERC20Response) ProtoMessage()

func (*QueryDenomToERC20Response) Reset

func (m *QueryDenomToERC20Response) Reset()

func (*QueryDenomToERC20Response) Size

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

func (*QueryDenomToERC20Response) String

func (m *QueryDenomToERC20Response) String() string

func (*QueryDenomToERC20Response) Unmarshal

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

func (*QueryDenomToERC20Response) XXX_DiscardUnknown

func (m *QueryDenomToERC20Response) XXX_DiscardUnknown()

func (*QueryDenomToERC20Response) XXX_Marshal

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

func (*QueryDenomToERC20Response) XXX_Merge

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

func (*QueryDenomToERC20Response) XXX_Size

func (m *QueryDenomToERC20Response) XXX_Size() int

func (*QueryDenomToERC20Response) XXX_Unmarshal

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

type QueryDenomToERC721Response added in v1.6.21

type QueryDenomToERC721Response struct {
	Erc721           string `protobuf:"bytes,1,opt,name=erc721,proto3" json:"erc721,omitempty"`
	CosmosOriginated bool   `protobuf:"varint,2,opt,name=cosmos_originated,json=cosmosOriginated,proto3" json:"cosmos_originated,omitempty"`
}

type QueryERC20ToDenomRequest

type QueryERC20ToDenomRequest struct {
	Erc20 string `protobuf:"bytes,1,opt,name=erc20,proto3" json:"erc20,omitempty"`
}

func (*QueryERC20ToDenomRequest) Descriptor

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

func (*QueryERC20ToDenomRequest) GetErc20

func (m *QueryERC20ToDenomRequest) GetErc20() string

func (*QueryERC20ToDenomRequest) Marshal

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

func (*QueryERC20ToDenomRequest) MarshalTo

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

func (*QueryERC20ToDenomRequest) MarshalToSizedBuffer

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

func (*QueryERC20ToDenomRequest) ProtoMessage

func (*QueryERC20ToDenomRequest) ProtoMessage()

func (*QueryERC20ToDenomRequest) Reset

func (m *QueryERC20ToDenomRequest) Reset()

func (*QueryERC20ToDenomRequest) Size

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

func (*QueryERC20ToDenomRequest) String

func (m *QueryERC20ToDenomRequest) String() string

func (*QueryERC20ToDenomRequest) Unmarshal

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

func (*QueryERC20ToDenomRequest) XXX_DiscardUnknown

func (m *QueryERC20ToDenomRequest) XXX_DiscardUnknown()

func (*QueryERC20ToDenomRequest) XXX_Marshal

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

func (*QueryERC20ToDenomRequest) XXX_Merge

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

func (*QueryERC20ToDenomRequest) XXX_Size

func (m *QueryERC20ToDenomRequest) XXX_Size() int

func (*QueryERC20ToDenomRequest) XXX_Unmarshal

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

type QueryERC20ToDenomResponse

type QueryERC20ToDenomResponse struct {
	Denom            string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	CosmosOriginated bool   `protobuf:"varint,2,opt,name=cosmos_originated,json=cosmosOriginated,proto3" json:"cosmos_originated,omitempty"`
}

func (*QueryERC20ToDenomResponse) Descriptor

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

func (*QueryERC20ToDenomResponse) GetCosmosOriginated

func (m *QueryERC20ToDenomResponse) GetCosmosOriginated() bool

func (*QueryERC20ToDenomResponse) GetDenom

func (m *QueryERC20ToDenomResponse) GetDenom() string

func (*QueryERC20ToDenomResponse) Marshal

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

func (*QueryERC20ToDenomResponse) MarshalTo

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

func (*QueryERC20ToDenomResponse) MarshalToSizedBuffer

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

func (*QueryERC20ToDenomResponse) ProtoMessage

func (*QueryERC20ToDenomResponse) ProtoMessage()

func (*QueryERC20ToDenomResponse) Reset

func (m *QueryERC20ToDenomResponse) Reset()

func (*QueryERC20ToDenomResponse) Size

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

func (*QueryERC20ToDenomResponse) String

func (m *QueryERC20ToDenomResponse) String() string

func (*QueryERC20ToDenomResponse) Unmarshal

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

func (*QueryERC20ToDenomResponse) XXX_DiscardUnknown

func (m *QueryERC20ToDenomResponse) XXX_DiscardUnknown()

func (*QueryERC20ToDenomResponse) XXX_Marshal

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

func (*QueryERC20ToDenomResponse) XXX_Merge

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

func (*QueryERC20ToDenomResponse) XXX_Size

func (m *QueryERC20ToDenomResponse) XXX_Size() int

func (*QueryERC20ToDenomResponse) XXX_Unmarshal

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

type QueryERC721ToDenomResponse added in v1.6.21

type QueryERC721ToDenomResponse struct {
	Denom            string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	CosmosOriginated bool   `protobuf:"varint,2,opt,name=cosmos_originated,json=cosmosOriginated,proto3" json:"cosmos_originated,omitempty"`
}

type QueryLastEventNonceByAddrRequest

type QueryLastEventNonceByAddrRequest struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
}

func (*QueryLastEventNonceByAddrRequest) Descriptor

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

func (*QueryLastEventNonceByAddrRequest) GetAddress

func (m *QueryLastEventNonceByAddrRequest) GetAddress() string

func (*QueryLastEventNonceByAddrRequest) Marshal

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

func (*QueryLastEventNonceByAddrRequest) MarshalTo

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

func (*QueryLastEventNonceByAddrRequest) MarshalToSizedBuffer

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

func (*QueryLastEventNonceByAddrRequest) ProtoMessage

func (*QueryLastEventNonceByAddrRequest) ProtoMessage()

func (*QueryLastEventNonceByAddrRequest) Reset

func (*QueryLastEventNonceByAddrRequest) Size

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

func (*QueryLastEventNonceByAddrRequest) String

func (*QueryLastEventNonceByAddrRequest) Unmarshal

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

func (*QueryLastEventNonceByAddrRequest) XXX_DiscardUnknown

func (m *QueryLastEventNonceByAddrRequest) XXX_DiscardUnknown()

func (*QueryLastEventNonceByAddrRequest) XXX_Marshal

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

func (*QueryLastEventNonceByAddrRequest) XXX_Merge

func (*QueryLastEventNonceByAddrRequest) XXX_Size

func (m *QueryLastEventNonceByAddrRequest) XXX_Size() int

func (*QueryLastEventNonceByAddrRequest) XXX_Unmarshal

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

type QueryLastEventNonceByAddrResponse

type QueryLastEventNonceByAddrResponse struct {
	EventNonce uint64 `protobuf:"varint,1,opt,name=event_nonce,json=eventNonce,proto3" json:"event_nonce,omitempty"`
}

func (*QueryLastEventNonceByAddrResponse) Descriptor

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

func (*QueryLastEventNonceByAddrResponse) GetEventNonce

func (m *QueryLastEventNonceByAddrResponse) GetEventNonce() uint64

func (*QueryLastEventNonceByAddrResponse) Marshal

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

func (*QueryLastEventNonceByAddrResponse) MarshalTo

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

func (*QueryLastEventNonceByAddrResponse) MarshalToSizedBuffer

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

func (*QueryLastEventNonceByAddrResponse) ProtoMessage

func (*QueryLastEventNonceByAddrResponse) ProtoMessage()

func (*QueryLastEventNonceByAddrResponse) Reset

func (*QueryLastEventNonceByAddrResponse) Size

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

func (*QueryLastEventNonceByAddrResponse) String

func (*QueryLastEventNonceByAddrResponse) Unmarshal

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

func (*QueryLastEventNonceByAddrResponse) XXX_DiscardUnknown

func (m *QueryLastEventNonceByAddrResponse) XXX_DiscardUnknown()

func (*QueryLastEventNonceByAddrResponse) XXX_Marshal

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

func (*QueryLastEventNonceByAddrResponse) XXX_Merge

func (*QueryLastEventNonceByAddrResponse) XXX_Size

func (m *QueryLastEventNonceByAddrResponse) XXX_Size() int

func (*QueryLastEventNonceByAddrResponse) XXX_Unmarshal

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

type QueryLastPendingBatchRequestByAddrRequest

type QueryLastPendingBatchRequestByAddrRequest struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
}

func (*QueryLastPendingBatchRequestByAddrRequest) Descriptor

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

func (*QueryLastPendingBatchRequestByAddrRequest) GetAddress

func (*QueryLastPendingBatchRequestByAddrRequest) Marshal

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

func (*QueryLastPendingBatchRequestByAddrRequest) MarshalTo

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

func (*QueryLastPendingBatchRequestByAddrRequest) MarshalToSizedBuffer

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

func (*QueryLastPendingBatchRequestByAddrRequest) ProtoMessage

func (*QueryLastPendingBatchRequestByAddrRequest) Reset

func (*QueryLastPendingBatchRequestByAddrRequest) Size

func (*QueryLastPendingBatchRequestByAddrRequest) String

func (*QueryLastPendingBatchRequestByAddrRequest) Unmarshal

func (*QueryLastPendingBatchRequestByAddrRequest) XXX_DiscardUnknown

func (m *QueryLastPendingBatchRequestByAddrRequest) XXX_DiscardUnknown()

func (*QueryLastPendingBatchRequestByAddrRequest) XXX_Marshal

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

func (*QueryLastPendingBatchRequestByAddrRequest) XXX_Merge

func (*QueryLastPendingBatchRequestByAddrRequest) XXX_Size

func (*QueryLastPendingBatchRequestByAddrRequest) XXX_Unmarshal

type QueryLastPendingBatchRequestByAddrResponse

type QueryLastPendingBatchRequestByAddrResponse struct {
	Batch *OutgoingTxBatch `protobuf:"bytes,1,opt,name=batch,proto3" json:"batch,omitempty"`
}

func (*QueryLastPendingBatchRequestByAddrResponse) Descriptor

func (*QueryLastPendingBatchRequestByAddrResponse) GetBatch

func (*QueryLastPendingBatchRequestByAddrResponse) Marshal

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

func (*QueryLastPendingBatchRequestByAddrResponse) MarshalTo

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

func (*QueryLastPendingBatchRequestByAddrResponse) MarshalToSizedBuffer

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

func (*QueryLastPendingBatchRequestByAddrResponse) ProtoMessage

func (*QueryLastPendingBatchRequestByAddrResponse) Reset

func (*QueryLastPendingBatchRequestByAddrResponse) Size

func (*QueryLastPendingBatchRequestByAddrResponse) String

func (*QueryLastPendingBatchRequestByAddrResponse) Unmarshal

func (*QueryLastPendingBatchRequestByAddrResponse) XXX_DiscardUnknown

func (m *QueryLastPendingBatchRequestByAddrResponse) XXX_DiscardUnknown()

func (*QueryLastPendingBatchRequestByAddrResponse) XXX_Marshal

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

func (*QueryLastPendingBatchRequestByAddrResponse) XXX_Merge

func (*QueryLastPendingBatchRequestByAddrResponse) XXX_Size

func (*QueryLastPendingBatchRequestByAddrResponse) XXX_Unmarshal

type QueryLastPendingLogicCallByAddrRequest

type QueryLastPendingLogicCallByAddrRequest struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
}

func (*QueryLastPendingLogicCallByAddrRequest) Descriptor

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

func (*QueryLastPendingLogicCallByAddrRequest) GetAddress

func (*QueryLastPendingLogicCallByAddrRequest) Marshal

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

func (*QueryLastPendingLogicCallByAddrRequest) MarshalTo

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

func (*QueryLastPendingLogicCallByAddrRequest) MarshalToSizedBuffer

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

func (*QueryLastPendingLogicCallByAddrRequest) ProtoMessage

func (*QueryLastPendingLogicCallByAddrRequest) Reset

func (*QueryLastPendingLogicCallByAddrRequest) Size

func (*QueryLastPendingLogicCallByAddrRequest) String

func (*QueryLastPendingLogicCallByAddrRequest) Unmarshal

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

func (*QueryLastPendingLogicCallByAddrRequest) XXX_DiscardUnknown

func (m *QueryLastPendingLogicCallByAddrRequest) XXX_DiscardUnknown()

func (*QueryLastPendingLogicCallByAddrRequest) XXX_Marshal

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

func (*QueryLastPendingLogicCallByAddrRequest) XXX_Merge

func (*QueryLastPendingLogicCallByAddrRequest) XXX_Size

func (*QueryLastPendingLogicCallByAddrRequest) XXX_Unmarshal

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

type QueryLastPendingLogicCallByAddrResponse

type QueryLastPendingLogicCallByAddrResponse struct {
	Call *OutgoingLogicCall `protobuf:"bytes,1,opt,name=call,proto3" json:"call,omitempty"`
}

func (*QueryLastPendingLogicCallByAddrResponse) Descriptor

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

func (*QueryLastPendingLogicCallByAddrResponse) GetCall

func (*QueryLastPendingLogicCallByAddrResponse) Marshal

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

func (*QueryLastPendingLogicCallByAddrResponse) MarshalTo

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

func (*QueryLastPendingLogicCallByAddrResponse) MarshalToSizedBuffer

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

func (*QueryLastPendingLogicCallByAddrResponse) ProtoMessage

func (*QueryLastPendingLogicCallByAddrResponse) Reset

func (*QueryLastPendingLogicCallByAddrResponse) Size

func (*QueryLastPendingLogicCallByAddrResponse) String

func (*QueryLastPendingLogicCallByAddrResponse) Unmarshal

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

func (*QueryLastPendingLogicCallByAddrResponse) XXX_DiscardUnknown

func (m *QueryLastPendingLogicCallByAddrResponse) XXX_DiscardUnknown()

func (*QueryLastPendingLogicCallByAddrResponse) XXX_Marshal

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

func (*QueryLastPendingLogicCallByAddrResponse) XXX_Merge

func (*QueryLastPendingLogicCallByAddrResponse) XXX_Size

func (*QueryLastPendingLogicCallByAddrResponse) XXX_Unmarshal

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

type QueryLastPendingValsetRequestByAddrRequest

type QueryLastPendingValsetRequestByAddrRequest struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
}

func (*QueryLastPendingValsetRequestByAddrRequest) Descriptor

func (*QueryLastPendingValsetRequestByAddrRequest) GetAddress

func (*QueryLastPendingValsetRequestByAddrRequest) Marshal

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

func (*QueryLastPendingValsetRequestByAddrRequest) MarshalTo

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

func (*QueryLastPendingValsetRequestByAddrRequest) MarshalToSizedBuffer

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

func (*QueryLastPendingValsetRequestByAddrRequest) ProtoMessage

func (*QueryLastPendingValsetRequestByAddrRequest) Reset

func (*QueryLastPendingValsetRequestByAddrRequest) Size

func (*QueryLastPendingValsetRequestByAddrRequest) String

func (*QueryLastPendingValsetRequestByAddrRequest) Unmarshal

func (*QueryLastPendingValsetRequestByAddrRequest) XXX_DiscardUnknown

func (m *QueryLastPendingValsetRequestByAddrRequest) XXX_DiscardUnknown()

func (*QueryLastPendingValsetRequestByAddrRequest) XXX_Marshal

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

func (*QueryLastPendingValsetRequestByAddrRequest) XXX_Merge

func (*QueryLastPendingValsetRequestByAddrRequest) XXX_Size

func (*QueryLastPendingValsetRequestByAddrRequest) XXX_Unmarshal

type QueryLastPendingValsetRequestByAddrResponse

type QueryLastPendingValsetRequestByAddrResponse struct {
	Valsets []*Valset `protobuf:"bytes,1,rep,name=valsets,proto3" json:"valsets,omitempty"`
}

func (*QueryLastPendingValsetRequestByAddrResponse) Descriptor

func (*QueryLastPendingValsetRequestByAddrResponse) GetValsets

func (*QueryLastPendingValsetRequestByAddrResponse) Marshal

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

func (*QueryLastPendingValsetRequestByAddrResponse) MarshalTo

func (*QueryLastPendingValsetRequestByAddrResponse) MarshalToSizedBuffer

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

func (*QueryLastPendingValsetRequestByAddrResponse) ProtoMessage

func (*QueryLastPendingValsetRequestByAddrResponse) Reset

func (*QueryLastPendingValsetRequestByAddrResponse) Size

func (*QueryLastPendingValsetRequestByAddrResponse) String

func (*QueryLastPendingValsetRequestByAddrResponse) Unmarshal

func (*QueryLastPendingValsetRequestByAddrResponse) XXX_DiscardUnknown

func (m *QueryLastPendingValsetRequestByAddrResponse) XXX_DiscardUnknown()

func (*QueryLastPendingValsetRequestByAddrResponse) XXX_Marshal

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

func (*QueryLastPendingValsetRequestByAddrResponse) XXX_Merge

func (*QueryLastPendingValsetRequestByAddrResponse) XXX_Size

func (*QueryLastPendingValsetRequestByAddrResponse) XXX_Unmarshal

type QueryLastValsetRequestsRequest

type QueryLastValsetRequestsRequest struct {
}

func (*QueryLastValsetRequestsRequest) Descriptor

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

func (*QueryLastValsetRequestsRequest) Marshal

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

func (*QueryLastValsetRequestsRequest) MarshalTo

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

func (*QueryLastValsetRequestsRequest) MarshalToSizedBuffer

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

func (*QueryLastValsetRequestsRequest) ProtoMessage

func (*QueryLastValsetRequestsRequest) ProtoMessage()

func (*QueryLastValsetRequestsRequest) Reset

func (m *QueryLastValsetRequestsRequest) Reset()

func (*QueryLastValsetRequestsRequest) Size

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

func (*QueryLastValsetRequestsRequest) String

func (*QueryLastValsetRequestsRequest) Unmarshal

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

func (*QueryLastValsetRequestsRequest) XXX_DiscardUnknown

func (m *QueryLastValsetRequestsRequest) XXX_DiscardUnknown()

func (*QueryLastValsetRequestsRequest) XXX_Marshal

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

func (*QueryLastValsetRequestsRequest) XXX_Merge

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

func (*QueryLastValsetRequestsRequest) XXX_Size

func (m *QueryLastValsetRequestsRequest) XXX_Size() int

func (*QueryLastValsetRequestsRequest) XXX_Unmarshal

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

type QueryLastValsetRequestsResponse

type QueryLastValsetRequestsResponse struct {
	Valsets []*Valset `protobuf:"bytes,1,rep,name=valsets,proto3" json:"valsets,omitempty"`
}

func (*QueryLastValsetRequestsResponse) Descriptor

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

func (*QueryLastValsetRequestsResponse) GetValsets

func (m *QueryLastValsetRequestsResponse) GetValsets() []*Valset

func (*QueryLastValsetRequestsResponse) Marshal

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

func (*QueryLastValsetRequestsResponse) MarshalTo

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

func (*QueryLastValsetRequestsResponse) MarshalToSizedBuffer

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

func (*QueryLastValsetRequestsResponse) ProtoMessage

func (*QueryLastValsetRequestsResponse) ProtoMessage()

func (*QueryLastValsetRequestsResponse) Reset

func (*QueryLastValsetRequestsResponse) Size

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

func (*QueryLastValsetRequestsResponse) String

func (*QueryLastValsetRequestsResponse) Unmarshal

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

func (*QueryLastValsetRequestsResponse) XXX_DiscardUnknown

func (m *QueryLastValsetRequestsResponse) XXX_DiscardUnknown()

func (*QueryLastValsetRequestsResponse) XXX_Marshal

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

func (*QueryLastValsetRequestsResponse) XXX_Merge

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

func (*QueryLastValsetRequestsResponse) XXX_Size

func (m *QueryLastValsetRequestsResponse) XXX_Size() int

func (*QueryLastValsetRequestsResponse) XXX_Unmarshal

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

type QueryLogicConfirmsRequest

type QueryLogicConfirmsRequest struct {
	InvalidationId    []byte `protobuf:"bytes,1,opt,name=invalidation_id,json=invalidationId,proto3" json:"invalidation_id,omitempty"`
	InvalidationNonce uint64 `protobuf:"varint,2,opt,name=invalidation_nonce,json=invalidationNonce,proto3" json:"invalidation_nonce,omitempty"`
}

func (*QueryLogicConfirmsRequest) Descriptor

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

func (*QueryLogicConfirmsRequest) GetInvalidationId

func (m *QueryLogicConfirmsRequest) GetInvalidationId() []byte

func (*QueryLogicConfirmsRequest) GetInvalidationNonce

func (m *QueryLogicConfirmsRequest) GetInvalidationNonce() uint64

func (*QueryLogicConfirmsRequest) Marshal

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

func (*QueryLogicConfirmsRequest) MarshalTo

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

func (*QueryLogicConfirmsRequest) MarshalToSizedBuffer

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

func (*QueryLogicConfirmsRequest) ProtoMessage

func (*QueryLogicConfirmsRequest) ProtoMessage()

func (*QueryLogicConfirmsRequest) Reset

func (m *QueryLogicConfirmsRequest) Reset()

func (*QueryLogicConfirmsRequest) Size

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

func (*QueryLogicConfirmsRequest) String

func (m *QueryLogicConfirmsRequest) String() string

func (*QueryLogicConfirmsRequest) Unmarshal

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

func (*QueryLogicConfirmsRequest) XXX_DiscardUnknown

func (m *QueryLogicConfirmsRequest) XXX_DiscardUnknown()

func (*QueryLogicConfirmsRequest) XXX_Marshal

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

func (*QueryLogicConfirmsRequest) XXX_Merge

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

func (*QueryLogicConfirmsRequest) XXX_Size

func (m *QueryLogicConfirmsRequest) XXX_Size() int

func (*QueryLogicConfirmsRequest) XXX_Unmarshal

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

type QueryLogicConfirmsResponse

type QueryLogicConfirmsResponse struct {
	Confirms []*MsgConfirmLogicCall `protobuf:"bytes,1,rep,name=confirms,proto3" json:"confirms,omitempty"`
}

func (*QueryLogicConfirmsResponse) Descriptor

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

func (*QueryLogicConfirmsResponse) GetConfirms

func (m *QueryLogicConfirmsResponse) GetConfirms() []*MsgConfirmLogicCall

func (*QueryLogicConfirmsResponse) Marshal

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

func (*QueryLogicConfirmsResponse) MarshalTo

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

func (*QueryLogicConfirmsResponse) MarshalToSizedBuffer

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

func (*QueryLogicConfirmsResponse) ProtoMessage

func (*QueryLogicConfirmsResponse) ProtoMessage()

func (*QueryLogicConfirmsResponse) Reset

func (m *QueryLogicConfirmsResponse) Reset()

func (*QueryLogicConfirmsResponse) Size

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

func (*QueryLogicConfirmsResponse) String

func (m *QueryLogicConfirmsResponse) String() string

func (*QueryLogicConfirmsResponse) Unmarshal

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

func (*QueryLogicConfirmsResponse) XXX_DiscardUnknown

func (m *QueryLogicConfirmsResponse) XXX_DiscardUnknown()

func (*QueryLogicConfirmsResponse) XXX_Marshal

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

func (*QueryLogicConfirmsResponse) XXX_Merge

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

func (*QueryLogicConfirmsResponse) XXX_Size

func (m *QueryLogicConfirmsResponse) XXX_Size() int

func (*QueryLogicConfirmsResponse) XXX_Unmarshal

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

type QueryOutgoingLogicCallsRequest

type QueryOutgoingLogicCallsRequest struct {
}

func (*QueryOutgoingLogicCallsRequest) Descriptor

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

func (*QueryOutgoingLogicCallsRequest) Marshal

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

func (*QueryOutgoingLogicCallsRequest) MarshalTo

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

func (*QueryOutgoingLogicCallsRequest) MarshalToSizedBuffer

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

func (*QueryOutgoingLogicCallsRequest) ProtoMessage

func (*QueryOutgoingLogicCallsRequest) ProtoMessage()

func (*QueryOutgoingLogicCallsRequest) Reset

func (m *QueryOutgoingLogicCallsRequest) Reset()

func (*QueryOutgoingLogicCallsRequest) Size

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

func (*QueryOutgoingLogicCallsRequest) String

func (*QueryOutgoingLogicCallsRequest) Unmarshal

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

func (*QueryOutgoingLogicCallsRequest) XXX_DiscardUnknown

func (m *QueryOutgoingLogicCallsRequest) XXX_DiscardUnknown()

func (*QueryOutgoingLogicCallsRequest) XXX_Marshal

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

func (*QueryOutgoingLogicCallsRequest) XXX_Merge

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

func (*QueryOutgoingLogicCallsRequest) XXX_Size

func (m *QueryOutgoingLogicCallsRequest) XXX_Size() int

func (*QueryOutgoingLogicCallsRequest) XXX_Unmarshal

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

type QueryOutgoingLogicCallsResponse

type QueryOutgoingLogicCallsResponse struct {
	Calls []*OutgoingLogicCall `protobuf:"bytes,1,rep,name=calls,proto3" json:"calls,omitempty"`
}

func (*QueryOutgoingLogicCallsResponse) Descriptor

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

func (*QueryOutgoingLogicCallsResponse) GetCalls

func (*QueryOutgoingLogicCallsResponse) Marshal

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

func (*QueryOutgoingLogicCallsResponse) MarshalTo

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

func (*QueryOutgoingLogicCallsResponse) MarshalToSizedBuffer

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

func (*QueryOutgoingLogicCallsResponse) ProtoMessage

func (*QueryOutgoingLogicCallsResponse) ProtoMessage()

func (*QueryOutgoingLogicCallsResponse) Reset

func (*QueryOutgoingLogicCallsResponse) Size

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

func (*QueryOutgoingLogicCallsResponse) String

func (*QueryOutgoingLogicCallsResponse) Unmarshal

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

func (*QueryOutgoingLogicCallsResponse) XXX_DiscardUnknown

func (m *QueryOutgoingLogicCallsResponse) XXX_DiscardUnknown()

func (*QueryOutgoingLogicCallsResponse) XXX_Marshal

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

func (*QueryOutgoingLogicCallsResponse) XXX_Merge

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

func (*QueryOutgoingLogicCallsResponse) XXX_Size

func (m *QueryOutgoingLogicCallsResponse) XXX_Size() int

func (*QueryOutgoingLogicCallsResponse) XXX_Unmarshal

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

type QueryOutgoingTxBatchesRequest

type QueryOutgoingTxBatchesRequest struct {
}

func (*QueryOutgoingTxBatchesRequest) Descriptor

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

func (*QueryOutgoingTxBatchesRequest) Marshal

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

func (*QueryOutgoingTxBatchesRequest) MarshalTo

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

func (*QueryOutgoingTxBatchesRequest) MarshalToSizedBuffer

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

func (*QueryOutgoingTxBatchesRequest) ProtoMessage

func (*QueryOutgoingTxBatchesRequest) ProtoMessage()

func (*QueryOutgoingTxBatchesRequest) Reset

func (m *QueryOutgoingTxBatchesRequest) Reset()

func (*QueryOutgoingTxBatchesRequest) Size

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

func (*QueryOutgoingTxBatchesRequest) String

func (*QueryOutgoingTxBatchesRequest) Unmarshal

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

func (*QueryOutgoingTxBatchesRequest) XXX_DiscardUnknown

func (m *QueryOutgoingTxBatchesRequest) XXX_DiscardUnknown()

func (*QueryOutgoingTxBatchesRequest) XXX_Marshal

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

func (*QueryOutgoingTxBatchesRequest) XXX_Merge

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

func (*QueryOutgoingTxBatchesRequest) XXX_Size

func (m *QueryOutgoingTxBatchesRequest) XXX_Size() int

func (*QueryOutgoingTxBatchesRequest) XXX_Unmarshal

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

type QueryOutgoingTxBatchesResponse

type QueryOutgoingTxBatchesResponse struct {
	Batches []*OutgoingTxBatch `protobuf:"bytes,1,rep,name=batches,proto3" json:"batches,omitempty"`
}

func (*QueryOutgoingTxBatchesResponse) Descriptor

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

func (*QueryOutgoingTxBatchesResponse) GetBatches

func (*QueryOutgoingTxBatchesResponse) Marshal

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

func (*QueryOutgoingTxBatchesResponse) MarshalTo

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

func (*QueryOutgoingTxBatchesResponse) MarshalToSizedBuffer

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

func (*QueryOutgoingTxBatchesResponse) ProtoMessage

func (*QueryOutgoingTxBatchesResponse) ProtoMessage()

func (*QueryOutgoingTxBatchesResponse) Reset

func (m *QueryOutgoingTxBatchesResponse) Reset()

func (*QueryOutgoingTxBatchesResponse) Size

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

func (*QueryOutgoingTxBatchesResponse) String

func (*QueryOutgoingTxBatchesResponse) Unmarshal

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

func (*QueryOutgoingTxBatchesResponse) XXX_DiscardUnknown

func (m *QueryOutgoingTxBatchesResponse) XXX_DiscardUnknown()

func (*QueryOutgoingTxBatchesResponse) XXX_Marshal

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

func (*QueryOutgoingTxBatchesResponse) XXX_Merge

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

func (*QueryOutgoingTxBatchesResponse) XXX_Size

func (m *QueryOutgoingTxBatchesResponse) XXX_Size() int

func (*QueryOutgoingTxBatchesResponse) XXX_Unmarshal

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

type QueryParamsRequest

type QueryParamsRequest struct {
}

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 {
	Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
}

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 QueryPendingSendToEth

type QueryPendingSendToEth struct {
	SenderAddress string `protobuf:"bytes,1,opt,name=sender_address,json=senderAddress,proto3" json:"sender_address,omitempty"`
}

func (*QueryPendingSendToEth) Descriptor

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

func (*QueryPendingSendToEth) GetSenderAddress

func (m *QueryPendingSendToEth) GetSenderAddress() string

func (*QueryPendingSendToEth) Marshal

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

func (*QueryPendingSendToEth) MarshalTo

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

func (*QueryPendingSendToEth) MarshalToSizedBuffer

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

func (*QueryPendingSendToEth) ProtoMessage

func (*QueryPendingSendToEth) ProtoMessage()

func (*QueryPendingSendToEth) Reset

func (m *QueryPendingSendToEth) Reset()

func (*QueryPendingSendToEth) Size

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

func (*QueryPendingSendToEth) String

func (m *QueryPendingSendToEth) String() string

func (*QueryPendingSendToEth) Unmarshal

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

func (*QueryPendingSendToEth) XXX_DiscardUnknown

func (m *QueryPendingSendToEth) XXX_DiscardUnknown()

func (*QueryPendingSendToEth) XXX_Marshal

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

func (*QueryPendingSendToEth) XXX_Merge

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

func (*QueryPendingSendToEth) XXX_Size

func (m *QueryPendingSendToEth) XXX_Size() int

func (*QueryPendingSendToEth) XXX_Unmarshal

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

type QueryPendingSendToEthResponse

type QueryPendingSendToEthResponse struct {
	TransfersInBatches []*OutgoingTransferTx `protobuf:"bytes,1,rep,name=transfers_in_batches,json=transfersInBatches,proto3" json:"transfers_in_batches,omitempty"`
	UnbatchedTransfers []*OutgoingTransferTx `protobuf:"bytes,2,rep,name=unbatched_transfers,json=unbatchedTransfers,proto3" json:"unbatched_transfers,omitempty"`
}

func (*QueryPendingSendToEthResponse) Descriptor

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

func (*QueryPendingSendToEthResponse) GetTransfersInBatches

func (m *QueryPendingSendToEthResponse) GetTransfersInBatches() []*OutgoingTransferTx

func (*QueryPendingSendToEthResponse) GetUnbatchedTransfers

func (m *QueryPendingSendToEthResponse) GetUnbatchedTransfers() []*OutgoingTransferTx

func (*QueryPendingSendToEthResponse) Marshal

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

func (*QueryPendingSendToEthResponse) MarshalTo

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

func (*QueryPendingSendToEthResponse) MarshalToSizedBuffer

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

func (*QueryPendingSendToEthResponse) ProtoMessage

func (*QueryPendingSendToEthResponse) ProtoMessage()

func (*QueryPendingSendToEthResponse) Reset

func (m *QueryPendingSendToEthResponse) Reset()

func (*QueryPendingSendToEthResponse) Size

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

func (*QueryPendingSendToEthResponse) String

func (*QueryPendingSendToEthResponse) Unmarshal

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

func (*QueryPendingSendToEthResponse) XXX_DiscardUnknown

func (m *QueryPendingSendToEthResponse) XXX_DiscardUnknown()

func (*QueryPendingSendToEthResponse) XXX_Marshal

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

func (*QueryPendingSendToEthResponse) XXX_Merge

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

func (*QueryPendingSendToEthResponse) XXX_Size

func (m *QueryPendingSendToEthResponse) XXX_Size() int

func (*QueryPendingSendToEthResponse) XXX_Unmarshal

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

type QueryServer

type QueryServer interface {
	// Deployments queries deployments
	Params(context.Context, *QueryParamsRequest) (*QueryParamsResponse, error)
	CurrentValset(context.Context, *QueryCurrentValsetRequest) (*QueryCurrentValsetResponse, error)
	ValsetRequest(context.Context, *QueryValsetRequestRequest) (*QueryValsetRequestResponse, error)
	ValsetConfirm(context.Context, *QueryValsetConfirmRequest) (*QueryValsetConfirmResponse, error)
	ValsetConfirmsByNonce(context.Context, *QueryValsetConfirmsByNonceRequest) (*QueryValsetConfirmsByNonceResponse, error)
	LastValsetRequests(context.Context, *QueryLastValsetRequestsRequest) (*QueryLastValsetRequestsResponse, error)
	LastPendingValsetRequestByAddr(context.Context, *QueryLastPendingValsetRequestByAddrRequest) (*QueryLastPendingValsetRequestByAddrResponse, error)
	LastPendingBatchRequestByAddr(context.Context, *QueryLastPendingBatchRequestByAddrRequest) (*QueryLastPendingBatchRequestByAddrResponse, error)
	//LastPendingLogicCallByAddr(context.Context, *QueryLastPendingLogicCallByAddrRequest) (*QueryLastPendingLogicCallByAddrResponse, error)
	LastEventNonceByAddr(context.Context, *QueryLastEventNonceByAddrRequest) (*QueryLastEventNonceByAddrResponse, error)
	BatchFees(context.Context, *QueryBatchFeeRequest) (*QueryBatchFeeResponse, error)
	OutgoingTxBatches(context.Context, *QueryOutgoingTxBatchesRequest) (*QueryOutgoingTxBatchesResponse, error)
	//OutgoingLogicCalls(context.Context, *QueryOutgoingLogicCallsRequest) (*QueryOutgoingLogicCallsResponse, error)
	BatchRequestByNonce(context.Context, *QueryBatchRequestByNonceRequest) (*QueryBatchRequestByNonceResponse, error)
	BatchConfirms(context.Context, *QueryBatchConfirmsRequest) (*QueryBatchConfirmsResponse, error)
	//LogicConfirms(context.Context, *QueryLogicConfirmsRequest) (*QueryLogicConfirmsResponse, error)
	ERC20ToDenom(context.Context, *QueryERC20ToDenomRequest) (*QueryERC20ToDenomResponse, error)
	DenomToERC20(context.Context, *QueryDenomToERC20Request) (*QueryDenomToERC20Response, error)
	GetDelegateKeyByValidator(context.Context, *QueryDelegateKeysByValidatorAddress) (*QueryDelegateKeysByValidatorAddressResponse, error)
	GetDelegateKeyByEth(context.Context, *QueryDelegateKeysByEthAddress) (*QueryDelegateKeysByEthAddressResponse, error)
	GetDelegateKeyByOrchestrator(context.Context, *QueryDelegateKeysByOrchestratorAddress) (*QueryDelegateKeysByOrchestratorAddressResponse, error)
	GetPendingSendToEth(context.Context, *QueryPendingSendToEth) (*QueryPendingSendToEthResponse, error)
}

QueryServer is the server API for Query service.

type QueryValsetConfirmRequest

type QueryValsetConfirmRequest struct {
	Nonce   uint64 `protobuf:"varint,1,opt,name=nonce,proto3" json:"nonce,omitempty"`
	Address string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
}

func (*QueryValsetConfirmRequest) Descriptor

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

func (*QueryValsetConfirmRequest) GetAddress

func (m *QueryValsetConfirmRequest) GetAddress() string

func (*QueryValsetConfirmRequest) GetNonce

func (m *QueryValsetConfirmRequest) GetNonce() uint64

func (*QueryValsetConfirmRequest) Marshal

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

func (*QueryValsetConfirmRequest) MarshalTo

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

func (*QueryValsetConfirmRequest) MarshalToSizedBuffer

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

func (*QueryValsetConfirmRequest) ProtoMessage

func (*QueryValsetConfirmRequest) ProtoMessage()

func (*QueryValsetConfirmRequest) Reset

func (m *QueryValsetConfirmRequest) Reset()

func (*QueryValsetConfirmRequest) Size

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

func (*QueryValsetConfirmRequest) String

func (m *QueryValsetConfirmRequest) String() string

func (*QueryValsetConfirmRequest) Unmarshal

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

func (*QueryValsetConfirmRequest) XXX_DiscardUnknown

func (m *QueryValsetConfirmRequest) XXX_DiscardUnknown()

func (*QueryValsetConfirmRequest) XXX_Marshal

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

func (*QueryValsetConfirmRequest) XXX_Merge

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

func (*QueryValsetConfirmRequest) XXX_Size

func (m *QueryValsetConfirmRequest) XXX_Size() int

func (*QueryValsetConfirmRequest) XXX_Unmarshal

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

type QueryValsetConfirmResponse

type QueryValsetConfirmResponse struct {
	Confirm *MsgValsetConfirm `protobuf:"bytes,1,opt,name=confirm,proto3" json:"confirm,omitempty"`
}

func (*QueryValsetConfirmResponse) Descriptor

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

func (*QueryValsetConfirmResponse) GetConfirm

func (*QueryValsetConfirmResponse) Marshal

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

func (*QueryValsetConfirmResponse) MarshalTo

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

func (*QueryValsetConfirmResponse) MarshalToSizedBuffer

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

func (*QueryValsetConfirmResponse) ProtoMessage

func (*QueryValsetConfirmResponse) ProtoMessage()

func (*QueryValsetConfirmResponse) Reset

func (m *QueryValsetConfirmResponse) Reset()

func (*QueryValsetConfirmResponse) Size

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

func (*QueryValsetConfirmResponse) String

func (m *QueryValsetConfirmResponse) String() string

func (*QueryValsetConfirmResponse) Unmarshal

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

func (*QueryValsetConfirmResponse) XXX_DiscardUnknown

func (m *QueryValsetConfirmResponse) XXX_DiscardUnknown()

func (*QueryValsetConfirmResponse) XXX_Marshal

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

func (*QueryValsetConfirmResponse) XXX_Merge

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

func (*QueryValsetConfirmResponse) XXX_Size

func (m *QueryValsetConfirmResponse) XXX_Size() int

func (*QueryValsetConfirmResponse) XXX_Unmarshal

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

type QueryValsetConfirmsByNonceRequest

type QueryValsetConfirmsByNonceRequest struct {
	Nonce uint64 `protobuf:"varint,1,opt,name=nonce,proto3" json:"nonce,omitempty"`
}

func (*QueryValsetConfirmsByNonceRequest) Descriptor

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

func (*QueryValsetConfirmsByNonceRequest) GetNonce

func (*QueryValsetConfirmsByNonceRequest) Marshal

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

func (*QueryValsetConfirmsByNonceRequest) MarshalTo

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

func (*QueryValsetConfirmsByNonceRequest) MarshalToSizedBuffer

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

func (*QueryValsetConfirmsByNonceRequest) ProtoMessage

func (*QueryValsetConfirmsByNonceRequest) ProtoMessage()

func (*QueryValsetConfirmsByNonceRequest) Reset

func (*QueryValsetConfirmsByNonceRequest) Size

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

func (*QueryValsetConfirmsByNonceRequest) String

func (*QueryValsetConfirmsByNonceRequest) Unmarshal

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

func (*QueryValsetConfirmsByNonceRequest) XXX_DiscardUnknown

func (m *QueryValsetConfirmsByNonceRequest) XXX_DiscardUnknown()

func (*QueryValsetConfirmsByNonceRequest) XXX_Marshal

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

func (*QueryValsetConfirmsByNonceRequest) XXX_Merge

func (*QueryValsetConfirmsByNonceRequest) XXX_Size

func (m *QueryValsetConfirmsByNonceRequest) XXX_Size() int

func (*QueryValsetConfirmsByNonceRequest) XXX_Unmarshal

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

type QueryValsetConfirmsByNonceResponse

type QueryValsetConfirmsByNonceResponse struct {
	Confirms []*MsgValsetConfirm `protobuf:"bytes,1,rep,name=confirms,proto3" json:"confirms,omitempty"`
}

func (*QueryValsetConfirmsByNonceResponse) Descriptor

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

func (*QueryValsetConfirmsByNonceResponse) GetConfirms

func (*QueryValsetConfirmsByNonceResponse) Marshal

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

func (*QueryValsetConfirmsByNonceResponse) MarshalTo

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

func (*QueryValsetConfirmsByNonceResponse) MarshalToSizedBuffer

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

func (*QueryValsetConfirmsByNonceResponse) ProtoMessage

func (*QueryValsetConfirmsByNonceResponse) ProtoMessage()

func (*QueryValsetConfirmsByNonceResponse) Reset

func (*QueryValsetConfirmsByNonceResponse) Size

func (*QueryValsetConfirmsByNonceResponse) String

func (*QueryValsetConfirmsByNonceResponse) Unmarshal

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

func (*QueryValsetConfirmsByNonceResponse) XXX_DiscardUnknown

func (m *QueryValsetConfirmsByNonceResponse) XXX_DiscardUnknown()

func (*QueryValsetConfirmsByNonceResponse) XXX_Marshal

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

func (*QueryValsetConfirmsByNonceResponse) XXX_Merge

func (*QueryValsetConfirmsByNonceResponse) XXX_Size

func (*QueryValsetConfirmsByNonceResponse) XXX_Unmarshal

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

type QueryValsetRequestRequest

type QueryValsetRequestRequest struct {
	Nonce uint64 `protobuf:"varint,1,opt,name=nonce,proto3" json:"nonce,omitempty"`
}

func (*QueryValsetRequestRequest) Descriptor

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

func (*QueryValsetRequestRequest) GetNonce

func (m *QueryValsetRequestRequest) GetNonce() uint64

func (*QueryValsetRequestRequest) Marshal

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

func (*QueryValsetRequestRequest) MarshalTo

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

func (*QueryValsetRequestRequest) MarshalToSizedBuffer

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

func (*QueryValsetRequestRequest) ProtoMessage

func (*QueryValsetRequestRequest) ProtoMessage()

func (*QueryValsetRequestRequest) Reset

func (m *QueryValsetRequestRequest) Reset()

func (*QueryValsetRequestRequest) Size

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

func (*QueryValsetRequestRequest) String

func (m *QueryValsetRequestRequest) String() string

func (*QueryValsetRequestRequest) Unmarshal

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

func (*QueryValsetRequestRequest) XXX_DiscardUnknown

func (m *QueryValsetRequestRequest) XXX_DiscardUnknown()

func (*QueryValsetRequestRequest) XXX_Marshal

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

func (*QueryValsetRequestRequest) XXX_Merge

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

func (*QueryValsetRequestRequest) XXX_Size

func (m *QueryValsetRequestRequest) XXX_Size() int

func (*QueryValsetRequestRequest) XXX_Unmarshal

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

type QueryValsetRequestResponse

type QueryValsetRequestResponse struct {
	Valset *Valset `protobuf:"bytes,1,opt,name=valset,proto3" json:"valset,omitempty"`
}

func (*QueryValsetRequestResponse) Descriptor

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

func (*QueryValsetRequestResponse) GetValset

func (m *QueryValsetRequestResponse) GetValset() *Valset

func (*QueryValsetRequestResponse) Marshal

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

func (*QueryValsetRequestResponse) MarshalTo

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

func (*QueryValsetRequestResponse) MarshalToSizedBuffer

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

func (*QueryValsetRequestResponse) ProtoMessage

func (*QueryValsetRequestResponse) ProtoMessage()

func (*QueryValsetRequestResponse) Reset

func (m *QueryValsetRequestResponse) Reset()

func (*QueryValsetRequestResponse) Size

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

func (*QueryValsetRequestResponse) String

func (m *QueryValsetRequestResponse) String() string

func (*QueryValsetRequestResponse) Unmarshal

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

func (*QueryValsetRequestResponse) XXX_DiscardUnknown

func (m *QueryValsetRequestResponse) XXX_DiscardUnknown()

func (*QueryValsetRequestResponse) XXX_Marshal

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

func (*QueryValsetRequestResponse) XXX_Merge

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

func (*QueryValsetRequestResponse) XXX_Size

func (m *QueryValsetRequestResponse) XXX_Size() int

func (*QueryValsetRequestResponse) XXX_Unmarshal

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

type RequestBatch added in v1.6.21

type RequestBatch struct {
	//Fee *big.Int
	Requestor gethcommon.Address
}

type SignType

type SignType int32

SignType defines messages that have been signed by an orchestrator

const (
	SIGN_TYPE_UNSPECIFIED                          SignType = 0
	SIGN_TYPE_ORCHESTRATOR_SIGNED_MULTI_SIG_UPDATE SignType = 1
	SIGN_TYPE_ORCHESTRATOR_SIGNED_WITHDRAW_BATCH   SignType = 2
)

func (SignType) EnumDescriptor

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

type UnimplementedMsgServer

type UnimplementedMsgServer struct {
}

UnimplementedMsgServer can be embedded to have forward compatible implementations.

func (*UnimplementedMsgServer) CancelSendToEth

func (*UnimplementedMsgServer) Confirm721Batch added in v1.6.21

func (*UnimplementedMsgServer) ConfirmBatch

func (*UnimplementedMsgServer) ConfirmLogicCall

func (*UnimplementedMsgServer) Deposit721Claim added in v1.6.21

func (*UnimplementedMsgServer) DepositClaim

func (*UnimplementedMsgServer) ERC20DeployedClaim

func (*UnimplementedMsgServer) ERC721DeployedClaim added in v1.6.21

func (*UnimplementedMsgServer) LogicCallExecutedClaim

func (*UnimplementedMsgServer) Request721Batch added in v1.6.21

func (*UnimplementedMsgServer) Send721ToEth added in v1.6.21

func (*UnimplementedMsgServer) SetOrchestratorAddress

func (*UnimplementedMsgServer) ValsetConfirm

func (*UnimplementedMsgServer) Withdraw721Claim added in v1.6.21

func (*UnimplementedMsgServer) WithdrawClaim

type UnimplementedQueryServer

type UnimplementedQueryServer struct {
}

UnimplementedQueryServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServer) BatchConfirms

func (*UnimplementedQueryServer) BatchFees

func (*UnimplementedQueryServer) BatchRequestByNonce

func (*UnimplementedQueryServer) CurrentValset

func (*UnimplementedQueryServer) DenomToERC20

func (*UnimplementedQueryServer) ERC20ToDenom

func (*UnimplementedQueryServer) GetPendingSendToEth

func (*UnimplementedQueryServer) LastValsetRequests

func (*UnimplementedQueryServer) LogicConfirms

func (*UnimplementedQueryServer) OutgoingLogicCalls

func (*UnimplementedQueryServer) OutgoingTxBatches

func (*UnimplementedQueryServer) Params

func (*UnimplementedQueryServer) ValsetConfirm

func (*UnimplementedQueryServer) ValsetRequest

type Valset

type Valset struct {
	Nonce   uint64             `protobuf:"varint,1,opt,name=nonce,proto3" json:"nonce,omitempty"`
	Members []*BridgeValidator `protobuf:"bytes,2,rep,name=members,proto3" json:"members,omitempty"`
	Height  uint64             `protobuf:"varint,3,opt,name=height,proto3" json:"height,omitempty"`
}

Valset is the Ethereum Bridge Multsig Set, each gravity validator also maintains an ETH key to sign messages, these are used to check signatures on ETH because of the significant gas savings

func NewValset

func NewValset(nonce, height uint64, members BridgeValidators) *Valset

NewValset returns a new valset

func (*Valset) Descriptor

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

func (Valset) GetCheckpoint

func (v Valset) GetCheckpoint(gravityIDstring string) []byte

GetCheckpoint returns the checkpoint

func (*Valset) GetHeight

func (m *Valset) GetHeight() uint64

func (*Valset) GetMembers

func (m *Valset) GetMembers() []*BridgeValidator

func (*Valset) GetNonce

func (m *Valset) GetNonce() uint64

func (*Valset) Marshal

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

func (*Valset) MarshalTo

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

func (*Valset) MarshalToSizedBuffer

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

func (*Valset) ProtoMessage

func (*Valset) ProtoMessage()

func (*Valset) Reset

func (m *Valset) Reset()

func (*Valset) Size

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

func (*Valset) String

func (m *Valset) String() string

func (*Valset) Unmarshal

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

func (*Valset) WithoutEmptyMembers

func (v *Valset) WithoutEmptyMembers() *Valset

WithoutEmptyMembers returns a new Valset without member that have 0 power or an empty Ethereum address.

func (*Valset) XXX_DiscardUnknown

func (m *Valset) XXX_DiscardUnknown()

func (*Valset) XXX_Marshal

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

func (*Valset) XXX_Merge

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

func (*Valset) XXX_Size

func (m *Valset) XXX_Size() int

func (*Valset) XXX_Unmarshal

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

type Valsets

type Valsets []*Valset

Valsets is a collection of valset

func (Valsets) Len

func (v Valsets) Len() int

func (Valsets) Less

func (v Valsets) Less(i, j int) bool

func (Valsets) Swap

func (v Valsets) Swap(i, j int)

Jump to

Keyboard shortcuts

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