@mavrykdynamics/taquito
Version:
High level functionality that builds upon the other packages in the Mavryk Typescript Library Suite.
25 lines (24 loc) • 1.43 kB
TypeScript
import { OperationContentsAndResult, OperationContentsSmartRollupExecuteOutboxMessage } from '@mavrykdynamics/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("@mavrykdynamics/taquito-rpc").OperationResultSmartRollupExecuteOutboxMessage | undefined;
get status(): import("@mavrykdynamics/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("@mavrykdynamics/taquito-rpc").TezosGenericOperationError[] | undefined;
}