@txnlab/use-wallet 3.9.0 → 3.10.0
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.cjs +18 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +21 -1
- package/dist/index.d.ts +21 -1
- package/dist/index.js +16 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -3287,7 +3287,8 @@ __export(src_exports, {
|
|
|
3287
3287
|
WalletId: () => WalletId,
|
|
3288
3288
|
WalletManager: () => WalletManager,
|
|
3289
3289
|
defaultState: () => defaultState,
|
|
3290
|
-
isAVMWebProviderSDKError: () => isAVMWebProviderSDKError
|
|
3290
|
+
isAVMWebProviderSDKError: () => isAVMWebProviderSDKError,
|
|
3291
|
+
webpackFallback: () => webpackFallback
|
|
3291
3292
|
});
|
|
3292
3293
|
module.exports = __toCommonJS(src_exports);
|
|
3293
3294
|
|
|
@@ -6568,6 +6569,20 @@ var WalletManager = class {
|
|
|
6568
6569
|
return this.activeWallet.transactionSigner;
|
|
6569
6570
|
}
|
|
6570
6571
|
};
|
|
6572
|
+
|
|
6573
|
+
// src/webpack.ts
|
|
6574
|
+
var webpackFallback = {
|
|
6575
|
+
"@agoralabs-sh/avm-web-provider": false,
|
|
6576
|
+
"@algorandfoundation/liquid-auth-use-wallet-client": false,
|
|
6577
|
+
"@blockshake/defly-connect": false,
|
|
6578
|
+
"@magic-ext/algorand": false,
|
|
6579
|
+
"@perawallet/connect": false,
|
|
6580
|
+
"@perawallet/connect-beta": false,
|
|
6581
|
+
"@walletconnect/modal": false,
|
|
6582
|
+
"@walletconnect/sign-client": false,
|
|
6583
|
+
"lute-connect": false,
|
|
6584
|
+
"magic-sdk": false
|
|
6585
|
+
};
|
|
6571
6586
|
// Annotate the CommonJS export names for ESM import in node:
|
|
6572
6587
|
0 && (module.exports = {
|
|
6573
6588
|
BaseWallet,
|
|
@@ -6592,6 +6607,7 @@ var WalletManager = class {
|
|
|
6592
6607
|
WalletId,
|
|
6593
6608
|
WalletManager,
|
|
6594
6609
|
defaultState,
|
|
6595
|
-
isAVMWebProviderSDKError
|
|
6610
|
+
isAVMWebProviderSDKError,
|
|
6611
|
+
webpackFallback
|
|
6596
6612
|
});
|
|
6597
6613
|
//# sourceMappingURL=index.cjs.map
|