Taquito TypeDocs
    Preparing search index...

    Interface IncreasePaidStorageParams

    Parameters for the increasePaidStorage method

    interface IncreasePaidStorageParams {
        amount: number;
        destination: string;
        fee?: number;
        gasLimit?: number;
        source?: string;
        storageLimit?: number;
    }
    Index

    Properties

    amount: number

    Additional storage bytes to pre-pay for the target contract.

    Must be a positive integer. Burn cost is amount * cost_per_byte.

    destination: string

    Destination contract address.

    fee?: number

    Fee in mutez.

    gasLimit?: number

    Gas limit.

    source?: string

    Operation source. Defaults to the active signer pkh.

    storageLimit?: number

    Storage limit.