Avalanche · Schema

SubnetOwnershipInfo

BlockchainWeb3AvalancheNFTDeFiCross-Chain

Properties

Name Type Description
locktime number Locktime in seconds after which Subnet owners can control this Subnet.
threshold number Minimum number of signatures required to sign the Subnet update transactions.
addresses array Addresses that are eligible to sign the Subnet update transactions.
View JSON Schema on GitHub

JSON Schema

SubnetOwnershipInfo.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/avalanche/main/json-schema/SubnetOwnershipInfo.json",
  "title": "SubnetOwnershipInfo",
  "type": "object",
  "properties": {
    "locktime": {
      "type": "number",
      "description": "Locktime in seconds after which Subnet owners can control this Subnet.",
      "examples": [
        0
      ]
    },
    "threshold": {
      "type": "number",
      "description": "Minimum number of signatures required to sign the Subnet update transactions.",
      "examples": [
        1
      ]
    },
    "addresses": {
      "description": "Addresses that are eligible to sign the Subnet update transactions.",
      "examples": [
        [
          "avax1qm2a25eytsrj235hxg6jc0mwk99tss64eqevsw"
        ]
      ],
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "locktime",
    "threshold",
    "addresses"
  ]
}