import { ApiInterfaceRx } from '@plugnet/api/types'; import { DerivedContractFees } from '../types'; import { Observable } from 'rxjs'; /** * @name fees * @returns An object containing the combined results of the queries for * all relevant contract fees as declared in the substrate chain spec. * @example *
* * ```javascript * api.derive.contracts.fees(([creationFee, transferFee]) => { * console.log(`The fee for creating a new contract on this chain is ${creationFee} units. The fee required to call this contract is ${transferFee} units.`); * }); * ``` */ export declare function fees(api: ApiInterfaceRx): () => Observable;