Aptos · Schema

MoveScriptBytecode

Move script bytecode

BlockchainWeb3MoveLayer 1CryptocurrencyNFTSmart ContractsDeFiTransactionsAccountsGraphQLgRPC

Properties

Name Type Description
bytecode object
abi object
View JSON Schema on GitHub

JSON Schema

MoveScriptBytecode.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/aptos/json-schema/MoveScriptBytecode.json",
  "title": "MoveScriptBytecode",
  "type": "object",
  "description": "Move script bytecode",
  "required": [
    "bytecode"
  ],
  "properties": {
    "bytecode": {
      "$ref": "#/components/schemas/HexEncodedBytes"
    },
    "abi": {
      "$ref": "#/components/schemas/MoveFunction"
    }
  }
}