mmn-client-js 1.0.12 → 1.0.13
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.ts +9 -7
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7948,8 +7948,8 @@ class MmnClient {
|
|
|
7948
7948
|
text_data: params.textData || '',
|
|
7949
7949
|
nonce: params.nonce,
|
|
7950
7950
|
extra_info: JSON.stringify(params.extraInfo) || '',
|
|
7951
|
-
zk_proof: params.zkProof,
|
|
7952
|
-
zk_pub: params.zkPub,
|
|
7951
|
+
zk_proof: params.zkProof || '',
|
|
7952
|
+
zk_pub: params.zkPub || '',
|
|
7953
7953
|
};
|
|
7954
7954
|
const signature = this.signTransaction(txMsg, params.privateKey);
|
|
7955
7955
|
return {
|