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

    Type Alias Fee

    Costs associated with an object that can only be sent over the network (and executed by the receiver). NOTE: send_sir or send_not_sir fees are usually burned when the item is being created. And execution fee is burned when the item is being executed.

    type Fee = {
        execution: NearGas;
        send_not_sir: NearGas;
        send_sir: NearGas;
    }
    Index

    Properties

    execution: NearGas

    Fee for executing the object.

    send_not_sir: NearGas

    Fee for sending an object potentially across the shards.

    send_sir: NearGas

    Fee for sending an object from the sender to itself, guaranteeing that it does not leave the shard.