@daimo/pay 1.10.0 → 1.10.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/build/index.js +5 -4
- package/build/index.js.map +1 -1
- package/package.json +3 -3
package/build/index.js
CHANGED
|
@@ -22,7 +22,7 @@ import { VersionedTransaction } from '@solana/web3.js';
|
|
|
22
22
|
import { normalize } from 'viem/ens';
|
|
23
23
|
|
|
24
24
|
var name = "@daimo/pay";
|
|
25
|
-
var version = "1.10.
|
|
25
|
+
var version = "1.10.1";
|
|
26
26
|
var author = "Daimo";
|
|
27
27
|
var homepage = "https://pay.daimo.com";
|
|
28
28
|
var license = "BSD-2-Clause license";
|
|
@@ -61,7 +61,7 @@ var keywords = [
|
|
|
61
61
|
"crypto"
|
|
62
62
|
];
|
|
63
63
|
var dependencies = {
|
|
64
|
-
"@daimo/pay-common": "1.10.
|
|
64
|
+
"@daimo/pay-common": "1.10.1",
|
|
65
65
|
"@rollup/plugin-typescript": "^12.1.2",
|
|
66
66
|
"@solana/wallet-adapter-base": "^0.9.23",
|
|
67
67
|
"@solana/wallet-adapter-react": "^0.15.35",
|
|
@@ -13598,7 +13598,8 @@ async function promptWorldcoinPayment(order, trpc) {
|
|
|
13598
13598
|
// Dynamically import @worldcoin/minikit-js to avoid bundling it for
|
|
13599
13599
|
// developers who don't use World Mini App features, as it's an optional
|
|
13600
13600
|
// peer dependency.
|
|
13601
|
-
const { MiniKit, Tokens } = await import(
|
|
13601
|
+
const { MiniKit, Tokens } = await import(
|
|
13602
|
+
/* webpackIgnore: true */ '@worldcoin/minikit-js');
|
|
13602
13603
|
if (!MiniKit.isInstalled()) {
|
|
13603
13604
|
console.error("[WORLD] MiniKit is not installed. Please install @worldcoin/minikit-js to use this feature.");
|
|
13604
13605
|
return null;
|
|
@@ -13658,7 +13659,7 @@ function WorldPayButtonCustom(props) {
|
|
|
13658
13659
|
// Dynamically import @worldcoin/minikit-js to avoid bundling it for
|
|
13659
13660
|
// developers who don't use World Mini App features, as it's an optional
|
|
13660
13661
|
// peer dependency.
|
|
13661
|
-
import('@worldcoin/minikit-js')
|
|
13662
|
+
import(/* webpackIgnore: true */ '@worldcoin/minikit-js')
|
|
13662
13663
|
.then(({ MiniKit }) => {
|
|
13663
13664
|
if (MiniKit.isInstalled()) {
|
|
13664
13665
|
setIsMiniKitReady(true);
|