@rango-dev/provider-walletconnect-2 0.29.1-next.1 → 0.29.1-next.3
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/helpers.d.ts +2 -2
- package/dist/index.js +159 -1
- package/dist/index.js.map +4 -4
- package/dist/provider-walletconnect-2.build.json +1 -1
- package/package.json +5 -5
- package/src/helpers.ts +5 -3
- package/src/wc-types.d.ts +31 -0
package/dist/helpers.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
+
import type { WalletConnectModal as WalletConnectModalType } from './wc-types.js';
|
|
1
2
|
import type { WalletState } from '@rango-dev/wallets-shared';
|
|
2
3
|
import type { ProposalTypes } from '@walletconnect/types';
|
|
3
4
|
import type { BlockchainMeta } from 'rango-types';
|
|
4
|
-
import { WalletConnectModal } from '@walletconnect/modal';
|
|
5
5
|
import { NAMESPACES } from './constants.js';
|
|
6
6
|
export declare function createModalInstance(projectId: string): void;
|
|
7
|
-
export declare function getModal():
|
|
7
|
+
export declare function getModal(): WalletConnectModalType;
|
|
8
8
|
type FinalNamespaces = {
|
|
9
9
|
[key in NAMESPACES]?: ProposalTypes.BaseRequiredNamespace;
|
|
10
10
|
};
|