UNPKG

@taquito/taquito

Version:

High level functionality that builds upon the other packages in the Tezos Typescript Library Suite.

23 lines (22 loc) 1.24 kB
import { OperationContentsAndResult, OperationContentsUpdateConsensusKey } from '@taquito/rpc'; import { Context } from '../context'; import { Operation } from './operations'; import { FeeConsumingOperation, ForgedBytes, GasConsumingOperation, StorageConsumingOperation } from './types'; /** * * @description UpdateConsensusKeyOperation provides utility to fetch properties for Operation of kind UpdateConsensusKey * */ export declare class UpdateConsensusKeyOperation extends Operation implements GasConsumingOperation, StorageConsumingOperation, FeeConsumingOperation { private readonly params; readonly source: string; constructor(hash: string, params: OperationContentsUpdateConsensusKey, source: string, raw: ForgedBytes, results: OperationContentsAndResult[], context: Context); get operationResults(): import("@taquito/rpc").OperationResultUpdateConsensusKey | undefined; get status(): import("@taquito/rpc").OperationResultStatusEnum | "unknown"; get fee(): number; get gasLimit(): number; get storageLimit(): number; get pk(): string; get consumedMilliGas(): string | undefined; get errors(): import("@taquito/rpc").TezosGenericOperationError[] | undefined; }