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

This commit is contained in:
ppedziwiatr
2024-03-18 13:11:31 +01:00
parent b4523f6979
commit 850544121d
2 changed files with 20 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "warp-contracts", "name": "warp-contracts",
"version": "1.4.36-ao.11", "version": "1.4.36-ao.12",
"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

@@ -376,3 +376,22 @@ export interface QuickJsOptions {
interruptCycles?: number; interruptCycles?: number;
timeout?: number; timeout?: number;
} }
export interface QuickJsPluginMessage {
Cron: boolean;
Data: string | Buffer;
Epoch: number;
From: string;
Id: string | undefined;
Nonce: number;
Owner: string;
Signature: string | undefined;
Tags: {
[key: string]: string | undefined;
};
Target: string;
Timestamp: string;
['Block-Height']: string;
['Forwarded-By']: string;
['Hash-Chain']: string;
}