@meshsdk/common 1.7.0 → 1.7.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.cts CHANGED
@@ -324,6 +324,7 @@ type SimpleScriptSourceInfo = {
324
324
  txHash: string;
325
325
  txIndex: number;
326
326
  simpleScriptHash?: string;
327
+ scriptSize?: string;
327
328
  };
328
329
 
329
330
  type Certificate = {
@@ -457,13 +458,7 @@ type SimpleScriptTxIn = {
457
458
  simpleScriptTxIn: SimpleScriptTxInParameter;
458
459
  };
459
460
  type SimpleScriptTxInParameter = {
460
- scriptSource?: {
461
- type: "Provided";
462
- script: string;
463
- } | {
464
- type: "Inline";
465
- txInInfo: SimpleScriptSourceInfo;
466
- };
461
+ scriptSource?: SimpleScriptSourceInfo;
467
462
  };
468
463
  type ScriptTxInParameter = {
469
464
  scriptSource?: ScriptSource;
package/dist/index.d.ts CHANGED
@@ -324,6 +324,7 @@ type SimpleScriptSourceInfo = {
324
324
  txHash: string;
325
325
  txIndex: number;
326
326
  simpleScriptHash?: string;
327
+ scriptSize?: string;
327
328
  };
328
329
 
329
330
  type Certificate = {
@@ -457,13 +458,7 @@ type SimpleScriptTxIn = {
457
458
  simpleScriptTxIn: SimpleScriptTxInParameter;
458
459
  };
459
460
  type SimpleScriptTxInParameter = {
460
- scriptSource?: {
461
- type: "Provided";
462
- script: string;
463
- } | {
464
- type: "Inline";
465
- txInInfo: SimpleScriptSourceInfo;
466
- };
461
+ scriptSource?: SimpleScriptSourceInfo;
467
462
  };
468
463
  type ScriptTxInParameter = {
469
464
  scriptSource?: ScriptSource;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meshsdk/common",
3
- "version": "1.7.0",
3
+ "version": "1.7.1",
4
4
  "description": "",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",