@meshsdk/core 1.5.11-beta.5 → 1.5.11-beta.6

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.
@@ -256,7 +256,6 @@ export declare class MeshTxBuilderCore {
256
256
  private queueInput;
257
257
  private queueMint;
258
258
  private makePlutusScriptSource;
259
- protected removeDuplicateInputs: () => void;
260
259
  private addAllInputs;
261
260
  private addTxIn;
262
261
  private addScriptTxIn;
@@ -15,6 +15,8 @@ export declare class Transaction {
15
15
  private readonly _txInputsBuilder;
16
16
  private readonly _txWithdrawals;
17
17
  constructor(options?: Partial<CreateTxOptions>);
18
+ static attachMetadata(cborTx: string, cborTxMetadata: string, era?: Era): string;
19
+ static deattachMetadata(cborTx: string): string;
18
20
  static maskMetadata(cborTx: string, era?: Era): string;
19
21
  static readMetadata(cborTx: string): string;
20
22
  static writeMetadata(cborTx: string, cborTxMetadata: string, era?: Era): string;
@@ -27,7 +29,7 @@ export declare class Transaction {
27
29
  redeemValue(options: {
28
30
  value: UTxO;
29
31
  script: PlutusScript | UTxO;
30
- datum: Data | UTxO;
32
+ datum?: Data | UTxO;
31
33
  redeemer?: Action;
32
34
  }): Transaction;
33
35
  registerStake(rewardAddress: string): Transaction;
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.11-beta.5",
6
+ "version": "1.5.11-beta.6",
7
7
  "license": "Apache-2.0",
8
8
  "type": "module",
9
9
  "repository": {