Aptos · Schema

IndexedSignature

BlockchainWeb3MoveLayer 1CryptocurrencyNFTSmart ContractsDeFiTransactionsAccountsGraphQLgRPC

Properties

Name Type Description
index integer
signature object
View JSON Schema on GitHub

JSON Schema

IndexedSignature.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/aptos/json-schema/IndexedSignature.json",
  "title": "IndexedSignature",
  "type": "object",
  "required": [
    "index",
    "signature"
  ],
  "properties": {
    "index": {
      "type": "integer",
      "format": "uint8"
    },
    "signature": {
      "$ref": "#/components/schemas/Signature"
    }
  }
}