Aptos · Schema

ExportedAggregateSignature

A more API-friendly representation of the on-chain `aptos_types::aggregate_signature::AggregateSignature`.

BlockchainWeb3MoveLayer 1CryptocurrencyNFTSmart ContractsDeFiTransactionsAccountsGraphQLgRPC

Properties

Name Type Description
signer_indices array
sig object
View JSON Schema on GitHub

JSON Schema

ExportedAggregateSignature.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/aptos/json-schema/ExportedAggregateSignature.json",
  "title": "ExportedAggregateSignature",
  "type": "object",
  "description": "A more API-friendly representation of the on-chain `aptos_types::aggregate_signature::AggregateSignature`.",
  "required": [
    "signer_indices"
  ],
  "properties": {
    "signer_indices": {
      "type": "array",
      "items": {
        "type": "integer",
        "format": "uint64"
      }
    },
    "sig": {
      "$ref": "#/components/schemas/HexEncodedBytes"
    }
  }
}