Aptos · Schema

PendingTransaction

A transaction waiting in mempool

BlockchainWeb3MoveLayer 1CryptocurrencyNFTSmart ContractsDeFiTransactionsAccountsGraphQLgRPC

Properties

Name Type Description
hash object
sender object
sequence_number object
max_gas_amount object
gas_unit_price object
expiration_timestamp_secs object
payload object
signature object
replay_protection_nonce object
txn_limits_request object
View JSON Schema on GitHub

JSON Schema

PendingTransaction.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/aptos/json-schema/PendingTransaction.json",
  "title": "PendingTransaction",
  "type": "object",
  "description": "A transaction waiting in mempool",
  "required": [
    "hash",
    "sender",
    "sequence_number",
    "max_gas_amount",
    "gas_unit_price",
    "expiration_timestamp_secs",
    "payload"
  ],
  "properties": {
    "hash": {
      "$ref": "#/components/schemas/HashValue"
    },
    "sender": {
      "$ref": "#/components/schemas/Address"
    },
    "sequence_number": {
      "$ref": "#/components/schemas/U64"
    },
    "max_gas_amount": {
      "$ref": "#/components/schemas/U64"
    },
    "gas_unit_price": {
      "$ref": "#/components/schemas/U64"
    },
    "expiration_timestamp_secs": {
      "$ref": "#/components/schemas/U64"
    },
    "payload": {
      "$ref": "#/components/schemas/TransactionPayload"
    },
    "signature": {
      "$ref": "#/components/schemas/TransactionSignature"
    },
    "replay_protection_nonce": {
      "$ref": "#/components/schemas/U64"
    },
    "txn_limits_request": {
      "$ref": "#/components/schemas/UserTxnLimitsRequest"
    }
  }
}