Aptos · Schema

DeleteModule

Delete a module

BlockchainWeb3MoveLayer 1CryptocurrencyNFTSmart ContractsDeFiTransactionsAccountsGraphQLgRPC

Properties

Name Type Description
address object
state_key_hash string State key hash
module object
View JSON Schema on GitHub

JSON Schema

DeleteModule.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/aptos/json-schema/DeleteModule.json",
  "title": "DeleteModule",
  "type": "object",
  "description": "Delete a module",
  "required": [
    "address",
    "state_key_hash",
    "module"
  ],
  "properties": {
    "address": {
      "$ref": "#/components/schemas/Address"
    },
    "state_key_hash": {
      "type": "string",
      "description": "State key hash"
    },
    "module": {
      "$ref": "#/components/schemas/MoveModuleId"
    }
  }
}