@fewcha/aptos
Version:
19 lines (18 loc) • 558 B
text/typescript
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
export const $TransactionsBatchSingleSubmissionFailure = {
description: `Information telling which batch submission transactions failed`,
properties: {
error: {
type: 'AptosError',
isRequired: true,
},
transaction_index: {
type: 'number',
description: `The index of which transaction failed, same as submission order`,
isRequired: true,
format: 'uint64',
},
},
} as const;