@taquito/taquito
Version:
High level functionality that builds upon the other packages in the Tezos Typescript Library Suite.
24 lines (23 loc) • 1.28 kB
TypeScript
import { OperationContentsAndResult, OperationContentsIncreasePaidStorage } from '@taquito/rpc';
import { Context } from '../context';
import { Operation } from './operations';
import { FeeConsumingOperation, ForgedBytes, GasConsumingOperation, StorageConsumingOperation } from './types';
/**
*
* @description IncreasePaidStorageOperation provides utility functions to fetch a new operation of kind increase_paid_storage
*
*/
export declare class IncreasePaidStorageOperation extends Operation implements GasConsumingOperation, StorageConsumingOperation, FeeConsumingOperation {
private readonly params;
readonly source: string;
constructor(hash: string, params: OperationContentsIncreasePaidStorage, source: string, raw: ForgedBytes, results: OperationContentsAndResult[], context: Context);
get operationResults(): import("@taquito/rpc").OperationResultIncreasePaidStorage | undefined;
get status(): "applied" | "failed" | "skipped" | "backtracked" | "unknown";
get fee(): number;
get gasLimit(): number;
get storageLimit(): number;
get errors(): import("@taquito/rpc").TezosGenericOperationError[] | undefined;
get consumedMilliGas(): string | undefined;
get amount(): string;
get destination(): string;
}