Aptos · Schema

PublicKey_Secp256k1Ecdsa

BlockchainWeb3MoveLayer 1CryptocurrencyNFTSmart ContractsDeFiTransactionsAccountsGraphQLgRPC
View JSON Schema on GitHub

JSON Schema

PublicKey_Secp256k1Ecdsa.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/aptos/json-schema/PublicKey_Secp256k1Ecdsa.json",
  "title": "PublicKey_Secp256k1Ecdsa",
  "allOf": [
    {
      "type": "object",
      "required": [
        "type"
      ],
      "properties": {
        "type": {
          "type": "string",
          "enum": [
            "secp256k1_ecdsa"
          ],
          "example": "secp256k1_ecdsa"
        }
      }
    },
    {
      "$ref": "#/components/schemas/Secp256k1Ecdsa"
    }
  ]
}