luncconnect 1.0.7 → 1.0.9
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.d.ts +1 -1
- package/build/index.es.js +2 -2
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const CONNECTKIT_VERSION = "1.0.
|
|
1
|
+
export declare const CONNECTKIT_VERSION = "1.0.9";
|
|
2
2
|
export * as Types from './types';
|
|
3
3
|
export { default as getDefaultConfig } from './defaultConfig';
|
|
4
4
|
export { default as getDefaultConnectors } from './defaultConnectors';
|
package/build/index.es.js
CHANGED
|
@@ -2919,7 +2919,7 @@ const walletConfigs = {
|
|
|
2919
2919
|
website: 'https://luncdash.com/',
|
|
2920
2920
|
},
|
|
2921
2921
|
getWalletConnectDeeplink: (uri) => {
|
|
2922
|
-
return `luncdash://
|
|
2922
|
+
return `luncdash://wc?uri=${encodeURIComponent(uri)}`;
|
|
2923
2923
|
},
|
|
2924
2924
|
},
|
|
2925
2925
|
walletConnect: {
|
|
@@ -8367,7 +8367,7 @@ const ConnectModal = ({ theme = 'auto', customTheme = customThemeDefault, lang =
|
|
|
8367
8367
|
return (jsx(Web3ContextProvider, { enabled: isOpen, children: jsx(ConnectKitThemeProvider, { theme: theme, customTheme: customTheme, mode: mode, children: jsxs(Container, { ref: ref, children: [inline && onClose && (jsxs(Fragment, { children: [jsx(Cursor, { ref: cursorRef }), jsx(ButtonContainer, { children: jsx(ConnectKitButton, { customTheme: customTheme, theme: theme, mode: mode }) })] })), jsx(Modal, { demo: { theme: theme, customTheme: customTheme, mode: mode }, onClose: onModalClose , positionInside: inline, open: isOpen, pages: pages, pageId: context.route, onInfo: showInfoButton ? () => context.setRoute(routes.ABOUT) : undefined, onBack: showBackButton ? onBack : undefined })] }) }) }));
|
|
8368
8368
|
};
|
|
8369
8369
|
|
|
8370
|
-
const CONNECTKIT_VERSION = '1.0.
|
|
8370
|
+
const CONNECTKIT_VERSION = '1.0.9';
|
|
8371
8371
|
|
|
8372
8372
|
export { Avatar, Balance, BalanceButton, CONNECTKIT_VERSION, Chain as ChainIcon, ConnectKitButton, ConnectModal as ConnectKitModalDemo, ConnectKitProvider, Context, types as Types, defaultConfig as getDefaultConfig, defaultConnectors as getDefaultConnectors, useIsMounted, useModal, wallets };
|
|
8373
8373
|
//# sourceMappingURL=index.es.js.map
|