Variable $TransactionsBatchSingleSubmissionFailureConst

$TransactionsBatchSingleSubmissionFailure: {
    description: "Information telling which batch submission transactions failed";
    properties: {
        error: {
            isRequired: true;
            type: "AptosError";
        };
        transaction_index: {
            description: "The index of which transaction failed, same as submission order";
            format: "uint64";
            isRequired: true;
            type: "number";
        };
    };
} = ...

Type declaration

  • description: "Information telling which batch submission transactions failed"
  • properties: {
        error: {
            isRequired: true;
            type: "AptosError";
        };
        transaction_index: {
            description: "The index of which transaction failed, same as submission order";
            format: "uint64";
            isRequired: true;
            type: "number";
        };
    }
    • error: {
          isRequired: true;
          type: "AptosError";
      }
      • isRequired: true
      • type: "AptosError"
    • transaction_index: {
          description: "The index of which transaction failed, same as submission order";
          format: "uint64";
          isRequired: true;
          type: "number";
      }
      • description: "The index of which transaction failed, same as submission order"
      • format: "uint64"
      • isRequired: true
      • type: "number"

Generated using TypeDoc