near-api-js - v7.0.4
    Preparing search index...

    Type Alias ReceiptValidationError

    ReceiptValidationError:
        | { InvalidPredecessorId: { account_id: string } }
        | { InvalidReceiverId: { account_id: string } }
        | { InvalidSignerId: { account_id: string } }
        | { InvalidDataReceiverId: { account_id: string } }
        | { ReturnedValueLengthExceeded: { length: number; limit: number } }
        | {
            NumberInputDataDependenciesExceeded: {
                limit: number;
                number_of_input_data_dependencies: number;
            };
        }
        | { ActionsValidation: ActionsValidationError }
        | { ReceiptSizeExceeded: { limit: number; size: number } }
        | { InvalidRefundTo: { account_id: string } }

    Describes the error for validating a receipt.