@meshsdk/common 1.9.0-beta.73 → 1.9.0-beta.74

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
@@ -1925,7 +1925,7 @@ interface IDeserializer {
1925
1925
 
1926
1926
  interface ISigner {
1927
1927
  signData(payload: string, address?: string): Promise<DataSignature>;
1928
- signTx(unsignedTx: string, partialSign?: boolean): Promise<string>;
1928
+ signTx(unsignedTx: string, partialSign?: boolean, returnFullTx?: boolean): Promise<string>;
1929
1929
  signTxs(unsignedTxs: string[], partialSign?: boolean): Promise<string[]>;
1930
1930
  }
1931
1931
 
package/dist/index.d.ts CHANGED
@@ -1925,7 +1925,7 @@ interface IDeserializer {
1925
1925
 
1926
1926
  interface ISigner {
1927
1927
  signData(payload: string, address?: string): Promise<DataSignature>;
1928
- signTx(unsignedTx: string, partialSign?: boolean): Promise<string>;
1928
+ signTx(unsignedTx: string, partialSign?: boolean, returnFullTx?: boolean): Promise<string>;
1929
1929
  signTxs(unsignedTxs: string[], partialSign?: boolean): Promise<string[]>;
1930
1930
  }
1931
1931
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meshsdk/common",
3
- "version": "1.9.0-beta.73",
3
+ "version": "1.9.0-beta.74",
4
4
  "description": "Contains constants, types and interfaces used across the SDK and different serialization libraries",
5
5
  "main": "./dist/index.cjs",
6
6
  "browser": "./dist/index.js",