aptos
Version:
18 lines (14 loc) • 395 B
text/typescript
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { AptosError } from './AptosError';
/**
* Information telling which batch submission transactions failed
*/
export type TransactionsBatchSingleSubmissionFailure = {
error: AptosError;
/**
* The index of which transaction failed, same as submission order
*/
transaction_index: number;
};