@meshsdk/core 1.5.14 → 1.5.15
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/core.cjs +8 -1
- package/dist/core.js +2652 -1747
- package/dist/transaction/meshTxBuilder/meshTxBuilderCore.d.ts +1 -1
- package/package.json +2 -1
|
@@ -314,6 +314,6 @@ export declare class MeshTxBuilderCore {
|
|
|
314
314
|
private addAllRequiredSignatures;
|
|
315
315
|
private addAllMetadata;
|
|
316
316
|
protected updateRedeemer: (meshTxBuilderBody: MeshTxBuilderBody, txEvaluation: Omit<Action, 'data'>[]) => void;
|
|
317
|
-
protected castRawDataToJsonString: (rawData: object | string) =>
|
|
317
|
+
protected castRawDataToJsonString: (rawData: object | string) => any;
|
|
318
318
|
protected castDataToPlutusData: ({ type, content }: BuilderData) => csl.PlutusData;
|
|
319
319
|
}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Rapidly build Web3 apps on the Cardano Blockchain.",
|
|
4
4
|
"homepage": "https://meshjs.dev",
|
|
5
5
|
"author": "MeshJS",
|
|
6
|
-
"version": "1.5.
|
|
6
|
+
"version": "1.5.15",
|
|
7
7
|
"license": "Apache-2.0",
|
|
8
8
|
"type": "module",
|
|
9
9
|
"repository": {
|
|
@@ -75,6 +75,7 @@
|
|
|
75
75
|
"@emurgo/cip14-js": "3.0.1",
|
|
76
76
|
"axios": "1.6.3",
|
|
77
77
|
"bip39": "3.0.4",
|
|
78
|
+
"json-bigint": "^1.0.0",
|
|
78
79
|
"nanoid": "3.3.4",
|
|
79
80
|
"zod": "3.22.4"
|
|
80
81
|
}
|