Documentation ¶
Index ¶
- func ExportGenesis(ctx sdk.Context, k Keeper) *types.GenesisState
- func InitGenesis(ctx sdk.Context, k Keeper, state *types.GenesisState)
- func NewMsgServerImpl(keeper Keeper) types.MsgServer
- func NewMsgServerRouterImpl(routerKeeper RouterKeeper) types.MsgServer
- func NewQueryServerImpl(keeper Keeper) types.QueryServer
- type Keeper
- func (k Keeper) AddBridgeToken(ctx sdk.Context, token, denom string)
- func (k Keeper) AddOracleSetRequest(ctx sdk.Context, currentOracleSet *types.OracleSet)
- func (k Keeper) AddOutgoingBridgeCall(ctx sdk.Context, sender sdk.AccAddress, receiver string, ...) (*types.OutgoingBridgeCall, error)
- func (k Keeper) AddToOutgoingPendingPool(ctx sdk.Context, sender sdk.AccAddress, receiver string, amount sdk.Coin, ...) (uint64, error)
- func (k Keeper) AddToOutgoingPool(ctx sdk.Context, sender sdk.AccAddress, receiver string, amount sdk.Coin, ...) (uint64, error)
- func (k Keeper) AddUnbatchedTx(ctx sdk.Context, outgoingTransferTx *types.OutgoingTransferTx) error
- func (k Keeper) AddUnbatchedTxBridgeFee(ctx sdk.Context, txId uint64, sender sdk.AccAddress, addBridgeFee sdk.Coin) error
- func (k Keeper) Attest(ctx sdk.Context, oracleAddr sdk.AccAddress, claim types.ExternalClaim) (*types.Attestation, error)
- func (k Keeper) AttestationHandler(ctx sdk.Context, externalClaim types.ExternalClaim) error
- func (k Keeper) BridgeCallCoinsToERC20Token(ctx sdk.Context, sender sdk.AccAddress, coins sdk.Coins) ([]types.ERC20Token, error)
- func (k Keeper) BridgeCallEvm(ctx sdk.Context, sender common.Address, receiver sdk.AccAddress, ...) error
- func (k Keeper) BridgeCallHandler(ctx sdk.Context, msg *types.MsgBridgeCallClaim) error
- func (k Keeper) BridgeCallResultHandler(ctx sdk.Context, claim *types.MsgBridgeCallResultClaim)
- func (k Keeper) BuildOutgoingTxBatch(ctx sdk.Context, tokenContract, feeReceive string, maxElements uint, ...) (*types.OutgoingTxBatch, error)
- func (k Keeper) CalExternalTimeoutHeight(ctx sdk.Context, params types.Params, timeout uint64) uint64
- func (k Keeper) CancelOutgoingTxBatch(ctx sdk.Context, tokenContract string, batchNonce uint64) error
- func (k Keeper) CommonSetOracleTotalPower(ctx sdk.Context)
- func (k Keeper) CreateBridgeAccount(ctx sdk.Context, address string)
- func (k Keeper) DelLastEventNonceByOracle(ctx sdk.Context, oracleAddr sdk.AccAddress)
- func (k Keeper) DelOracle(ctx sdk.Context, oracle sdk.AccAddress)
- func (k Keeper) DelOracleAddrByBridgerAddr(ctx sdk.Context, bridgerAddr sdk.AccAddress)
- func (k Keeper) DelOracleAddrByExternalAddr(ctk sdk.Context, externalAddress string)
- func (k Keeper) DeleteAttestation(ctx sdk.Context, claim types.ExternalClaim)
- func (k Keeper) DeleteBatch(ctx sdk.Context, batch *types.OutgoingTxBatch)
- func (k Keeper) DeleteBatchConfirm(ctx sdk.Context, batchNonce uint64, tokenContract string)
- func (k Keeper) DeleteBridgeCallConfirm(ctx sdk.Context, nonce uint64)
- func (k Keeper) DeleteBridgeCallFromMsg(ctx sdk.Context, txID uint64)
- func (k Keeper) DeleteOracleSet(ctx sdk.Context, nonce uint64)
- func (k Keeper) DeleteOracleSetConfirm(ctx sdk.Context, nonce uint64)
- func (k Keeper) DeleteOutgoingBridgeCall(ctx sdk.Context, nonce uint64)
- func (k Keeper) DeleteOutgoingBridgeCallRecord(ctx sdk.Context, bridgeCallNonce uint64)
- func (k Keeper) EndBlocker(ctx sdk.Context)
- func (k Keeper) GetAllBatchFees(ctx sdk.Context, maxElements uint, minBatchFees []types.MinBatchFee) (batchFees []*types.BatchFees)
- func (k Keeper) GetAllOracles(ctx sdk.Context, isOnline bool) (oracles types.Oracles)
- func (k Keeper) GetAttestation(ctx sdk.Context, eventNonce uint64, claimHash []byte) *types.Attestation
- func (k Keeper) GetAuthority() string
- func (k Keeper) GetBatchConfirm(ctx sdk.Context, tokenContract string, batchNonce uint64, ...) *types.MsgConfirmBatch
- func (k Keeper) GetBatchFeesByTokenType(ctx sdk.Context, tokenContract string, maxElements uint, baseFee sdkmath.Int) *types.BatchFees
- func (k Keeper) GetBridgeCallTimeout(ctx sdk.Context) uint64
- func (k Keeper) GetBridgeTokenDenom(ctx sdk.Context, tokenContract string) *types.BridgeToken
- func (k Keeper) GetCurrentOracleSet(ctx sdk.Context) *types.OracleSet
- func (k Keeper) GetDenomBridgeToken(ctx sdk.Context, denom string) *types.BridgeToken
- func (k Keeper) GetGravityID(ctx sdk.Context) string
- func (k Keeper) GetIbcTransferTimeoutHeight(ctx sdk.Context) uint64
- func (k Keeper) GetLastEventBlockHeightByOracle(ctx sdk.Context, oracleAddr sdk.AccAddress) uint64
- func (k Keeper) GetLastEventNonceByOracle(ctx sdk.Context, oracleAddr sdk.AccAddress) uint64
- func (k Keeper) GetLastObservedBlockHeight(ctx sdk.Context) types.LastObservedBlockHeight
- func (k Keeper) GetLastObservedEventNonce(ctx sdk.Context) uint64
- func (k Keeper) GetLastObservedOracleSet(ctx sdk.Context) *types.OracleSet
- func (k Keeper) GetLastOracleSlashBlockHeight(ctx sdk.Context) uint64
- func (k Keeper) GetLastOutgoingBatchByTokenType(ctx sdk.Context, token string) *types.OutgoingTxBatch
- func (k Keeper) GetLastSlashedBatchBlock(ctx sdk.Context) uint64
- func (k Keeper) GetLastSlashedBridgeCallNonce(ctx sdk.Context) uint64
- func (k Keeper) GetLastSlashedOracleSetNonce(ctx sdk.Context) uint64
- func (k Keeper) GetLastTotalPower(ctx sdk.Context) sdkmath.Int
- func (k Keeper) GetLatestOracleSet(ctx sdk.Context) *types.OracleSet
- func (k Keeper) GetLatestOracleSetNonce(ctx sdk.Context) uint64
- func (k Keeper) GetOracle(ctx sdk.Context, addr sdk.AccAddress) (oracle types.Oracle, found bool)
- func (k Keeper) GetOracleAddrByBridgerAddr(ctx sdk.Context, bridgerAddr sdk.AccAddress) (sdk.AccAddress, bool)
- func (k Keeper) GetOracleAddrByExternalAddr(ctx sdk.Context, externalAddress string) (sdk.AccAddress, bool)
- func (k Keeper) GetOracleDelegateMultiple(ctx sdk.Context) int64
- func (k Keeper) GetOracleDelegateThreshold(ctx sdk.Context) sdk.Coin
- func (k Keeper) GetOracleDelegateToken(ctx sdk.Context, delegateAddr sdk.AccAddress, valAddr sdk.ValAddress) (sdkmath.Int, error)
- func (k Keeper) GetOracleSet(ctx sdk.Context, nonce uint64) *types.OracleSet
- func (k Keeper) GetOracleSetConfirm(ctx sdk.Context, nonce uint64, oracleAddr sdk.AccAddress) *types.MsgOracleSetConfirm
- func (k Keeper) GetOracleSetUpdatePowerChangePercent(ctx sdk.Context) sdk.Dec
- func (k Keeper) GetOracleSets(ctx sdk.Context) (oracleSets types.OracleSets)
- func (k Keeper) GetOutgoingBridgeCallByNonce(ctx sdk.Context, nonce uint64) (*types.OutgoingBridgeCall, bool)
- func (k Keeper) GetOutgoingTxBatch(ctx sdk.Context, tokenContract string, batchNonce uint64) *types.OutgoingTxBatch
- func (k Keeper) GetOutgoingTxBatches(ctx sdk.Context) (out []*types.OutgoingTxBatch)
- func (k Keeper) GetParams(ctx sdk.Context) (params types.Params)
- func (k Keeper) GetPendingPoolTxById(ctx sdk.Context, txId uint64) (*types.PendingOutgoingTransferTx, bool)
- func (k Keeper) GetProposalOracle(ctx sdk.Context) (proposalOracle types.ProposalOracle, found bool)
- func (k Keeper) GetSignedWindow(ctx sdk.Context) uint64
- func (k Keeper) GetSlashFraction(ctx sdk.Context) sdk.Dec
- func (k Keeper) GetUnSlashedBatches(ctx sdk.Context, maxHeight uint64) (outgoingTxBatches types.OutgoingTxBatches)
- func (k Keeper) GetUnSlashedBridgeCalls(ctx sdk.Context, height uint64) []types.OutgoingBridgeCall
- func (k Keeper) GetUnSlashedOracleSets(ctx sdk.Context, maxHeight uint64) (oracleSets types.OracleSets)
- func (k Keeper) GetUnbatchedTransactions(ctx sdk.Context) []*types.OutgoingTransferTx
- func (k Keeper) GetUnbatchedTxByFeeAndId(ctx sdk.Context, fee types.ERC20Token, txID uint64) (*types.OutgoingTransferTx, error)
- func (k Keeper) GetUnbatchedTxById(ctx sdk.Context, txID uint64) (*types.OutgoingTransferTx, error)
- func (k Keeper) HandleOutgoingBridgeCallRefund(ctx sdk.Context, data *types.OutgoingBridgeCall)
- func (k Keeper) HandlePendingOutgoingTx(ctx sdk.Context, liquidityProvider sdk.AccAddress, eventNonce uint64, ...)
- func (k Keeper) HasBridgeCallConfirm(ctx sdk.Context, nonce uint64, oracleAddr sdk.AccAddress) bool
- func (k Keeper) HasBridgeCallFromMsg(ctx sdk.Context, txID uint64) bool
- func (k Keeper) HasBridgeToken(ctx sdk.Context, tokenContract string) bool
- func (k Keeper) HasOracle(ctx sdk.Context, addr sdk.AccAddress) (found bool)
- func (k Keeper) HasOracleAddrByBridgerAddr(ctx sdk.Context, bridgerAddr sdk.AccAddress) bool
- func (k Keeper) HasOracleAddrByExternalAddr(ctx sdk.Context, externalAddress string) bool
- func (k Keeper) HasOracleSetRequest(ctx sdk.Context, nonce uint64) bool
- func (k Keeper) IsProposalOracle(ctx sdk.Context, oracleAddr string) bool
- func (k Keeper) IterBridgeCallConfirmByNonce(ctx sdk.Context, nonce uint64, cb func(msg *types.MsgBridgeCallConfirm) bool)
- func (k Keeper) IterateAttestationAndClaim(ctx sdk.Context, cb func(*types.Attestation, types.ExternalClaim) bool)
- func (k Keeper) IterateAttestations(ctx sdk.Context, cb func(*types.Attestation) bool)
- func (k Keeper) IterateBatchByBlockHeight(ctx sdk.Context, start uint64, end uint64, ...)
- func (k Keeper) IterateBatchConfirmByNonceAndTokenContract(ctx sdk.Context, batchNonce uint64, tokenContract string, ...)
- func (k Keeper) IterateBridgeTokenToDenom(ctx sdk.Context, cb func(*types.BridgeToken) bool)
- func (k Keeper) IterateOracle(ctx sdk.Context, cb func(oracle types.Oracle) bool)
- func (k Keeper) IterateOracleSetByNonce(ctx sdk.Context, startNonce uint64, cb func(*types.OracleSet) bool)
- func (k Keeper) IterateOracleSetConfirmByNonce(ctx sdk.Context, nonce uint64, cb func(*types.MsgOracleSetConfirm) bool)
- func (k Keeper) IterateOracleSets(ctx sdk.Context, reverse bool, cb func(*types.OracleSet) bool)
- func (k Keeper) IterateOutgoingBridgeCallByNonce(ctx sdk.Context, startNonce uint64, ...)
- func (k Keeper) IterateOutgoingBridgeCalls(ctx sdk.Context, cb func(outCall *types.OutgoingBridgeCall) bool)
- func (k Keeper) IterateOutgoingBridgeCallsByAddress(ctx sdk.Context, senderAddr string, ...)
- func (k Keeper) IterateOutgoingTxBatches(ctx sdk.Context, cb func(batch *types.OutgoingTxBatch) bool)
- func (k Keeper) IterateUnbatchedTransactions(ctx sdk.Context, tokenContract string, ...)
- func (k Keeper) IteratorPendingOutgoingTx(ctx sdk.Context, ...)
- func (k Keeper) IteratorPendingOutgoingTxByBridgeTokenContractAddr(ctx sdk.Context, tokenContract string, ...)
- func (k Keeper) Logger(ctx sdk.Context) log.Logger
- func (k Keeper) ModuleName() string
- func (k Keeper) OutgoingTxBatchExecuted(ctx sdk.Context, tokenContract string, batchNonce uint64)
- func (k Keeper) PrecompileBridgeCall(ctx sdk.Context, sender common.Address, receiver common.Address, ...) (nonce uint64, err error)
- func (k Keeper) PrecompileCancelSendToExternal(ctx sdk.Context, txID uint64, sender sdk.AccAddress) (sdk.Coin, error)
- func (k Keeper) PrecompileIncreaseBridgeFee(ctx sdk.Context, txID uint64, sender sdk.AccAddress, addBridgeFee sdk.Coin) error
- func (k Keeper) RelayTransferHandler(ctx sdk.Context, eventNonce uint64, targetHex string, receiver sdk.AccAddress, ...) error
- func (k Keeper) RemoveFromOutgoingPoolAndRefund(ctx sdk.Context, txId uint64, sender sdk.AccAddress) (sdk.Coin, error)
- func (k Keeper) RemovePendingOutgoingTx(context sdk.Context, tokenContract string, txId uint64)
- func (k Keeper) SetAttestation(ctx sdk.Context, eventNonce uint64, claimHash []byte, att *types.Attestation)
- func (k Keeper) SetBatchConfirm(ctx sdk.Context, oracleAddr sdk.AccAddress, batch *types.MsgConfirmBatch)
- func (k Keeper) SetBridgeCallConfirm(ctx sdk.Context, oracleAddr sdk.AccAddress, msg *types.MsgBridgeCallConfirm)
- func (k Keeper) SetBridgeCallFromMsg(ctx sdk.Context, txID uint64)
- func (k Keeper) SetIbcDenomTrace(ctx sdk.Context, token, channelIBC string) (string, error)
- func (k Keeper) SetLastEventBlockHeightByOracle(ctx sdk.Context, oracleAddr sdk.AccAddress, blockHeight uint64)
- func (k Keeper) SetLastEventNonceByOracle(ctx sdk.Context, oracleAddr sdk.AccAddress, eventNonce uint64)
- func (k Keeper) SetLastObservedBlockHeight(ctx sdk.Context, externalBlockHeight, blockHeight uint64)
- func (k Keeper) SetLastObservedEventNonce(ctx sdk.Context, eventNonce uint64)
- func (k Keeper) SetLastObservedOracleSet(ctx sdk.Context, oracleSet *types.OracleSet)
- func (k Keeper) SetLastOracleSlashBlockHeight(ctx sdk.Context, blockHeight uint64)
- func (k Keeper) SetLastSlashedBatchBlock(ctx sdk.Context, blockHeight uint64)
- func (k Keeper) SetLastSlashedBridgeCallNonce(ctx sdk.Context, nonce uint64)
- func (k Keeper) SetLastSlashedOracleSetNonce(ctx sdk.Context, nonce uint64)
- func (k Keeper) SetLastTotalPower(ctx sdk.Context, power sdkmath.Int)
- func (k Keeper) SetLatestOracleSetNonce(ctx sdk.Context, nonce uint64)
- func (k Keeper) SetOracle(ctx sdk.Context, oracle types.Oracle)
- func (k Keeper) SetOracleAddrByBridgerAddr(ctx sdk.Context, bridgerAddr, oracleAddr sdk.AccAddress)
- func (k Keeper) SetOracleAddrByExternalAddr(ctx sdk.Context, externalAddress string, oracleAddr sdk.AccAddress)
- func (k Keeper) SetOracleSetConfirm(ctx sdk.Context, oracleAddr sdk.AccAddress, ...)
- func (k Keeper) SetOutgoingBridgeCall(ctx sdk.Context, outCall *types.OutgoingBridgeCall)
- func (k Keeper) SetParams(ctx sdk.Context, params *types.Params) error
- func (k Keeper) SetPendingTx(ctx sdk.Context, outgoing *types.PendingOutgoingTransferTx)
- func (k Keeper) SetProposalOracle(ctx sdk.Context, proposalOracle *types.ProposalOracle)
- func (k Keeper) SlashOracle(ctx sdk.Context, oracleAddrStr string)
- func (k Keeper) StoreBatch(ctx sdk.Context, batch *types.OutgoingTxBatch) error
- func (k Keeper) StoreOracleSet(ctx sdk.Context, oracleSet *types.OracleSet)
- func (k Keeper) TransferAfter(ctx sdk.Context, sender sdk.AccAddress, receive string, amount, fee sdk.Coin, ...) error
- func (k Keeper) TryAttestation(ctx sdk.Context, att *types.Attestation, claim types.ExternalClaim)
- func (k Keeper) UnbondedOracleFromProposal(ctx sdk.Context, oracle types.Oracle) error
- func (k Keeper) UpdateChainOraclesProposal(ctx sdk.Context, proposal *types.UpdateChainOraclesProposal) error
- func (k Keeper) UpdateProposalOracles(ctx sdk.Context, oracles []string) error
- type Migrator
- type ModuleHandler
- type MsgServer
- func (s MsgServer) AddDelegate(c context.Context, msg *types.MsgAddDelegate) (*types.MsgAddDelegateResponse, error)
- func (s MsgServer) AddPendingPoolRewards(c context.Context, msg *types.MsgAddPendingPoolRewards) (*types.MsgAddPendingPoolRewardsResponse, error)
- func (s MsgServer) BondedOracle(c context.Context, msg *types.MsgBondedOracle) (*types.MsgBondedOracleResponse, error)
- func (s MsgServer) BridgeCall(c context.Context, msg *types.MsgBridgeCall) (*types.MsgBridgeCallResponse, error)
- func (s MsgServer) BridgeCallClaim(c context.Context, msg *types.MsgBridgeCallClaim) (*types.MsgBridgeCallClaimResponse, error)
- func (s MsgServer) BridgeCallConfirm(c context.Context, msg *types.MsgBridgeCallConfirm) (*types.MsgBridgeCallConfirmResponse, error)
- func (s MsgServer) BridgeCallResultClaim(c context.Context, msg *types.MsgBridgeCallResultClaim) (*types.MsgBridgeCallResultClaimResponse, error)
- func (s MsgServer) BridgeTokenClaim(c context.Context, msg *types.MsgBridgeTokenClaim) (*types.MsgBridgeTokenClaimResponse, error)
- func (s MsgServer) CancelSendToExternal(c context.Context, msg *types.MsgCancelSendToExternal) (*types.MsgCancelSendToExternalResponse, error)
- func (s MsgServer) ConfirmBatch(c context.Context, msg *types.MsgConfirmBatch) (*types.MsgConfirmBatchResponse, error)
- func (s MsgServer) EditBridger(c context.Context, msg *types.MsgEditBridger) (*types.MsgEditBridgerResponse, error)
- func (s MsgServer) IncreaseBridgeFee(c context.Context, msg *types.MsgIncreaseBridgeFee) (*types.MsgIncreaseBridgeFeeResponse, error)
- func (s MsgServer) OracleSetConfirm(c context.Context, msg *types.MsgOracleSetConfirm) (*types.MsgOracleSetConfirmResponse, error)
- func (s MsgServer) OracleSetUpdateClaim(c context.Context, msg *types.MsgOracleSetUpdatedClaim) (*types.MsgOracleSetUpdatedClaimResponse, error)
- func (s MsgServer) ReDelegate(c context.Context, msg *types.MsgReDelegate) (*types.MsgReDelegateResponse, error)
- func (s MsgServer) RequestBatch(c context.Context, msg *types.MsgRequestBatch) (*types.MsgRequestBatchResponse, error)
- func (s MsgServer) SendToExternal(c context.Context, msg *types.MsgSendToExternal) (*types.MsgSendToExternalResponse, error)
- func (s MsgServer) SendToExternalClaim(c context.Context, msg *types.MsgSendToExternalClaim) (*types.MsgSendToExternalClaimResponse, error)
- func (s MsgServer) SendToFxClaim(c context.Context, msg *types.MsgSendToFxClaim) (*types.MsgSendToFxClaimResponse, error)
- func (s MsgServer) UnbondedOracle(c context.Context, msg *types.MsgUnbondedOracle) (*types.MsgUnbondedOracleResponse, error)
- func (s MsgServer) UpdateChainOracles(c context.Context, req *types.MsgUpdateChainOracles) (*types.MsgUpdateChainOraclesResponse, error)
- func (s MsgServer) UpdateParams(c context.Context, req *types.MsgUpdateParams) (*types.MsgUpdateParamsResponse, error)
- func (s MsgServer) WithdrawReward(c context.Context, msg *types.MsgWithdrawReward) (*types.MsgWithdrawRewardResponse, error)
- type QueryServer
- func (k QueryServer) BatchConfirm(c context.Context, req *types.QueryBatchConfirmRequest) (*types.QueryBatchConfirmResponse, error)
- func (k QueryServer) BatchConfirms(c context.Context, req *types.QueryBatchConfirmsRequest) (*types.QueryBatchConfirmsResponse, error)
- func (k QueryServer) BatchFees(c context.Context, req *types.QueryBatchFeeRequest) (*types.QueryBatchFeeResponse, error)
- func (k QueryServer) BatchRequestByNonce(c context.Context, req *types.QueryBatchRequestByNonceRequest) (*types.QueryBatchRequestByNonceResponse, error)
- func (k QueryServer) BridgeAddrToOracle(ctx sdk.Context, bridgeAddr string) (types.Oracle, error)
- func (k QueryServer) BridgeAddrToOracleAddr(ctx sdk.Context, bridgeAddr string) (sdk.AccAddress, error)
- func (k QueryServer) BridgeCallByNonce(c context.Context, req *types.QueryBridgeCallByNonceRequest) (*types.QueryBridgeCallByNonceResponse, error)
- func (k QueryServer) BridgeCallBySender(c context.Context, req *types.QueryBridgeCallBySenderRequest) (*types.QueryBridgeCallBySenderResponse, error)
- func (k QueryServer) BridgeCallConfirmByNonce(c context.Context, req *types.QueryBridgeCallConfirmByNonceRequest) (*types.QueryBridgeCallConfirmByNonceResponse, error)
- func (k QueryServer) BridgeCalls(c context.Context, req *types.QueryBridgeCallsRequest) (*types.QueryBridgeCallsResponse, error)
- func (k QueryServer) BridgeChainList(_ context.Context, _ *types.QueryBridgeChainListRequest) (*types.QueryBridgeChainListResponse, error)
- func (k QueryServer) BridgeCoinByDenom(c context.Context, req *types.QueryBridgeCoinByDenomRequest) (*types.QueryBridgeCoinByDenomResponse, error)
- func (k QueryServer) BridgeTokens(c context.Context, _ *types.QueryBridgeTokensRequest) (*types.QueryBridgeTokensResponse, error)
- func (k QueryServer) CurrentOracleSet(c context.Context, _ *types.QueryCurrentOracleSetRequest) (*types.QueryCurrentOracleSetResponse, error)
- func (k QueryServer) DenomToToken(c context.Context, req *types.QueryDenomToTokenRequest) (*types.QueryDenomToTokenResponse, error)
- func (k QueryServer) GetOracleByAddr(c context.Context, req *types.QueryOracleByAddrRequest) (*types.QueryOracleResponse, error)
- func (k QueryServer) GetOracleByBridgerAddr(c context.Context, req *types.QueryOracleByBridgerAddrRequest) (*types.QueryOracleResponse, error)
- func (k QueryServer) GetOracleByExternalAddr(c context.Context, req *types.QueryOracleByExternalAddrRequest) (*types.QueryOracleResponse, error)
- func (k QueryServer) GetPendingPoolSendToExternal(c context.Context, req *types.QueryPendingPoolSendToExternalRequest) (*types.QueryPendingPoolSendToExternalResponse, error)
- func (k QueryServer) GetPendingSendToExternal(c context.Context, req *types.QueryPendingSendToExternalRequest) (*types.QueryPendingSendToExternalResponse, error)
- func (k QueryServer) LastEventBlockHeightByAddr(c context.Context, req *types.QueryLastEventBlockHeightByAddrRequest) (*types.QueryLastEventBlockHeightByAddrResponse, error)
- func (k QueryServer) LastEventNonceByAddr(c context.Context, req *types.QueryLastEventNonceByAddrRequest) (*types.QueryLastEventNonceByAddrResponse, error)
- func (k QueryServer) LastObservedBlockHeight(c context.Context, _ *types.QueryLastObservedBlockHeightRequest) (*types.QueryLastObservedBlockHeightResponse, error)
- func (k QueryServer) LastOracleSetRequests(c context.Context, _ *types.QueryLastOracleSetRequestsRequest) (*types.QueryLastOracleSetRequestsResponse, error)
- func (k QueryServer) LastPendingBatchRequestByAddr(c context.Context, req *types.QueryLastPendingBatchRequestByAddrRequest) (*types.QueryLastPendingBatchRequestByAddrResponse, error)
- func (k QueryServer) LastPendingBridgeCallByAddr(c context.Context, req *types.QueryLastPendingBridgeCallByAddrRequest) (*types.QueryLastPendingBridgeCallByAddrResponse, error)
- func (k QueryServer) LastPendingOracleSetRequestByAddr(c context.Context, req *types.QueryLastPendingOracleSetRequestByAddrRequest) (*types.QueryLastPendingOracleSetRequestByAddrResponse, error)
- func (k QueryServer) OracleSetConfirm(c context.Context, req *types.QueryOracleSetConfirmRequest) (*types.QueryOracleSetConfirmResponse, error)
- func (k QueryServer) OracleSetConfirmsByNonce(c context.Context, req *types.QueryOracleSetConfirmsByNonceRequest) (*types.QueryOracleSetConfirmsByNonceResponse, error)
- func (k QueryServer) OracleSetRequest(c context.Context, req *types.QueryOracleSetRequestRequest) (*types.QueryOracleSetRequestResponse, error)
- func (k QueryServer) Oracles(c context.Context, _ *types.QueryOraclesRequest) (*types.QueryOraclesResponse, error)
- func (k QueryServer) OutgoingTxBatches(c context.Context, _ *types.QueryOutgoingTxBatchesRequest) (*types.QueryOutgoingTxBatchesResponse, error)
- func (k QueryServer) Params(c context.Context, _ *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
- func (k QueryServer) ProjectedBatchTimeoutHeight(c context.Context, _ *types.QueryProjectedBatchTimeoutHeightRequest) (*types.QueryProjectedBatchTimeoutHeightResponse, error)
- func (k QueryServer) TokenToDenom(c context.Context, req *types.QueryTokenToDenomRequest) (*types.QueryTokenToDenomResponse, error)
- type Router
- type RouterKeeper
- func (k RouterKeeper) BatchConfirm(c context.Context, req *types.QueryBatchConfirmRequest) (*types.QueryBatchConfirmResponse, error)
- func (k RouterKeeper) BatchConfirms(c context.Context, req *types.QueryBatchConfirmsRequest) (*types.QueryBatchConfirmsResponse, error)
- func (k RouterKeeper) BatchFees(c context.Context, req *types.QueryBatchFeeRequest) (*types.QueryBatchFeeResponse, error)
- func (k RouterKeeper) BatchRequestByNonce(c context.Context, req *types.QueryBatchRequestByNonceRequest) (*types.QueryBatchRequestByNonceResponse, error)
- func (k RouterKeeper) BridgeCallByNonce(c context.Context, req *types.QueryBridgeCallByNonceRequest) (*types.QueryBridgeCallByNonceResponse, error)
- func (k RouterKeeper) BridgeCallBySender(c context.Context, req *types.QueryBridgeCallBySenderRequest) (*types.QueryBridgeCallBySenderResponse, error)
- func (k RouterKeeper) BridgeCallConfirmByNonce(c context.Context, req *types.QueryBridgeCallConfirmByNonceRequest) (*types.QueryBridgeCallConfirmByNonceResponse, error)
- func (k RouterKeeper) BridgeCalls(c context.Context, req *types.QueryBridgeCallsRequest) (*types.QueryBridgeCallsResponse, error)
- func (k RouterKeeper) BridgeChainList(c context.Context, req *types.QueryBridgeChainListRequest) (*types.QueryBridgeChainListResponse, error)
- func (k RouterKeeper) BridgeCoinByDenom(c context.Context, req *types.QueryBridgeCoinByDenomRequest) (*types.QueryBridgeCoinByDenomResponse, error)
- func (k RouterKeeper) BridgeTokens(c context.Context, req *types.QueryBridgeTokensRequest) (*types.QueryBridgeTokensResponse, error)
- func (k RouterKeeper) CurrentOracleSet(c context.Context, req *types.QueryCurrentOracleSetRequest) (*types.QueryCurrentOracleSetResponse, error)
- func (k RouterKeeper) DenomToToken(c context.Context, req *types.QueryDenomToTokenRequest) (*types.QueryDenomToTokenResponse, error)
- func (k RouterKeeper) GetOracleByAddr(c context.Context, req *types.QueryOracleByAddrRequest) (*types.QueryOracleResponse, error)
- func (k RouterKeeper) GetOracleByBridgerAddr(c context.Context, req *types.QueryOracleByBridgerAddrRequest) (*types.QueryOracleResponse, error)
- func (k RouterKeeper) GetOracleByExternalAddr(c context.Context, req *types.QueryOracleByExternalAddrRequest) (*types.QueryOracleResponse, error)
- func (k RouterKeeper) GetPendingPoolSendToExternal(c context.Context, req *types.QueryPendingPoolSendToExternalRequest) (*types.QueryPendingPoolSendToExternalResponse, error)
- func (k RouterKeeper) GetPendingSendToExternal(c context.Context, req *types.QueryPendingSendToExternalRequest) (*types.QueryPendingSendToExternalResponse, error)
- func (k RouterKeeper) LastEventBlockHeightByAddr(c context.Context, req *types.QueryLastEventBlockHeightByAddrRequest) (*types.QueryLastEventBlockHeightByAddrResponse, error)
- func (k RouterKeeper) LastEventNonceByAddr(c context.Context, req *types.QueryLastEventNonceByAddrRequest) (*types.QueryLastEventNonceByAddrResponse, error)
- func (k RouterKeeper) LastObservedBlockHeight(c context.Context, req *types.QueryLastObservedBlockHeightRequest) (*types.QueryLastObservedBlockHeightResponse, error)
- func (k RouterKeeper) LastOracleSetRequests(c context.Context, req *types.QueryLastOracleSetRequestsRequest) (*types.QueryLastOracleSetRequestsResponse, error)
- func (k RouterKeeper) LastPendingBatchRequestByAddr(c context.Context, req *types.QueryLastPendingBatchRequestByAddrRequest) (*types.QueryLastPendingBatchRequestByAddrResponse, error)
- func (k RouterKeeper) LastPendingBridgeCallByAddr(c context.Context, req *types.QueryLastPendingBridgeCallByAddrRequest) (*types.QueryLastPendingBridgeCallByAddrResponse, error)
- func (k RouterKeeper) LastPendingOracleSetRequestByAddr(c context.Context, req *types.QueryLastPendingOracleSetRequestByAddrRequest) (*types.QueryLastPendingOracleSetRequestByAddrResponse, error)
- func (k RouterKeeper) Logger(ctx sdk.Context) log.Logger
- func (k RouterKeeper) OracleSetConfirm(c context.Context, req *types.QueryOracleSetConfirmRequest) (*types.QueryOracleSetConfirmResponse, error)
- func (k RouterKeeper) OracleSetConfirmsByNonce(c context.Context, req *types.QueryOracleSetConfirmsByNonceRequest) (*types.QueryOracleSetConfirmsByNonceResponse, error)
- func (k RouterKeeper) OracleSetRequest(c context.Context, req *types.QueryOracleSetRequestRequest) (*types.QueryOracleSetRequestResponse, error)
- func (k RouterKeeper) Oracles(c context.Context, req *types.QueryOraclesRequest) (*types.QueryOraclesResponse, error)
- func (k RouterKeeper) OutgoingTxBatches(c context.Context, req *types.QueryOutgoingTxBatchesRequest) (*types.QueryOutgoingTxBatchesResponse, error)
- func (k RouterKeeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
- func (k RouterKeeper) ProjectedBatchTimeoutHeight(c context.Context, req *types.QueryProjectedBatchTimeoutHeightRequest) (*types.QueryProjectedBatchTimeoutHeightResponse, error)
- func (k RouterKeeper) Router() Router
- func (k RouterKeeper) TokenToDenom(c context.Context, req *types.QueryTokenToDenomRequest) (*types.QueryTokenToDenomResponse, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ExportGenesis ¶
func ExportGenesis(ctx sdk.Context, k Keeper) *types.GenesisState
ExportGenesis export module status
func InitGenesis ¶
func InitGenesis(ctx sdk.Context, k Keeper, state *types.GenesisState)
InitGenesis import module genesis
func NewMsgServerImpl ¶
NewMsgServerImpl returns an implementation of the gov MsgServer interface for the provided Keeper.
func NewMsgServerRouterImpl ¶
func NewMsgServerRouterImpl(routerKeeper RouterKeeper) types.MsgServer
NewMsgServerRouterImpl returns an implementation of the crosschain router MsgServer interface for the provided Keeper.
func NewQueryServerImpl ¶
func NewQueryServerImpl(keeper Keeper) types.QueryServer
Types ¶
type Keeper ¶
type Keeper struct {
// contains filtered or unexported fields
}
Keeper maintains the link to storage and exposes getter/setter methods for the various parts of the state machine
func NewKeeper ¶
func NewKeeper(cdc codec.BinaryCodec, moduleName string, storeKey storetypes.StoreKey, stakingKeeper types.StakingKeeper, stakingMsgServer types.StakingMsgServer, distributionKeeper types.DistributionMsgServer, bankKeeper types.BankKeeper, ibcTransferKeeper types.IBCTransferKeeper, erc20Keeper types.Erc20Keeper, ak types.AccountKeeper, evmKeeper types.EVMKeeper, authority string, ) Keeper
NewKeeper returns a new instance of the gravity keeper
func (Keeper) AddOracleSetRequest ¶
AddOracleSetRequest returns a new instance of the Gravity BridgeValidatorSet
func (Keeper) AddOutgoingBridgeCall ¶
func (k Keeper) AddOutgoingBridgeCall( ctx sdk.Context, sender sdk.AccAddress, receiver string, tokens []types.ERC20Token, to string, data string, memo string, eventNonce uint64, ) (*types.OutgoingBridgeCall, error)
func (Keeper) AddToOutgoingPendingPool ¶
func (Keeper) AddToOutgoingPool ¶
func (k Keeper) AddToOutgoingPool(ctx sdk.Context, sender sdk.AccAddress, receiver string, amount sdk.Coin, fee sdk.Coin) (uint64, error)
AddToOutgoingPool - checks a counterpart denominator exists for the given voucher type - burns the voucher for transfer amount and fees - persists an OutgoingTx - adds the TX to the `available` TX pool via a second index
func (Keeper) AddUnbatchedTx ¶
AddUnbatchedTx creates a new transaction in the pool
func (Keeper) AddUnbatchedTxBridgeFee ¶
func (Keeper) Attest ¶
func (k Keeper) Attest(ctx sdk.Context, oracleAddr sdk.AccAddress, claim types.ExternalClaim) (*types.Attestation, error)
func (Keeper) AttestationHandler ¶
AttestationHandler Handle is the entry point for Attestation processing.
func (Keeper) BridgeCallCoinsToERC20Token ¶
func (k Keeper) BridgeCallCoinsToERC20Token(ctx sdk.Context, sender sdk.AccAddress, coins sdk.Coins) ([]types.ERC20Token, error)
func (Keeper) BridgeCallEvm ¶
func (Keeper) BridgeCallHandler ¶
func (Keeper) BridgeCallResultHandler ¶
func (k Keeper) BridgeCallResultHandler(ctx sdk.Context, claim *types.MsgBridgeCallResultClaim)
func (Keeper) BuildOutgoingTxBatch ¶
func (k Keeper) BuildOutgoingTxBatch(ctx sdk.Context, tokenContract, feeReceive string, maxElements uint, minimumFee, baseFee sdkmath.Int) (*types.OutgoingTxBatch, error)
BuildOutgoingTxBatch starts the following process chain:
- find bridged denominator for given voucher type
- determine if a an unExecuted batch is already waiting for this token type, if so confirm the new batch would have a higher total fees. If not exit without creating a batch
- select available transactions from the outgoing transaction pool sorted by fee desc
- persist an outgoing batch object with an incrementing ID = nonce
- emit an event
func (Keeper) CalExternalTimeoutHeight ¶
func (k Keeper) CalExternalTimeoutHeight(ctx sdk.Context, params types.Params, timeout uint64) uint64
CalExternalTimeoutHeight This gets the timeout height in External blocks.
func (Keeper) CancelOutgoingTxBatch ¶
func (k Keeper) CancelOutgoingTxBatch(ctx sdk.Context, tokenContract string, batchNonce uint64) error
CancelOutgoingTxBatch releases all TX in the batch and deletes the batch
func (Keeper) CommonSetOracleTotalPower ¶
func (Keeper) CreateBridgeAccount ¶
func (Keeper) DelLastEventNonceByOracle ¶
func (k Keeper) DelLastEventNonceByOracle(ctx sdk.Context, oracleAddr sdk.AccAddress)
DelLastEventNonceByOracle delete the latest event nonce for a given oracle
func (Keeper) DelOracleAddrByBridgerAddr ¶
func (k Keeper) DelOracleAddrByBridgerAddr(ctx sdk.Context, bridgerAddr sdk.AccAddress)
DelOracleAddrByBridgerAddr delete the bridger key for a given oracle
func (Keeper) DelOracleAddrByExternalAddr ¶
DelOracleAddrByExternalAddr delete the external address for a give oracle
func (Keeper) DeleteAttestation ¶
func (k Keeper) DeleteAttestation(ctx sdk.Context, claim types.ExternalClaim)
DeleteAttestation deletes an attestation given an event nonce and claim
func (Keeper) DeleteBatch ¶
func (k Keeper) DeleteBatch(ctx sdk.Context, batch *types.OutgoingTxBatch)
DeleteBatch deletes an outgoing transaction batch
func (Keeper) DeleteBatchConfirm ¶
func (Keeper) DeleteBridgeCallConfirm ¶
func (Keeper) DeleteBridgeCallFromMsg ¶
func (Keeper) DeleteOracleSet ¶
DeleteOracleSet deletes the oracleSet at a given nonce from state
func (Keeper) DeleteOracleSetConfirm ¶
func (Keeper) DeleteOutgoingBridgeCall ¶
func (Keeper) DeleteOutgoingBridgeCallRecord ¶
func (Keeper) EndBlocker ¶
EndBlocker is called at the end of every block
func (Keeper) GetAllBatchFees ¶
func (k Keeper) GetAllBatchFees(ctx sdk.Context, maxElements uint, minBatchFees []types.MinBatchFee) (batchFees []*types.BatchFees)
GetAllBatchFees creates a fee entry for every batch type currently in the store this can be used by relayers to determine what batch types are desirable to request
func (Keeper) GetAllOracles ¶
func (Keeper) GetAttestation ¶
func (k Keeper) GetAttestation(ctx sdk.Context, eventNonce uint64, claimHash []byte) *types.Attestation
GetAttestation return an attestation given a nonce
func (Keeper) GetAuthority ¶
func (Keeper) GetBatchConfirm ¶
func (k Keeper) GetBatchConfirm(ctx sdk.Context, tokenContract string, batchNonce uint64, oracleAddr sdk.AccAddress) *types.MsgConfirmBatch
GetBatchConfirm returns a batch confirmation given its nonce, the token contract, and a oracle address
func (Keeper) GetBatchFeesByTokenType ¶
func (k Keeper) GetBatchFeesByTokenType(ctx sdk.Context, tokenContract string, maxElements uint, baseFee sdkmath.Int) *types.BatchFees
GetBatchFeesByTokenType gets the fee the next batch of a given token type would have if created right now. This info is both presented to relayers for the purpose of determining when to request batches and also used by the batch creation process to decide not to create a new batch (fees must be increasing)
func (Keeper) GetBridgeTokenDenom ¶
func (Keeper) GetCurrentOracleSet ¶
GetCurrentOracleSet gets powers from the store and normalizes them into an integer percentage with a resolution of uint32 Max meaning a given validators 'gravity power' is computed as Cosmos power / total cosmos power = x / uint32 Max where x is the voting power on the gravity contract. This allows us to only use integer division which produces a known rounding error from truncation equal to the ratio of the validators Cosmos power / total cosmos power ratio, leaving us at uint32 Max - 1 total voting power. This is an acceptable rounding error since floating point may cause consensus problems if different floating point unit implementations are involved.
func (Keeper) GetDenomBridgeToken ¶
func (Keeper) GetGravityID ¶
GetGravityID returns the GravityID is essentially a salt value for bridge signatures, provided each chain running Gravity has a unique ID it won't be possible to play back signatures from one bridge onto another even if they share a oracle set.
The lifecycle of the GravityID is that it is set in the Genesis file read from the live chain for the contract deployment, once a Gravity contract is deployed the GravityID CAN NOT BE CHANGED. Meaning that it can't just be the same as the chain id since the chain id may be changed many times with each successive chain in charge of the same bridge
func (Keeper) GetIbcTransferTimeoutHeight ¶
func (Keeper) GetLastEventBlockHeightByOracle ¶
GetLastEventBlockHeightByOracle get the latest event blockHeight for a give oracle
func (Keeper) GetLastEventNonceByOracle ¶
GetLastEventNonceByOracle returns the latest event nonce for a given oracle
func (Keeper) GetLastObservedBlockHeight ¶
func (k Keeper) GetLastObservedBlockHeight(ctx sdk.Context) types.LastObservedBlockHeight
GetLastObservedBlockHeight height gets the block height to of the last observed attestation from the store
func (Keeper) GetLastObservedEventNonce ¶
GetLastObservedEventNonce returns the latest observed event nonce
func (Keeper) GetLastObservedOracleSet ¶
GetLastObservedOracleSet retrieves the last observed oracle set from the store WARNING: This value is not an up to date oracle set on Ethereum, it is a oracle set that AT ONE POINT was the one in the bridge on Ethereum. If you assume that it's up to date you may break the bridge
func (Keeper) GetLastOracleSlashBlockHeight ¶
GetLastOracleSlashBlockHeight returns the last proposal block height
func (Keeper) GetLastOutgoingBatchByTokenType ¶
func (k Keeper) GetLastOutgoingBatchByTokenType(ctx sdk.Context, token string) *types.OutgoingTxBatch
GetLastOutgoingBatchByTokenType gets the latest outgoing tx batch by token type
func (Keeper) GetLastSlashedBatchBlock ¶
GetLastSlashedBatchBlock returns the latest slashed Batch block
func (Keeper) GetLastSlashedBridgeCallNonce ¶
func (Keeper) GetLastSlashedOracleSetNonce ¶
GetLastSlashedOracleSetNonce returns the latest slashed oracleSet nonce
func (Keeper) GetLastTotalPower ¶
GetLastTotalPower Load the last total oracle power.
func (Keeper) GetLatestOracleSet ¶
GetLatestOracleSet returns the latest oracle set in state
func (Keeper) GetLatestOracleSetNonce ¶
GetLatestOracleSetNonce returns the latest oracleSet nonce
func (Keeper) GetOracleAddrByBridgerAddr ¶
func (k Keeper) GetOracleAddrByBridgerAddr(ctx sdk.Context, bridgerAddr sdk.AccAddress) (sdk.AccAddress, bool)
GetOracleAddrByBridgerAddr returns the oracle key associated with an bridger key
func (Keeper) GetOracleAddrByExternalAddr ¶
func (k Keeper) GetOracleAddrByExternalAddr(ctx sdk.Context, externalAddress string) (sdk.AccAddress, bool)
GetOracleAddrByExternalAddr returns the external address for a given gravity oracle
func (Keeper) GetOracleDelegateMultiple ¶
func (Keeper) GetOracleDelegateThreshold ¶
func (Keeper) GetOracleDelegateToken ¶
func (k Keeper) GetOracleDelegateToken(ctx sdk.Context, delegateAddr sdk.AccAddress, valAddr sdk.ValAddress) (sdkmath.Int, error)
func (Keeper) GetOracleSet ¶
GetOracleSet returns a oracleSet by nonce
func (Keeper) GetOracleSetConfirm ¶
func (k Keeper) GetOracleSetConfirm(ctx sdk.Context, nonce uint64, oracleAddr sdk.AccAddress) *types.MsgOracleSetConfirm
GetOracleSetConfirm returns a oracleSet confirmation by a nonce and external address
func (Keeper) GetOracleSetUpdatePowerChangePercent ¶
func (Keeper) GetOracleSets ¶
func (k Keeper) GetOracleSets(ctx sdk.Context) (oracleSets types.OracleSets)
GetOracleSets used in testing
func (Keeper) GetOutgoingBridgeCallByNonce ¶
func (Keeper) GetOutgoingTxBatch ¶
func (k Keeper) GetOutgoingTxBatch(ctx sdk.Context, tokenContract string, batchNonce uint64) *types.OutgoingTxBatch
GetOutgoingTxBatch loads a batch object. Returns nil when not exists.
func (Keeper) GetOutgoingTxBatches ¶
func (k Keeper) GetOutgoingTxBatches(ctx sdk.Context) (out []*types.OutgoingTxBatch)
GetOutgoingTxBatches used in testing
func (Keeper) GetPendingPoolTxById ¶
func (Keeper) GetProposalOracle ¶
func (Keeper) GetUnSlashedBatches ¶
func (k Keeper) GetUnSlashedBatches(ctx sdk.Context, maxHeight uint64) (outgoingTxBatches types.OutgoingTxBatches)
GetUnSlashedBatches returns all the unSlashed batches in state
func (Keeper) GetUnSlashedBridgeCalls ¶
func (Keeper) GetUnSlashedOracleSets ¶
func (k Keeper) GetUnSlashedOracleSets(ctx sdk.Context, maxHeight uint64) (oracleSets types.OracleSets)
GetUnSlashedOracleSets returns all the unSlashed oracle sets in state
func (Keeper) GetUnbatchedTransactions ¶
func (k Keeper) GetUnbatchedTransactions(ctx sdk.Context) []*types.OutgoingTransferTx
GetUnbatchedTransactions used in testing
func (Keeper) GetUnbatchedTxByFeeAndId ¶
func (k Keeper) GetUnbatchedTxByFeeAndId(ctx sdk.Context, fee types.ERC20Token, txID uint64) (*types.OutgoingTransferTx, error)
GetUnbatchedTxByFeeAndId grabs a tx from the pool given its fee and txID
func (Keeper) GetUnbatchedTxById ¶
GetUnbatchedTxById grabs a tx from the pool given only the txID note that due to the way unbatched txs are indexed, the GetUnbatchedTxByFeeAndId method is much faster
func (Keeper) HandleOutgoingBridgeCallRefund ¶
func (k Keeper) HandleOutgoingBridgeCallRefund(ctx sdk.Context, data *types.OutgoingBridgeCall)
func (Keeper) HandlePendingOutgoingTx ¶
func (k Keeper) HandlePendingOutgoingTx(ctx sdk.Context, liquidityProvider sdk.AccAddress, eventNonce uint64, bridgeToken *types.BridgeToken)
func (Keeper) HasBridgeCallConfirm ¶
func (Keeper) HasBridgeCallFromMsg ¶
func (Keeper) HasBridgeToken ¶
func (Keeper) HasOracleAddrByBridgerAddr ¶
func (Keeper) HasOracleAddrByExternalAddr ¶
func (Keeper) HasOracleSetRequest ¶
HasOracleSetRequest returns true if a oracleSet defined by a nonce exists
func (Keeper) IsProposalOracle ¶
func (Keeper) IterBridgeCallConfirmByNonce ¶
func (Keeper) IterateAttestationAndClaim ¶
func (k Keeper) IterateAttestationAndClaim(ctx sdk.Context, cb func(*types.Attestation, types.ExternalClaim) bool)
IterateAttestationAndClaim iterates through all attestations
func (Keeper) IterateAttestations ¶
IterateAttestations iterates through all attestations
func (Keeper) IterateBatchByBlockHeight ¶
func (k Keeper) IterateBatchByBlockHeight(ctx sdk.Context, start uint64, end uint64, cb func(*types.OutgoingTxBatch) bool)
IterateBatchByBlockHeight iterates through all Batch by block in the half-open interval [start,end)
func (Keeper) IterateBatchConfirmByNonceAndTokenContract ¶
func (k Keeper) IterateBatchConfirmByNonceAndTokenContract(ctx sdk.Context, batchNonce uint64, tokenContract string, cb func(*types.MsgConfirmBatch) bool)
IterateBatchConfirmByNonceAndTokenContract iterates through all batch confirmations
func (Keeper) IterateBridgeTokenToDenom ¶
func (Keeper) IterateOracle ¶
func (Keeper) IterateOracleSetByNonce ¶
func (k Keeper) IterateOracleSetByNonce(ctx sdk.Context, startNonce uint64, cb func(*types.OracleSet) bool)
IterateOracleSetByNonce iterates through all oracleSet by nonce
func (Keeper) IterateOracleSetConfirmByNonce ¶
func (k Keeper) IterateOracleSetConfirmByNonce(ctx sdk.Context, nonce uint64, cb func(*types.MsgOracleSetConfirm) bool)
IterateOracleSetConfirmByNonce iterates through all oracleSet confirms by nonce
func (Keeper) IterateOracleSets ¶
IterateOracleSets returns all oracleSet
func (Keeper) IterateOutgoingBridgeCallByNonce ¶
func (Keeper) IterateOutgoingBridgeCalls ¶
func (Keeper) IterateOutgoingBridgeCallsByAddress ¶
func (Keeper) IterateOutgoingTxBatches ¶
func (k Keeper) IterateOutgoingTxBatches(ctx sdk.Context, cb func(batch *types.OutgoingTxBatch) bool)
IterateOutgoingTxBatches iterates through all outgoing batches
func (Keeper) IterateUnbatchedTransactions ¶
func (k Keeper) IterateUnbatchedTransactions(ctx sdk.Context, tokenContract string, cb func(tx *types.OutgoingTransferTx) bool)
IterateUnbatchedTransactions iterates through all unbatched transactions
func (Keeper) IteratorPendingOutgoingTx ¶
func (Keeper) IteratorPendingOutgoingTxByBridgeTokenContractAddr ¶
func (Keeper) ModuleName ¶
func (Keeper) OutgoingTxBatchExecuted ¶
OutgoingTxBatchExecuted is run when the Cosmos chain detects that a batch has been executed on Ethereum It frees all the transactions in the batch, then cancels all earlier batches
func (Keeper) PrecompileBridgeCall ¶
func (Keeper) PrecompileCancelSendToExternal ¶
func (Keeper) PrecompileIncreaseBridgeFee ¶
func (Keeper) RelayTransferHandler ¶
func (Keeper) RemoveFromOutgoingPoolAndRefund ¶
func (k Keeper) RemoveFromOutgoingPoolAndRefund(ctx sdk.Context, txId uint64, sender sdk.AccAddress) (sdk.Coin, error)
RemoveFromOutgoingPoolAndRefund - checks that the provided tx actually exists - deletes the unbatched tx from the pool - issues the tokens back to the sender
func (Keeper) RemovePendingOutgoingTx ¶
func (Keeper) SetAttestation ¶
func (k Keeper) SetAttestation(ctx sdk.Context, eventNonce uint64, claimHash []byte, att *types.Attestation)
SetAttestation sets the attestation in the store
func (Keeper) SetBatchConfirm ¶
func (k Keeper) SetBatchConfirm(ctx sdk.Context, oracleAddr sdk.AccAddress, batch *types.MsgConfirmBatch)
SetBatchConfirm sets a batch confirmation by a oracle
func (Keeper) SetBridgeCallConfirm ¶
func (k Keeper) SetBridgeCallConfirm(ctx sdk.Context, oracleAddr sdk.AccAddress, msg *types.MsgBridgeCallConfirm)
func (Keeper) SetBridgeCallFromMsg ¶
func (Keeper) SetIbcDenomTrace ¶
func (Keeper) SetLastEventBlockHeightByOracle ¶
func (k Keeper) SetLastEventBlockHeightByOracle(ctx sdk.Context, oracleAddr sdk.AccAddress, blockHeight uint64)
SetLastEventBlockHeightByOracle set the latest event blockHeight for a give oracle
func (Keeper) SetLastEventNonceByOracle ¶
func (k Keeper) SetLastEventNonceByOracle(ctx sdk.Context, oracleAddr sdk.AccAddress, eventNonce uint64)
SetLastEventNonceByOracle sets the latest event nonce for a give oracle
func (Keeper) SetLastObservedBlockHeight ¶
func (k Keeper) SetLastObservedBlockHeight(ctx sdk.Context, externalBlockHeight, blockHeight uint64)
SetLastObservedBlockHeight sets the block height in the store.
func (Keeper) SetLastObservedEventNonce ¶
SetLastObservedEventNonce sets the latest observed event nonce
func (Keeper) SetLastObservedOracleSet ¶
SetLastObservedOracleSet updates the last observed oracle set in the store
func (Keeper) SetLastOracleSlashBlockHeight ¶
SetLastOracleSlashBlockHeight sets the last proposal block height
func (Keeper) SetLastSlashedBatchBlock ¶
SetLastSlashedBatchBlock sets the latest slashed Batch block height
func (Keeper) SetLastSlashedBridgeCallNonce ¶
func (Keeper) SetLastSlashedOracleSetNonce ¶
SetLastSlashedOracleSetNonce sets the latest slashed oracleSet nonce
func (Keeper) SetLastTotalPower ¶
SetLastTotalPower Set the last total validator power.
func (Keeper) SetLatestOracleSetNonce ¶
SetLatestOracleSetNonce sets the latest oracleSet nonce
func (Keeper) SetOracleAddrByBridgerAddr ¶
func (k Keeper) SetOracleAddrByBridgerAddr(ctx sdk.Context, bridgerAddr, oracleAddr sdk.AccAddress)
SetOracleAddrByBridgerAddr sets the bridger key for a given oracle
func (Keeper) SetOracleAddrByExternalAddr ¶
func (k Keeper) SetOracleAddrByExternalAddr(ctx sdk.Context, externalAddress string, oracleAddr sdk.AccAddress)
SetOracleAddrByExternalAddr sets the external address for a given oracle
func (Keeper) SetOracleSetConfirm ¶
func (k Keeper) SetOracleSetConfirm(ctx sdk.Context, oracleAddr sdk.AccAddress, oracleSetConfirm *types.MsgOracleSetConfirm)
SetOracleSetConfirm sets a oracleSet confirmation
func (Keeper) SetOutgoingBridgeCall ¶
func (k Keeper) SetOutgoingBridgeCall(ctx sdk.Context, outCall *types.OutgoingBridgeCall)
func (Keeper) SetPendingTx ¶
func (k Keeper) SetPendingTx(ctx sdk.Context, outgoing *types.PendingOutgoingTransferTx)
func (Keeper) SetProposalOracle ¶
func (k Keeper) SetProposalOracle(ctx sdk.Context, proposalOracle *types.ProposalOracle)
func (Keeper) StoreBatch ¶
StoreBatch stores a transaction batch
func (Keeper) StoreOracleSet ¶
StoreOracleSet is for storing a oracle set at a given height
func (Keeper) TransferAfter ¶
func (k Keeper) TransferAfter(ctx sdk.Context, sender sdk.AccAddress, receive string, amount, fee sdk.Coin, originToken, insufficientLiquidity bool) error
TransferAfter 1. Hook operation after transfer transaction triggered by IBC module 2. Hook operation after transferCrossChain triggered by ERC20 module
func (Keeper) TryAttestation ¶
func (k Keeper) TryAttestation(ctx sdk.Context, att *types.Attestation, claim types.ExternalClaim)
TryAttestation checks if an attestation has enough votes to be applied to the consensus state and has not already been marked Observed, then calls processAttestation to actually apply it to the state, and then marks it Observed and emits an event.
func (Keeper) UnbondedOracleFromProposal ¶
func (Keeper) UpdateChainOraclesProposal ¶
func (k Keeper) UpdateChainOraclesProposal(ctx sdk.Context, proposal *types.UpdateChainOraclesProposal) error
UpdateChainOraclesProposal Deprecated: v0.46 gov execution models is based on sdk.Msgs
type Migrator ¶
type Migrator struct {
// contains filtered or unexported fields
}
func NewMigrator ¶
type ModuleHandler ¶
type ModuleHandler struct { QueryServer types.QueryServer MsgServer types.MsgServer ProposalServer proposalServer }
func NewModuleHandler ¶
func NewModuleHandler(keeper Keeper) *ModuleHandler
type MsgServer ¶
type MsgServer struct {
Keeper
}
func (MsgServer) AddDelegate ¶
func (s MsgServer) AddDelegate(c context.Context, msg *types.MsgAddDelegate) (*types.MsgAddDelegateResponse, error)
func (MsgServer) AddPendingPoolRewards ¶
func (s MsgServer) AddPendingPoolRewards(c context.Context, msg *types.MsgAddPendingPoolRewards) (*types.MsgAddPendingPoolRewardsResponse, error)
func (MsgServer) BondedOracle ¶
func (s MsgServer) BondedOracle(c context.Context, msg *types.MsgBondedOracle) (*types.MsgBondedOracleResponse, error)
func (MsgServer) BridgeCall ¶
func (s MsgServer) BridgeCall(c context.Context, msg *types.MsgBridgeCall) (*types.MsgBridgeCallResponse, error)
func (MsgServer) BridgeCallClaim ¶
func (s MsgServer) BridgeCallClaim(c context.Context, msg *types.MsgBridgeCallClaim) (*types.MsgBridgeCallClaimResponse, error)
func (MsgServer) BridgeCallConfirm ¶
func (s MsgServer) BridgeCallConfirm(c context.Context, msg *types.MsgBridgeCallConfirm) (*types.MsgBridgeCallConfirmResponse, error)
func (MsgServer) BridgeCallResultClaim ¶
func (s MsgServer) BridgeCallResultClaim(c context.Context, msg *types.MsgBridgeCallResultClaim) (*types.MsgBridgeCallResultClaimResponse, error)
func (MsgServer) BridgeTokenClaim ¶
func (s MsgServer) BridgeTokenClaim(c context.Context, msg *types.MsgBridgeTokenClaim) (*types.MsgBridgeTokenClaimResponse, error)
func (MsgServer) CancelSendToExternal ¶
func (s MsgServer) CancelSendToExternal(c context.Context, msg *types.MsgCancelSendToExternal) (*types.MsgCancelSendToExternalResponse, error)
func (MsgServer) ConfirmBatch ¶
func (s MsgServer) ConfirmBatch(c context.Context, msg *types.MsgConfirmBatch) (*types.MsgConfirmBatchResponse, error)
func (MsgServer) EditBridger ¶
func (s MsgServer) EditBridger(c context.Context, msg *types.MsgEditBridger) (*types.MsgEditBridgerResponse, error)
func (MsgServer) IncreaseBridgeFee ¶
func (s MsgServer) IncreaseBridgeFee(c context.Context, msg *types.MsgIncreaseBridgeFee) (*types.MsgIncreaseBridgeFeeResponse, error)
func (MsgServer) OracleSetConfirm ¶
func (s MsgServer) OracleSetConfirm(c context.Context, msg *types.MsgOracleSetConfirm) (*types.MsgOracleSetConfirmResponse, error)
func (MsgServer) OracleSetUpdateClaim ¶
func (s MsgServer) OracleSetUpdateClaim(c context.Context, msg *types.MsgOracleSetUpdatedClaim) (*types.MsgOracleSetUpdatedClaimResponse, error)
OracleSetUpdateClaim handles claims for executing a oracle set update on Ethereum
func (MsgServer) ReDelegate ¶
func (s MsgServer) ReDelegate(c context.Context, msg *types.MsgReDelegate) (*types.MsgReDelegateResponse, error)
func (MsgServer) RequestBatch ¶
func (s MsgServer) RequestBatch(c context.Context, msg *types.MsgRequestBatch) (*types.MsgRequestBatchResponse, error)
func (MsgServer) SendToExternal ¶
func (s MsgServer) SendToExternal(c context.Context, msg *types.MsgSendToExternal) (*types.MsgSendToExternalResponse, error)
func (MsgServer) SendToExternalClaim ¶
func (s MsgServer) SendToExternalClaim(c context.Context, msg *types.MsgSendToExternalClaim) (*types.MsgSendToExternalClaimResponse, error)
func (MsgServer) SendToFxClaim ¶
func (s MsgServer) SendToFxClaim(c context.Context, msg *types.MsgSendToFxClaim) (*types.MsgSendToFxClaimResponse, error)
func (MsgServer) UnbondedOracle ¶
func (s MsgServer) UnbondedOracle(c context.Context, msg *types.MsgUnbondedOracle) (*types.MsgUnbondedOracleResponse, error)
func (MsgServer) UpdateChainOracles ¶
func (s MsgServer) UpdateChainOracles(c context.Context, req *types.MsgUpdateChainOracles) (*types.MsgUpdateChainOraclesResponse, error)
func (MsgServer) UpdateParams ¶
func (s MsgServer) UpdateParams(c context.Context, req *types.MsgUpdateParams) (*types.MsgUpdateParamsResponse, error)
func (MsgServer) WithdrawReward ¶
func (s MsgServer) WithdrawReward(c context.Context, msg *types.MsgWithdrawReward) (*types.MsgWithdrawRewardResponse, error)
type QueryServer ¶
type QueryServer struct {
Keeper
}
func (QueryServer) BatchConfirm ¶
func (k QueryServer) BatchConfirm(c context.Context, req *types.QueryBatchConfirmRequest) (*types.QueryBatchConfirmResponse, error)
func (QueryServer) BatchConfirms ¶
func (k QueryServer) BatchConfirms(c context.Context, req *types.QueryBatchConfirmsRequest) (*types.QueryBatchConfirmsResponse, error)
BatchConfirms returns the batch confirmations by nonce and token contract
func (QueryServer) BatchFees ¶
func (k QueryServer) BatchFees(c context.Context, req *types.QueryBatchFeeRequest) (*types.QueryBatchFeeResponse, error)
BatchFees queries the batch fees from unbatched pool
func (QueryServer) BatchRequestByNonce ¶
func (k QueryServer) BatchRequestByNonce(c context.Context, req *types.QueryBatchRequestByNonceRequest) (*types.QueryBatchRequestByNonceResponse, error)
func (QueryServer) BridgeAddrToOracle ¶
func (QueryServer) BridgeAddrToOracleAddr ¶
func (k QueryServer) BridgeAddrToOracleAddr(ctx sdk.Context, bridgeAddr string) (sdk.AccAddress, error)
func (QueryServer) BridgeCallByNonce ¶
func (k QueryServer) BridgeCallByNonce(c context.Context, req *types.QueryBridgeCallByNonceRequest) (*types.QueryBridgeCallByNonceResponse, error)
func (QueryServer) BridgeCallBySender ¶
func (k QueryServer) BridgeCallBySender(c context.Context, req *types.QueryBridgeCallBySenderRequest) (*types.QueryBridgeCallBySenderResponse, error)
func (QueryServer) BridgeCallConfirmByNonce ¶
func (k QueryServer) BridgeCallConfirmByNonce(c context.Context, req *types.QueryBridgeCallConfirmByNonceRequest) (*types.QueryBridgeCallConfirmByNonceResponse, error)
func (QueryServer) BridgeCalls ¶
func (k QueryServer) BridgeCalls(c context.Context, req *types.QueryBridgeCallsRequest) (*types.QueryBridgeCallsResponse, error)
func (QueryServer) BridgeChainList ¶
func (k QueryServer) BridgeChainList(_ context.Context, _ *types.QueryBridgeChainListRequest) (*types.QueryBridgeChainListResponse, error)
func (QueryServer) BridgeCoinByDenom ¶
func (k QueryServer) BridgeCoinByDenom(c context.Context, req *types.QueryBridgeCoinByDenomRequest) (*types.QueryBridgeCoinByDenomResponse, error)
func (QueryServer) BridgeTokens ¶
func (k QueryServer) BridgeTokens(c context.Context, _ *types.QueryBridgeTokensRequest) (*types.QueryBridgeTokensResponse, error)
func (QueryServer) CurrentOracleSet ¶
func (k QueryServer) CurrentOracleSet(c context.Context, _ *types.QueryCurrentOracleSetRequest) (*types.QueryCurrentOracleSetResponse, error)
func (QueryServer) DenomToToken ¶
func (k QueryServer) DenomToToken(c context.Context, req *types.QueryDenomToTokenRequest) (*types.QueryDenomToTokenResponse, error)
func (QueryServer) GetOracleByAddr ¶
func (k QueryServer) GetOracleByAddr(c context.Context, req *types.QueryOracleByAddrRequest) (*types.QueryOracleResponse, error)
func (QueryServer) GetOracleByBridgerAddr ¶
func (k QueryServer) GetOracleByBridgerAddr(c context.Context, req *types.QueryOracleByBridgerAddrRequest) (*types.QueryOracleResponse, error)
func (QueryServer) GetOracleByExternalAddr ¶
func (k QueryServer) GetOracleByExternalAddr(c context.Context, req *types.QueryOracleByExternalAddrRequest) (*types.QueryOracleResponse, error)
func (QueryServer) GetPendingPoolSendToExternal ¶
func (k QueryServer) GetPendingPoolSendToExternal(c context.Context, req *types.QueryPendingPoolSendToExternalRequest) (*types.QueryPendingPoolSendToExternalResponse, error)
func (QueryServer) GetPendingSendToExternal ¶
func (k QueryServer) GetPendingSendToExternal(c context.Context, req *types.QueryPendingSendToExternalRequest) (*types.QueryPendingSendToExternalResponse, error)
func (QueryServer) LastEventBlockHeightByAddr ¶
func (k QueryServer) LastEventBlockHeightByAddr(c context.Context, req *types.QueryLastEventBlockHeightByAddrRequest) (*types.QueryLastEventBlockHeightByAddrResponse, error)
func (QueryServer) LastEventNonceByAddr ¶
func (k QueryServer) LastEventNonceByAddr(c context.Context, req *types.QueryLastEventNonceByAddrRequest) (*types.QueryLastEventNonceByAddrResponse, error)
LastEventNonceByAddr returns the last event nonce for the given validator address, this allows eth oracles to figure out where they left off
func (QueryServer) LastObservedBlockHeight ¶
func (k QueryServer) LastObservedBlockHeight(c context.Context, _ *types.QueryLastObservedBlockHeightRequest) (*types.QueryLastObservedBlockHeightResponse, error)
func (QueryServer) LastOracleSetRequests ¶
func (k QueryServer) LastOracleSetRequests(c context.Context, _ *types.QueryLastOracleSetRequestsRequest) (*types.QueryLastOracleSetRequestsResponse, error)
func (QueryServer) LastPendingBatchRequestByAddr ¶
func (k QueryServer) LastPendingBatchRequestByAddr(c context.Context, req *types.QueryLastPendingBatchRequestByAddrRequest) (*types.QueryLastPendingBatchRequestByAddrResponse, error)
func (QueryServer) LastPendingBridgeCallByAddr ¶
func (k QueryServer) LastPendingBridgeCallByAddr(c context.Context, req *types.QueryLastPendingBridgeCallByAddrRequest) (*types.QueryLastPendingBridgeCallByAddrResponse, error)
func (QueryServer) LastPendingOracleSetRequestByAddr ¶
func (k QueryServer) LastPendingOracleSetRequestByAddr(c context.Context, req *types.QueryLastPendingOracleSetRequestByAddrRequest) (*types.QueryLastPendingOracleSetRequestByAddrResponse, error)
func (QueryServer) OracleSetConfirm ¶
func (k QueryServer) OracleSetConfirm(c context.Context, req *types.QueryOracleSetConfirmRequest) (*types.QueryOracleSetConfirmResponse, error)
func (QueryServer) OracleSetConfirmsByNonce ¶
func (k QueryServer) OracleSetConfirmsByNonce(c context.Context, req *types.QueryOracleSetConfirmsByNonceRequest) (*types.QueryOracleSetConfirmsByNonceResponse, error)
func (QueryServer) OracleSetRequest ¶
func (k QueryServer) OracleSetRequest(c context.Context, req *types.QueryOracleSetRequestRequest) (*types.QueryOracleSetRequestResponse, error)
func (QueryServer) Oracles ¶
func (k QueryServer) Oracles(c context.Context, _ *types.QueryOraclesRequest) (*types.QueryOraclesResponse, error)
func (QueryServer) OutgoingTxBatches ¶
func (k QueryServer) OutgoingTxBatches(c context.Context, _ *types.QueryOutgoingTxBatchesRequest) (*types.QueryOutgoingTxBatchesResponse, error)
func (QueryServer) Params ¶
func (k QueryServer) Params(c context.Context, _ *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
func (QueryServer) ProjectedBatchTimeoutHeight ¶
func (k QueryServer) ProjectedBatchTimeoutHeight(c context.Context, _ *types.QueryProjectedBatchTimeoutHeightRequest) (*types.QueryProjectedBatchTimeoutHeightResponse, error)
func (QueryServer) TokenToDenom ¶
func (k QueryServer) TokenToDenom(c context.Context, req *types.QueryTokenToDenomRequest) (*types.QueryTokenToDenomResponse, error)
type Router ¶
type Router interface { AddRoute(name string, moduleHandler *ModuleHandler) (router Router) HasRoute(name string) bool GetRoute(name string) (moduleHandler *ModuleHandler) Seal() }
Router implements a crosschain Server Handler router.
type RouterKeeper ¶
type RouterKeeper struct {
// contains filtered or unexported fields
}
RouterKeeper maintains the link to storage and exposes getter/setter methods for the various parts of the state machine
func NewRouterKeeper ¶
func NewRouterKeeper(rtr Router) RouterKeeper
NewRouterKeeper returns a new instance of the cross chain keeper
func (RouterKeeper) BatchConfirm ¶
func (k RouterKeeper) BatchConfirm(c context.Context, req *types.QueryBatchConfirmRequest) (*types.QueryBatchConfirmResponse, error)
func (RouterKeeper) BatchConfirms ¶
func (k RouterKeeper) BatchConfirms(c context.Context, req *types.QueryBatchConfirmsRequest) (*types.QueryBatchConfirmsResponse, error)
func (RouterKeeper) BatchFees ¶
func (k RouterKeeper) BatchFees(c context.Context, req *types.QueryBatchFeeRequest) (*types.QueryBatchFeeResponse, error)
func (RouterKeeper) BatchRequestByNonce ¶
func (k RouterKeeper) BatchRequestByNonce(c context.Context, req *types.QueryBatchRequestByNonceRequest) (*types.QueryBatchRequestByNonceResponse, error)
func (RouterKeeper) BridgeCallByNonce ¶
func (k RouterKeeper) BridgeCallByNonce(c context.Context, req *types.QueryBridgeCallByNonceRequest) (*types.QueryBridgeCallByNonceResponse, error)
func (RouterKeeper) BridgeCallBySender ¶
func (k RouterKeeper) BridgeCallBySender(c context.Context, req *types.QueryBridgeCallBySenderRequest) (*types.QueryBridgeCallBySenderResponse, error)
func (RouterKeeper) BridgeCallConfirmByNonce ¶
func (k RouterKeeper) BridgeCallConfirmByNonce(c context.Context, req *types.QueryBridgeCallConfirmByNonceRequest) (*types.QueryBridgeCallConfirmByNonceResponse, error)
func (RouterKeeper) BridgeCalls ¶
func (k RouterKeeper) BridgeCalls(c context.Context, req *types.QueryBridgeCallsRequest) (*types.QueryBridgeCallsResponse, error)
func (RouterKeeper) BridgeChainList ¶
func (k RouterKeeper) BridgeChainList(c context.Context, req *types.QueryBridgeChainListRequest) (*types.QueryBridgeChainListResponse, error)
func (RouterKeeper) BridgeCoinByDenom ¶
func (k RouterKeeper) BridgeCoinByDenom(c context.Context, req *types.QueryBridgeCoinByDenomRequest) (*types.QueryBridgeCoinByDenomResponse, error)
func (RouterKeeper) BridgeTokens ¶
func (k RouterKeeper) BridgeTokens(c context.Context, req *types.QueryBridgeTokensRequest) (*types.QueryBridgeTokensResponse, error)
func (RouterKeeper) CurrentOracleSet ¶
func (k RouterKeeper) CurrentOracleSet(c context.Context, req *types.QueryCurrentOracleSetRequest) (*types.QueryCurrentOracleSetResponse, error)
func (RouterKeeper) DenomToToken ¶
func (k RouterKeeper) DenomToToken(c context.Context, req *types.QueryDenomToTokenRequest) (*types.QueryDenomToTokenResponse, error)
func (RouterKeeper) GetOracleByAddr ¶
func (k RouterKeeper) GetOracleByAddr(c context.Context, req *types.QueryOracleByAddrRequest) (*types.QueryOracleResponse, error)
func (RouterKeeper) GetOracleByBridgerAddr ¶
func (k RouterKeeper) GetOracleByBridgerAddr(c context.Context, req *types.QueryOracleByBridgerAddrRequest) (*types.QueryOracleResponse, error)
func (RouterKeeper) GetOracleByExternalAddr ¶
func (k RouterKeeper) GetOracleByExternalAddr(c context.Context, req *types.QueryOracleByExternalAddrRequest) (*types.QueryOracleResponse, error)
func (RouterKeeper) GetPendingPoolSendToExternal ¶
func (k RouterKeeper) GetPendingPoolSendToExternal(c context.Context, req *types.QueryPendingPoolSendToExternalRequest) (*types.QueryPendingPoolSendToExternalResponse, error)
func (RouterKeeper) GetPendingSendToExternal ¶
func (k RouterKeeper) GetPendingSendToExternal(c context.Context, req *types.QueryPendingSendToExternalRequest) (*types.QueryPendingSendToExternalResponse, error)
func (RouterKeeper) LastEventBlockHeightByAddr ¶
func (k RouterKeeper) LastEventBlockHeightByAddr(c context.Context, req *types.QueryLastEventBlockHeightByAddrRequest) (*types.QueryLastEventBlockHeightByAddrResponse, error)
func (RouterKeeper) LastEventNonceByAddr ¶
func (k RouterKeeper) LastEventNonceByAddr(c context.Context, req *types.QueryLastEventNonceByAddrRequest) (*types.QueryLastEventNonceByAddrResponse, error)
func (RouterKeeper) LastObservedBlockHeight ¶
func (k RouterKeeper) LastObservedBlockHeight(c context.Context, req *types.QueryLastObservedBlockHeightRequest) (*types.QueryLastObservedBlockHeightResponse, error)
func (RouterKeeper) LastOracleSetRequests ¶
func (k RouterKeeper) LastOracleSetRequests(c context.Context, req *types.QueryLastOracleSetRequestsRequest) (*types.QueryLastOracleSetRequestsResponse, error)
func (RouterKeeper) LastPendingBatchRequestByAddr ¶
func (k RouterKeeper) LastPendingBatchRequestByAddr(c context.Context, req *types.QueryLastPendingBatchRequestByAddrRequest) (*types.QueryLastPendingBatchRequestByAddrResponse, error)
func (RouterKeeper) LastPendingBridgeCallByAddr ¶
func (k RouterKeeper) LastPendingBridgeCallByAddr(c context.Context, req *types.QueryLastPendingBridgeCallByAddrRequest) (*types.QueryLastPendingBridgeCallByAddrResponse, error)
func (RouterKeeper) LastPendingOracleSetRequestByAddr ¶
func (k RouterKeeper) LastPendingOracleSetRequestByAddr(c context.Context, req *types.QueryLastPendingOracleSetRequestByAddrRequest) (*types.QueryLastPendingOracleSetRequestByAddrResponse, error)
func (RouterKeeper) Logger ¶
func (k RouterKeeper) Logger(ctx sdk.Context) log.Logger
Logger returns a module-specific logger.
func (RouterKeeper) OracleSetConfirm ¶
func (k RouterKeeper) OracleSetConfirm(c context.Context, req *types.QueryOracleSetConfirmRequest) (*types.QueryOracleSetConfirmResponse, error)
func (RouterKeeper) OracleSetConfirmsByNonce ¶
func (k RouterKeeper) OracleSetConfirmsByNonce(c context.Context, req *types.QueryOracleSetConfirmsByNonceRequest) (*types.QueryOracleSetConfirmsByNonceResponse, error)
func (RouterKeeper) OracleSetRequest ¶
func (k RouterKeeper) OracleSetRequest(c context.Context, req *types.QueryOracleSetRequestRequest) (*types.QueryOracleSetRequestResponse, error)
func (RouterKeeper) Oracles ¶
func (k RouterKeeper) Oracles(c context.Context, req *types.QueryOraclesRequest) (*types.QueryOraclesResponse, error)
func (RouterKeeper) OutgoingTxBatches ¶
func (k RouterKeeper) OutgoingTxBatches(c context.Context, req *types.QueryOutgoingTxBatchesRequest) (*types.QueryOutgoingTxBatchesResponse, error)
func (RouterKeeper) Params ¶
func (k RouterKeeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
func (RouterKeeper) ProjectedBatchTimeoutHeight ¶
func (k RouterKeeper) ProjectedBatchTimeoutHeight(c context.Context, req *types.QueryProjectedBatchTimeoutHeightRequest) (*types.QueryProjectedBatchTimeoutHeightResponse, error)
func (RouterKeeper) Router ¶
func (k RouterKeeper) Router() Router
Router returns the gov Keeper's Router
func (RouterKeeper) TokenToDenom ¶
func (k RouterKeeper) TokenToDenom(c context.Context, req *types.QueryTokenToDenomRequest) (*types.QueryTokenToDenomResponse, error)
Source Files ¶
- abci.go
- attestation.go
- attestation_handler.go
- batch.go
- bridge_account.go
- bridge_call_confirm.go
- bridge_call_in.go
- bridge_call_out.go
- bridge_call_refund.go
- bridge_token.go
- delegate.go
- genesis.go
- grpc_query.go
- grpc_query_router.go
- hook.go
- keeper.go
- keeper_router.go
- migrations.go
- msg_server.go
- msg_server_router.go
- oracle.go
- oracle_set.go
- params.go
- pool.go
- proposal.go
- proposal_legacy.go
- relay_transfer.go