From b4523f6979d601fd02554d353a711d7ceb27f9da Mon Sep 17 00:00:00 2001 From: ppedziwiatr Date: Mon, 18 Mar 2024 12:58:56 +0100 Subject: [PATCH] v1.4.36-ao.11 --- package.json | 2 +- src/core/modules/impl/HandlerExecutorFactory.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 75d5373..b348f00 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "warp-contracts", - "version": "1.4.36-ao.10", + "version": "1.4.36-ao.11", "description": "An implementation of the SmartWeave smart contract protocol.", "types": "./lib/types/index.d.ts", "main": "./lib/cjs/index.js", diff --git a/src/core/modules/impl/HandlerExecutorFactory.ts b/src/core/modules/impl/HandlerExecutorFactory.ts index ef715f0..5f6c94f 100644 --- a/src/core/modules/impl/HandlerExecutorFactory.ts +++ b/src/core/modules/impl/HandlerExecutorFactory.ts @@ -360,14 +360,14 @@ export interface VM2PluginInput { contractDefinition: ContractDefinition; } -export type BinaryType = 'release_sync' | 'release_async' | 'debug_sync' | 'debug_async'; +export type QuickJsBinaryType = 'release_sync' | 'release_async' | 'debug_sync' | 'debug_async'; export interface QuickJsPluginInput { contractSource: string; evaluationOptions: EvaluationOptions; swGlobal: SmartWeaveGlobal; contractDefinition: ContractDefinition; - binaryType: BinaryType; + binaryType: QuickJsBinaryType; } export interface QuickJsOptions {