@funkit/connect 1.2.1 → 1.2.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/CHANGELOG.md +19 -0
- package/dist/components/ProfileDetails/FunProfileViews/Settings/Settings.d.ts +1 -2
- package/dist/config/getDefaultConfig.d.ts +32 -0
- package/dist/index.js +194 -198
- package/dist/klaytn-TJOHMGUS.js +6 -0
- package/dist/manta-JIF2AIAW.js +6 -0
- package/dist/mantle-RXIQTLNV.js +6 -0
- package/dist/wallets/walletConnectors/bifrostWallet/bifrostWallet.js +2 -2
- package/dist/wallets/walletConnectors/bitgetWallet/bitgetWallet.js +2 -2
- package/dist/wallets/walletConnectors/bybitWallet/bybitWallet.js +2 -2
- package/dist/wallets/walletConnectors/{chunk-JRABHUUZ.js → chunk-MD5OPFAT.js} +1 -1
- package/dist/wallets/walletConnectors/clvWallet/clvWallet.js +2 -2
- package/dist/wallets/walletConnectors/coin98Wallet/coin98Wallet.js +2 -2
- package/dist/wallets/walletConnectors/coreWallet/coreWallet.js +2 -2
- package/dist/wallets/walletConnectors/foxWallet/foxWallet.js +2 -2
- package/dist/wallets/walletConnectors/frontierWallet/frontierWallet.js +2 -2
- package/dist/wallets/walletConnectors/gateWallet/gateWallet.js +2 -2
- package/dist/wallets/walletConnectors/index.js +70 -70
- package/dist/wallets/walletConnectors/metaMaskWallet/metaMaskWallet.js +2 -2
- package/dist/wallets/walletConnectors/okxWallet/okxWallet.js +2 -2
- package/dist/wallets/walletConnectors/rainbowWallet/rainbowWallet.js +2 -2
- package/dist/wallets/walletConnectors/roninWallet/roninWallet.js +2 -2
- package/dist/wallets/walletConnectors/safepalWallet/safepalWallet.js +2 -2
- package/dist/wallets/walletConnectors/subWallet/subWallet.js +2 -2
- package/dist/wallets/walletConnectors/tokenPocketWallet/tokenPocketWallet.js +2 -2
- package/dist/wallets/walletConnectors/tokenaryWallet/tokenaryWallet.js +1 -1
- package/dist/wallets/walletConnectors/trustWallet/trustWallet.js +2 -2
- package/dist/wallets/walletConnectors/zerionWallet/zerionWallet.js +2 -2
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @funkit/connect
|
|
2
2
|
|
|
3
|
+
## 1.2.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- af9ce33: chore: bump mesh sdk deps
|
|
8
|
+
|
|
9
|
+
## 1.2.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 7c54042: fix: support checking against unsupported chains
|
|
14
|
+
- 6c8d34c: feat: add mantle chain support for checkouts
|
|
15
|
+
- c1b9bcc: feat: new logout option from account home page
|
|
16
|
+
- e092c29: fix: development issue where browser detection would throw an error if `navigator.userAgent` was unavailable in the browser
|
|
17
|
+
- Updated dependencies [7c54042]
|
|
18
|
+
- Updated dependencies [6c8d34c]
|
|
19
|
+
- @funkit/core@1.0.16
|
|
20
|
+
- @funkit/wagmi-tools@2.0.1
|
|
21
|
+
|
|
3
22
|
## 1.2.1
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
|
@@ -3729,6 +3729,38 @@ export declare const getDefaultChains: () => ({
|
|
|
3729
3729
|
};
|
|
3730
3730
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3731
3731
|
readonly network: "zksync-era";
|
|
3732
|
+
} | {
|
|
3733
|
+
blockExplorers: {
|
|
3734
|
+
readonly default: {
|
|
3735
|
+
readonly name: "Mantle Explorer";
|
|
3736
|
+
readonly url: "https://explorer.mantle.xyz";
|
|
3737
|
+
readonly apiUrl: "https://explorer.mantle.xyz/api";
|
|
3738
|
+
};
|
|
3739
|
+
};
|
|
3740
|
+
contracts: {
|
|
3741
|
+
readonly multicall3: {
|
|
3742
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
3743
|
+
readonly blockCreated: 304717;
|
|
3744
|
+
};
|
|
3745
|
+
};
|
|
3746
|
+
id: 5000;
|
|
3747
|
+
name: "Mantle";
|
|
3748
|
+
nativeCurrency: {
|
|
3749
|
+
readonly decimals: 18;
|
|
3750
|
+
readonly name: "MNT";
|
|
3751
|
+
readonly symbol: "MNT";
|
|
3752
|
+
};
|
|
3753
|
+
rpcUrls: {
|
|
3754
|
+
readonly default: {
|
|
3755
|
+
readonly http: readonly ["https://rpc.mantle.xyz"];
|
|
3756
|
+
};
|
|
3757
|
+
};
|
|
3758
|
+
sourceId?: number | undefined;
|
|
3759
|
+
testnet?: boolean | undefined;
|
|
3760
|
+
custom?: Record<string, unknown> | undefined;
|
|
3761
|
+
formatters?: undefined;
|
|
3762
|
+
serializers?: import("viem").ChainSerializers<undefined> | undefined;
|
|
3763
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3732
3764
|
} | {
|
|
3733
3765
|
blockExplorers: {
|
|
3734
3766
|
readonly default: {
|