Skip to content

Commit

Permalink
v1.4.36-ao.12
Browse files Browse the repository at this point in the history
  • Loading branch information
ppedziwiatr committed Mar 18, 2024
1 parent b4523f6 commit 8505441
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "warp-contracts",
"version": "1.4.36-ao.11",
"version": "1.4.36-ao.12",
"description": "An implementation of the SmartWeave smart contract protocol.",
"types": "./lib/types/index.d.ts",
"main": "./lib/cjs/index.js",
Expand Down
19 changes: 19 additions & 0 deletions src/core/modules/impl/HandlerExecutorFactory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -376,3 +376,22 @@ export interface QuickJsOptions {
interruptCycles?: 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;
}

0 comments on commit 8505441

Please sign in to comment.