@dorafactory/maci-sdk 0.1.3-pre.43 → 0.1.3-pre.44
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.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/libs/maci/maci.ts +4 -1
package/dist/index.js
CHANGED
|
@@ -8215,7 +8215,10 @@ var MACI = class {
|
|
|
8215
8215
|
}));
|
|
8216
8216
|
if (gasStation && typeof fee !== "object") {
|
|
8217
8217
|
const client = await this.contract.contractClient({ signer });
|
|
8218
|
-
const encPubKeysBigInt = payload.map((p) =>
|
|
8218
|
+
const encPubKeysBigInt = payload.map((p) => ({
|
|
8219
|
+
x: p.encPubkeys[0],
|
|
8220
|
+
y: p.encPubkeys[1]
|
|
8221
|
+
}));
|
|
8219
8222
|
const messagesBigInt = payload.map((p) => ({
|
|
8220
8223
|
data: p.msg
|
|
8221
8224
|
}));
|