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

    Type Alias WitnessConfigView

    Configuration specific to ChunkStateWitness.

    type WitnessConfigView = {
        combined_transactions_size_limit?: number;
        main_storage_proof_size_soft_limit?: number;
        new_transactions_validation_state_size_soft_limit?: number;
    }
    Index

    Properties

    combined_transactions_size_limit?: number

    Maximum size of transactions contained inside ChunkStateWitness.

    A witness contains transactions from both the previous chunk and the current one. This parameter limits the sum of sizes of transactions from both of those chunks.

    main_storage_proof_size_soft_limit?: number

    Size limit for storage proof generated while executing receipts in a chunk. After this limit is reached we defer execution of any new receipts.

    new_transactions_validation_state_size_soft_limit?: number

    Soft size limit of storage proof used to validate new transactions in ChunkStateWitness.