Aptos · Schema

DeleteResource

Delete a resource

BlockchainWeb3MoveLayer 1CryptocurrencyNFTSmart ContractsDeFiTransactionsAccountsGraphQLgRPC

Properties

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

JSON Schema

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