Skip to main content

Appendix: FIS supported instructions

Instructions could be divided into 2 parts: Queries and Transactions

Mainly used go code as references, but it should be same name for rust, typescript

Queries

type FISQueryInstruction struct {
Plane Plane // Plane in which action will be queried. Possible values: "COSMOS", "WASM", "EVM", "SVM"
Action QueryAction // The query action
Address []byte // Contract address to query (We don't use this for COSMOS plane)
Input [][]byte // Input message for query
}
PlaneActionAddressMsgReturn value
COSMOSCOSMOS_QUERYnulllcd query string flux/astromesh/v1beta1/...query json response
COSMOSCOSMOS_EVENTnull[byte("<module>,<event_op>,<event_type>")]event json response
COSMOSCOSMOS_BANK_BALANCEnull[byte("<address1,address2>"),byte("<denom1,denom2>")][{"amount":"<amount1>","denom":"<denom1>"}]
COSMOSCOSMOS_ASTROMESH_BALANCEnull[byte("<address1,address2>),byte("<denom1,denom2>")][{"amount":"<amount1>","denom":"<denom1>"}]
WASMVM_QUERYcontract address in lux format[][]byte, or array of jsonsarray of json responses
EVMVM_QUERYcontract address in hex format[][]byte, array of evm call dataarray of bytes
SVMVM_QUERYaccount in base58 format[][]byte, array of accounts address, 32 bytes eacharray of bytes having type AccountData

Transactions

FISInstruction for transaction works like a command which fluxd will execute

type FISInstruction struct {
Plane Plane // Plane in which action will be executed. Possible values: "COSMOS", "WASM", "EVM", "SVM"
Action TxAction // The action (e.g transfer balance, invoke vm and so on)
Address []byte // Contract address (We don't use this for COSMOS plane)
Msg []byte // Message that pass to the contract address or to cosmos
}
PlaneActionAddressMsgReturn value
COSMOSCOSMOS_INVOKEnullAny Tx Msg in JSON formatnil
COSMOSCOSMOS_BANK_SENDnullMsgSend proto bytes or json {"from_address":"<from_address>","to_address":"to_address","amount":[{"amount":"<amount1>","denom":"<denom1>"}]}nil
COSMOSCOSMOS_ASTROMESH_TRANSFERnullMsgAstroTransfer proto bytes or json {"sender":"<sender_address>","receiver":"receiver_address","src_plane":"<source_plane>","dst_plane":"<destination_plane>","coin":{"amount":"<amount>","denom":"<denom>"}}nil

We will continue to add more actions on both queries and transactions