Aptos · Schema

Ed25519Signature

A single Ed25519 signature

BlockchainWeb3MoveLayer 1CryptocurrencyNFTSmart ContractsDeFiTransactionsAccountsGraphQLgRPC

Properties

Name Type Description
public_key object
signature object
View JSON Schema on GitHub

JSON Schema

Ed25519Signature.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/aptos/json-schema/Ed25519Signature.json",
  "title": "Ed25519Signature",
  "type": "object",
  "description": "A single Ed25519 signature",
  "required": [
    "public_key",
    "signature"
  ],
  "properties": {
    "public_key": {
      "$ref": "#/components/schemas/HexEncodedBytes"
    },
    "signature": {
      "$ref": "#/components/schemas/HexEncodedBytes"
    }
  }
}