Aptos · Schema

TransactionsBatchSingleSubmissionFailure

Information telling which batch submission transactions failed

BlockchainWeb3MoveLayer 1CryptocurrencyNFTSmart ContractsDeFiTransactionsAccountsGraphQLgRPC

Properties

Name Type Description
error object
transaction_index integer The index of which transaction failed, same as submission order
View JSON Schema on GitHub

JSON Schema

TransactionsBatchSingleSubmissionFailure.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/aptos/json-schema/TransactionsBatchSingleSubmissionFailure.json",
  "title": "TransactionsBatchSingleSubmissionFailure",
  "type": "object",
  "description": "Information telling which batch submission transactions failed",
  "required": [
    "error",
    "transaction_index"
  ],
  "properties": {
    "error": {
      "$ref": "#/components/schemas/AptosError"
    },
    "transaction_index": {
      "type": "integer",
      "format": "uint64",
      "description": "The index of which transaction failed, same as submission order"
    }
  }
}