facinet 2.2.0 → 2.2.1
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/browser.js +2 -2
- package/dist/browser.js.map +2 -2
- package/dist/sdk/Facinet.js +3 -3
- package/dist/sdk/Facinet.js.map +1 -1
- package/dist/sdk.mjs +3 -3
- package/dist/sdk.mjs.map +2 -2
- package/package.json +1 -1
package/dist/browser.js
CHANGED
|
@@ -27563,8 +27563,8 @@ var Facinet = class _Facinet {
|
|
|
27563
27563
|
);
|
|
27564
27564
|
}
|
|
27565
27565
|
}
|
|
27566
|
-
payerAddress =
|
|
27567
|
-
const recipientAddress =
|
|
27566
|
+
payerAddress = payerAddress.toLowerCase();
|
|
27567
|
+
const recipientAddress = params.recipient.toLowerCase();
|
|
27568
27568
|
const facilitator = await this.selectRandomFacilitator();
|
|
27569
27569
|
const amount = BigInt(parseFloat(params.amount) * 1e6);
|
|
27570
27570
|
const validAfter = Math.floor(Date.now() / 1e3) - 60;
|