Documentation ¶
Index ¶
- Constants
- func GetHandlerAddChain(cliCtx client.Context) http.HandlerFunc
- func GetHandlerConfirmDeposit(cliCtx client.Context) http.HandlerFunc
- func GetHandlerConfirmTokenDeploy(cliCtx client.Context) http.HandlerFunc
- func GetHandlerConfirmTransferKey(cliCtx client.Context) http.HandlerFunc
- func GetHandlerCreateBurnTokens(cliCtx client.Context) http.HandlerFunc
- func GetHandlerCreateDeployToken(cliCtx client.Context) http.HandlerFunc
- func GetHandlerCreatePendingTransfers(cliCtx client.Context) http.HandlerFunc
- func GetHandlerCreateTransferOperatorship(cliCtx client.Context) http.HandlerFunc
- func GetHandlerLink(cliCtx client.Context) http.HandlerFunc
- func GetHandlerQueryCommand(cliCtx client.Context) http.HandlerFunc
- func GetHandlerQueryTokenAddress(cliCtx client.Context) http.HandlerFunc
- func GetHandlerSignCommands(cliCtx client.Context) http.HandlerFunc
- func RegisterRoutes(cliCtx client.Context, r *mux.Router)
- type ReqAddChain
- type ReqConfirmChain
- type ReqConfirmDeposit
- type ReqConfirmTokenDeploy
- type ReqConfirmTransferKey
- type ReqCreateBurnTokens
- type ReqCreateDeployToken
- type ReqCreatePendingTransfers
- type ReqCreateTransferOperatorship
- type ReqLink
- type ReqSignCommands
Constants ¶
const ( QueryParamKeyRole = "key_role" QueryParamKeyID = "key_id" QueryParamSymbol = keeper.BySymbol QueryParamAsset = keeper.ByAsset )
query parameters
const ( TxLink = "link" TxConfirmTokenDeploy = "confirm-erc20-deploy" TxConfirmDeposit = "confirm-erc20-deposit" TxConfirmTransferOperatorship = "confirm-transfer-operatorship" TxCreatePendingTransfers = "create-pending-transfers" TxCreateDeployToken = "create-deploy-token" TxCreateBurnTokens = "create-burn-token" TxCreateTransferOperatorship = "create-transfer-operatorship" TxSignCommands = "sign-commands" TxAddChain = "add-chain" QueryAddress = "query-address" QueryTokenAddress = "token-address" QueryPendingCommands = keeper.QPendingCommands QueryCommand = keeper.QCommand )
rest routes
Variables ¶
This section is empty.
Functions ¶
func GetHandlerAddChain ¶
func GetHandlerAddChain(cliCtx client.Context) http.HandlerFunc
GetHandlerAddChain returns a handler to add a new evm chain command
func GetHandlerConfirmDeposit ¶
func GetHandlerConfirmDeposit(cliCtx client.Context) http.HandlerFunc
GetHandlerConfirmDeposit returns a handler to confirm a deposit
func GetHandlerConfirmTokenDeploy ¶
func GetHandlerConfirmTokenDeploy(cliCtx client.Context) http.HandlerFunc
GetHandlerConfirmTokenDeploy returns a handler to confirm a token deployment
func GetHandlerConfirmTransferKey ¶
func GetHandlerConfirmTransferKey(cliCtx client.Context) http.HandlerFunc
GetHandlerConfirmTransferKey returns a handler to confirm a transfer operatorship
func GetHandlerCreateBurnTokens ¶
func GetHandlerCreateBurnTokens(cliCtx client.Context) http.HandlerFunc
GetHandlerCreateBurnTokens returns a handler to create commands for all outstanding burns
func GetHandlerCreateDeployToken ¶
func GetHandlerCreateDeployToken(cliCtx client.Context) http.HandlerFunc
GetHandlerCreateDeployToken returns a handler to create a deploy token command
func GetHandlerCreatePendingTransfers ¶
func GetHandlerCreatePendingTransfers(cliCtx client.Context) http.HandlerFunc
GetHandlerCreatePendingTransfers returns a handler to create commands for all pending transfers
func GetHandlerCreateTransferOperatorship ¶
func GetHandlerCreateTransferOperatorship(cliCtx client.Context) http.HandlerFunc
GetHandlerCreateTransferOperatorship returns a handler to create transfer operatoship command
func GetHandlerLink ¶
func GetHandlerLink(cliCtx client.Context) http.HandlerFunc
GetHandlerLink returns the handler to link addresses
func GetHandlerQueryCommand ¶ added in v0.10.0
func GetHandlerQueryCommand(cliCtx client.Context) http.HandlerFunc
GetHandlerQueryCommand returns a handler to get the command with the given ID on the specified chain
func GetHandlerQueryTokenAddress ¶
func GetHandlerQueryTokenAddress(cliCtx client.Context) http.HandlerFunc
GetHandlerQueryTokenAddress returns a handler to query an EVM chain address
func GetHandlerSignCommands ¶
func GetHandlerSignCommands(cliCtx client.Context) http.HandlerFunc
GetHandlerSignCommands returns a handler to sign pending commands
Types ¶
type ReqAddChain ¶
type ReqAddChain struct { BaseReq rest.BaseReq `json:"base_req" yaml:"base_req"` Name string `json:"name" yaml:"name"` KeyType string `json:"key_type" yaml:"key_type"` Params types.Params `json:"params" yaml:"params"` }
ReqAddChain represents a request to add a new evm chain command
type ReqConfirmChain ¶
type ReqConfirmChain struct { BaseReq rest.BaseReq `json:"base_req" yaml:"base_req"` Chain string `json:"chain" yaml:"chain"` }
ReqConfirmChain represents a request to confirm a new chain
type ReqConfirmDeposit ¶
type ReqConfirmDeposit struct { BaseReq rest.BaseReq `json:"base_req" yaml:"base_req"` TxID string `json:"tx_id" yaml:"tx_id"` Amount string `json:"amount" yaml:"amount"` BurnerAddress string `json:"burner_address" yaml:"burner_address"` }
ReqConfirmDeposit represents a request to confirm a deposit
type ReqConfirmTokenDeploy ¶
type ReqConfirmTokenDeploy struct { BaseReq rest.BaseReq `json:"base_req" yaml:"base_req"` OriginChain string `json:"origin_chain" yaml:"origin_chain"` OriginAsset string `json:"origin_asset" yaml:"origin_asset"` TxID string `json:"tx_id" yaml:"tx_id"` }
ReqConfirmTokenDeploy represents a request to confirm a token deployment
type ReqConfirmTransferKey ¶
type ReqConfirmTransferKey struct { BaseReq rest.BaseReq `json:"base_req" yaml:"base_req"` TxID string `json:"tx_id" yaml:"tx_id"` }
ReqConfirmTransferKey represents a request to confirm a transfer operatorship
type ReqCreateBurnTokens ¶
ReqCreateBurnTokens represents a request to create commands for all outstanding burns
type ReqCreateDeployToken ¶
type ReqCreateDeployToken struct { BaseReq rest.BaseReq `json:"base_req" yaml:"base_req"` OriginChain string `json:"origin_chain" yaml:"origin_chain"` OriginAsset string `json:"origin_asset" yaml:"origin_asset"` Symbol string `json:"symbol" yaml:"symbol"` TokenName string `json:"token_name" yaml:"token_name"` Decimals string `json:"decimals" yaml:"decimals"` Capacity string `json:"capacity" yaml:"capacity"` Address string `json:"address" yaml:"address"` DailyMintLimit string `json:"daily_mint_limit" yaml:"daily_mint_limit"` }
ReqCreateDeployToken represents a request to create a deploy token command
type ReqCreatePendingTransfers ¶
ReqCreatePendingTransfers represents a request to create commands for all pending transfers
type ReqCreateTransferOperatorship ¶
type ReqCreateTransferOperatorship struct { BaseReq rest.BaseReq `json:"base_req" yaml:"base_req"` KeyID string `json:"key_id" yaml:"key_id"` }
ReqCreateTransferOperatorship represents a request to create transfer operatorship command
type ReqLink ¶
type ReqLink struct { BaseReq rest.BaseReq `json:"base_req" yaml:"base_req"` RecipientChain string `json:"chain" yaml:"chain"` RecipientAddr string `json:"recipient" yaml:"recipient"` Asset string `json:"asset" yaml:"asset"` }
ReqLink represents a request to link a cross-chain address to an EVM chain address
type ReqSignCommands ¶
ReqSignCommands represents a request to sign pending commands