@hardkas/localnet 0.2.2-alpha → 0.2.2-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +3 -0
- package/package.json +5 -5
package/dist/index.d.ts
CHANGED
|
@@ -210,6 +210,7 @@ options?: {
|
|
|
210
210
|
interface StoredSimulatedTxReceipt extends HardkasArtifactBase {
|
|
211
211
|
schema: typeof ARTIFACT_SCHEMAS.TX_RECEIPT;
|
|
212
212
|
version: "1.0.0-alpha";
|
|
213
|
+
hashVersion?: number | string;
|
|
213
214
|
txId: string;
|
|
214
215
|
status: "confirmed" | "failed";
|
|
215
216
|
mode: ExecutionMode;
|
|
@@ -259,6 +260,8 @@ type StoredTraceEvent = {
|
|
|
259
260
|
};
|
|
260
261
|
interface StoredSimulatedTxTrace extends HardkasArtifactBase {
|
|
261
262
|
readonly schema: typeof ARTIFACT_SCHEMAS.TX_TRACE;
|
|
263
|
+
readonly version: string;
|
|
264
|
+
readonly hashVersion?: number | string;
|
|
262
265
|
readonly txId: string;
|
|
263
266
|
readonly mode: ExecutionMode;
|
|
264
267
|
readonly networkId: NetworkId;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hardkas/localnet",
|
|
3
|
-
"version": "0.2.2-alpha",
|
|
3
|
+
"version": "0.2.2-alpha.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
".": "./dist/index.js"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@hardkas/artifacts": "0.2.2-alpha",
|
|
12
|
-
"@hardkas/
|
|
13
|
-
"@hardkas/
|
|
14
|
-
"@hardkas/
|
|
11
|
+
"@hardkas/artifacts": "0.2.2-alpha.1",
|
|
12
|
+
"@hardkas/core": "0.2.2-alpha.1",
|
|
13
|
+
"@hardkas/query": "0.2.2-alpha.1",
|
|
14
|
+
"@hardkas/tx-builder": "0.2.2-alpha.1"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"tsup": "^8.3.5",
|