@meshsdk/common 1.5.28 → 1.5.30
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.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1316
- package/dist/index.mjs +1 -1189
- package/package.json +6 -3
package/dist/index.d.mts
CHANGED
|
@@ -754,7 +754,7 @@ declare const mMaybeStakingHash: (stakeCredential: string, isScriptCredential?:
|
|
|
754
754
|
* @param isScriptCredential The flag to indicate if the credential is a script credential
|
|
755
755
|
* @returns The Mesh Data public key address object
|
|
756
756
|
*/
|
|
757
|
-
declare const mPubKeyAddress: (bytes: string, stakeCredential?: string
|
|
757
|
+
declare const mPubKeyAddress: (bytes: string, stakeCredential?: string) => Data;
|
|
758
758
|
/**
|
|
759
759
|
* The utility function to create a Mesh Data script address
|
|
760
760
|
* @param bytes The validator hash in hex
|
|
@@ -762,7 +762,7 @@ declare const mPubKeyAddress: (bytes: string, stakeCredential?: string, isScript
|
|
|
762
762
|
* @param isScriptCredential The flag to indicate if the credential is a script credential
|
|
763
763
|
* @returns The Mesh Data script address object
|
|
764
764
|
*/
|
|
765
|
-
declare const mScriptAddress: (bytes: string, stakeCredential?: string
|
|
765
|
+
declare const mScriptAddress: (bytes: string, stakeCredential?: string) => Data;
|
|
766
766
|
|
|
767
767
|
/**
|
|
768
768
|
* The Mesh Data boolean
|
package/dist/index.d.ts
CHANGED
|
@@ -754,7 +754,7 @@ declare const mMaybeStakingHash: (stakeCredential: string, isScriptCredential?:
|
|
|
754
754
|
* @param isScriptCredential The flag to indicate if the credential is a script credential
|
|
755
755
|
* @returns The Mesh Data public key address object
|
|
756
756
|
*/
|
|
757
|
-
declare const mPubKeyAddress: (bytes: string, stakeCredential?: string
|
|
757
|
+
declare const mPubKeyAddress: (bytes: string, stakeCredential?: string) => Data;
|
|
758
758
|
/**
|
|
759
759
|
* The utility function to create a Mesh Data script address
|
|
760
760
|
* @param bytes The validator hash in hex
|
|
@@ -762,7 +762,7 @@ declare const mPubKeyAddress: (bytes: string, stakeCredential?: string, isScript
|
|
|
762
762
|
* @param isScriptCredential The flag to indicate if the credential is a script credential
|
|
763
763
|
* @returns The Mesh Data script address object
|
|
764
764
|
*/
|
|
765
|
-
declare const mScriptAddress: (bytes: string, stakeCredential?: string
|
|
765
|
+
declare const mScriptAddress: (bytes: string, stakeCredential?: string) => Data;
|
|
766
766
|
|
|
767
767
|
/**
|
|
768
768
|
* The Mesh Data boolean
|