Aptos · Schema

TransactionSummary

BlockchainWeb3MoveLayer 1CryptocurrencyNFTSmart ContractsDeFiTransactionsAccountsGraphQLgRPC

Properties

Name Type Description
sender object
version object
transaction_hash object
replay_protector object
View JSON Schema on GitHub

JSON Schema

TransactionSummary.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/aptos/json-schema/TransactionSummary.json",
  "title": "TransactionSummary",
  "type": "object",
  "required": [
    "sender",
    "version",
    "transaction_hash",
    "replay_protector"
  ],
  "properties": {
    "sender": {
      "$ref": "#/components/schemas/Address"
    },
    "version": {
      "$ref": "#/components/schemas/U64"
    },
    "transaction_hash": {
      "$ref": "#/components/schemas/HashValue"
    },
    "replay_protector": {
      "$ref": "#/components/schemas/ReplayProtector"
    }
  }
}