Aptos · Schema

MoveModuleBytecode

Move module bytecode along with it's ABI

BlockchainWeb3MoveLayer 1CryptocurrencyNFTSmart ContractsDeFiTransactionsAccountsGraphQLgRPC

Properties

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

JSON Schema

MoveModuleBytecode.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/aptos/json-schema/MoveModuleBytecode.json",
  "title": "MoveModuleBytecode",
  "type": "object",
  "description": "Move module bytecode along with it's ABI",
  "required": [
    "bytecode"
  ],
  "properties": {
    "bytecode": {
      "$ref": "#/components/schemas/HexEncodedBytes"
    },
    "abi": {
      "$ref": "#/components/schemas/MoveModule"
    }
  }
}