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
}
Plane | Action | Address | Msg | Return value |
---|---|---|---|---|
COSMOS | COSMOS_QUERY | null | lcd query string flux/astromesh/v1beta1/... | query json response |
COSMOS | COSMOS_EVENT | null | [byte("<module>,<event_op>,<event_type>")] | event json response |
COSMOS | COSMOS_BANK_BALANCE | null | [byte("<address1,address2>"),byte("<denom1,denom2>")] | [{"amount":"<amount1>","denom":"<denom1>"}] |
COSMOS | COSMOS_ASTROMESH_BALANCE | null | [byte("<address1,address2>),byte("<denom1,denom2>")] | [{"amount":"<amount1>","denom":"<denom1>"}] |
WASM | VM_QUERY | contract address in lux format | [][]byte , or array of jsons | array of json responses |
EVM | VM_QUERY | contract address in hex format | [][]byte , array of evm call data | array of bytes |
SVM | VM_QUERY | account in base58 format | [][]byte , array of accounts address, 32 bytes each | array 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
}
Plane | Action | Address | Msg | Return value |
---|---|---|---|---|
COSMOS | COSMOS_INVOKE | null | Any Tx Msg in JSON format | nil |
COSMOS | COSMOS_BANK_SEND | null | MsgSend proto bytes or json {"from_address":"<from_address>","to_address":"to_address","amount":[{"amount":"<amount1>","denom":"<denom1>"}]} | nil |
COSMOS | COSMOS_ASTROMESH_TRANSFER | null | MsgAstroTransfer 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