v1.4.36-ao.11
Some checks failed
CI / build (push) Has been cancelled

This commit is contained in:
ppedziwiatr
2024-03-18 12:58:56 +01:00
parent eae965365a
commit b4523f6979
2 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "warp-contracts", "name": "warp-contracts",
"version": "1.4.36-ao.10", "version": "1.4.36-ao.11",
"description": "An implementation of the SmartWeave smart contract protocol.", "description": "An implementation of the SmartWeave smart contract protocol.",
"types": "./lib/types/index.d.ts", "types": "./lib/types/index.d.ts",
"main": "./lib/cjs/index.js", "main": "./lib/cjs/index.js",

View File

@@ -360,14 +360,14 @@ export interface VM2PluginInput {
contractDefinition: ContractDefinition<unknown>; contractDefinition: ContractDefinition<unknown>;
} }
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 { export interface QuickJsPluginInput {
contractSource: string; contractSource: string;
evaluationOptions: EvaluationOptions; evaluationOptions: EvaluationOptions;
swGlobal: SmartWeaveGlobal; swGlobal: SmartWeaveGlobal;
contractDefinition: ContractDefinition<unknown>; contractDefinition: ContractDefinition<unknown>;
binaryType: BinaryType; binaryType: QuickJsBinaryType;
} }
export interface QuickJsOptions { export interface QuickJsOptions {