@taquito/taquito
Version:
High level functionality that builds upon the other packages in the Tezos Typescript Library Suite.
25 lines (24 loc) • 1.37 kB
TypeScript
import { OperationContentsAndResult, OperationContentsSmartRollupExecuteOutboxMessage } from '@taquito/rpc';
import { Context } from '../context';
import { Operation } from './operations';
import { FeeConsumingOperation, ForgedBytes, GasConsumingOperation, StorageConsumingOperation } from './types';
/**
*
* @description SmartRollupExecuteOutboxMessage Operation provides utility to fetch properties for Operation of kind SmartRollupExecuteOutboxMessage
*
*/
export declare class SmartRollupExecuteOutboxMessageOperation extends Operation implements GasConsumingOperation, StorageConsumingOperation, FeeConsumingOperation {
private readonly params;
readonly source: string;
constructor(hash: string, params: OperationContentsSmartRollupExecuteOutboxMessage, source: string, raw: ForgedBytes, results: OperationContentsAndResult[], context: Context);
get operationResults(): import("@taquito/rpc").OperationResultSmartRollupExecuteOutboxMessage | undefined;
get status(): import("@taquito/rpc").OperationResultStatusEnum | "unknown";
get rollup(): string;
get cementedCommitment(): string;
get outputProof(): string;
get fee(): number;
get gasLimit(): number;
get storageLimit(): number;
get consumedMilliGas(): string | undefined;
get errors(): import("@taquito/rpc").TezosGenericOperationError[] | undefined;
}