diff --git a/.changeset/orange-rockets-reply.md b/.changeset/orange-rockets-reply.md new file mode 100644 index 00000000000..3d09918d1c4 --- /dev/null +++ b/.changeset/orange-rockets-reply.md @@ -0,0 +1,5 @@ +--- +"thirdweb": patch +--- + +Force redirect to phantom app on mobile diff --git a/apps/playground-web/src/app/connect/sign-in/button/RightSection.tsx b/apps/playground-web/src/app/connect/sign-in/button/RightSection.tsx index 2c65b16a370..5f8f6b9e77c 100644 --- a/apps/playground-web/src/app/connect/sign-in/button/RightSection.tsx +++ b/apps/playground-web/src/app/connect/sign-in/button/RightSection.tsx @@ -158,7 +158,6 @@ export function RightSection(props: {
diff --git a/packages/thirdweb/scripts/wallets/generate.ts b/packages/thirdweb/scripts/wallets/generate.ts index 75a2d2d1f1f..4791b56bcab 100644 --- a/packages/thirdweb/scripts/wallets/generate.ts +++ b/packages/thirdweb/scripts/wallets/generate.ts @@ -38,6 +38,9 @@ const deepLinkSupportedWalletsRecord: Record< "io.metamask": { mobile: "https://metamask.app.link/dapp/", }, + "app.phantom": { + mobile: "https://phantom.app/ul/browse/", + }, }; type Wallet = { diff --git a/packages/thirdweb/src/react/web/ui/ConnectWallet/Modal/AnyWalletConnectUI.tsx b/packages/thirdweb/src/react/web/ui/ConnectWallet/Modal/AnyWalletConnectUI.tsx index 825441b3bc4..73b483fa857 100644 --- a/packages/thirdweb/src/react/web/ui/ConnectWallet/Modal/AnyWalletConnectUI.tsx +++ b/packages/thirdweb/src/react/web/ui/ConnectWallet/Modal/AnyWalletConnectUI.tsx @@ -156,13 +156,15 @@ export function AnyWalletConnectUI(props: { ); } - if ( + const shouldDeeplink = walletInfo.data.deepLink && !isInstalled && - (wallet as Wallet).getConfig() - ?.preferDeepLink && - isMobile() - ) { + isMobile() && + ((wallet as Wallet).getConfig() + ?.preferDeepLink || + wallet.id === "app.phantom"); // always deeplink phantom on mobile, does not support remote connection + + if (walletInfo.data.deepLink?.mobile && shouldDeeplink) { return ( } diff --git a/packages/thirdweb/src/react/web/ui/ConnectWallet/Modal/DeepLinkConnectUI.tsx b/packages/thirdweb/src/react/web/ui/ConnectWallet/Modal/DeepLinkConnectUI.tsx index 8b3cc3dcbff..67e009bae04 100644 --- a/packages/thirdweb/src/react/web/ui/ConnectWallet/Modal/DeepLinkConnectUI.tsx +++ b/packages/thirdweb/src/react/web/ui/ConnectWallet/Modal/DeepLinkConnectUI.tsx @@ -25,6 +25,8 @@ export const DeepLinkConnectUI = (props: { onBack?: () => void; client: ThirdwebClient; }) => { + const link = encodeURIComponent(window.location.toString()); + const deeplink = `${props.deepLinkPrefix}${link}?ref=${link}`; return ( @@ -38,14 +40,7 @@ export const DeepLinkConnectUI = (props: { - + Continue in {props.walletInfo.name} diff --git a/packages/thirdweb/src/wallets/__generated__/getWalletInfo.ts b/packages/thirdweb/src/wallets/__generated__/getWalletInfo.ts index aae750c7502..a9ef11491a9 100644 --- a/packages/thirdweb/src/wallets/__generated__/getWalletInfo.ts +++ b/packages/thirdweb/src/wallets/__generated__/getWalletInfo.ts @@ -81,6 +81,15 @@ export async function getWalletInfo( ) ) as Promise<[TImage] extends [true] ? string : any>; } + case "com.bitget.web3": { + return ( + image + ? import("./wallet/com.bitget.web3/image.js").then( + (img) => img.default, + ) + : import("./wallet/com.bitget.web3/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } case "com.okex.wallet": { return ( image @@ -90,20 +99,36 @@ export async function getWalletInfo( : import("./wallet/com.okex.wallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.bitget.web3": { + case "com.binance.wallet": { return ( image - ? import("./wallet/com.bitget.web3/image.js").then( + ? import("./wallet/com.binance.wallet/image.js").then( (img) => img.default, ) - : import("./wallet/com.bitget.web3/index.js").then((w) => w.wallet) + : import("./wallet/com.binance.wallet/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } + case "com.safepal": { + return ( + image + ? import("./wallet/com.safepal/image.js").then((img) => img.default) + : import("./wallet/com.safepal/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } + case "pro.tokenpocket": { + return ( + image + ? import("./wallet/pro.tokenpocket/image.js").then( + (img) => img.default, + ) + : import("./wallet/pro.tokenpocket/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.binance": { + case "com.bybit": { return ( image - ? import("./wallet/com.binance/image.js").then((img) => img.default) - : import("./wallet/com.binance/index.js").then((w) => w.wallet) + ? import("./wallet/com.bybit/image.js").then((img) => img.default) + : import("./wallet/com.bybit/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } case "org.uniswap": { @@ -113,11 +138,13 @@ export async function getWalletInfo( : import("./wallet/org.uniswap/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.safepal": { + case "io.zerion.wallet": { return ( image - ? import("./wallet/com.safepal/image.js").then((img) => img.default) - : import("./wallet/com.safepal/index.js").then((w) => w.wallet) + ? import("./wallet/io.zerion.wallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/io.zerion.wallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } case "me.rainbow": { @@ -127,36 +154,43 @@ export async function getWalletInfo( : import("./wallet/me.rainbow/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.bybit": { + case "com.ledger": { return ( image - ? import("./wallet/com.bybit/image.js").then((img) => img.default) - : import("./wallet/com.bybit/index.js").then((w) => w.wallet) + ? import("./wallet/com.ledger/image.js").then((img) => img.default) + : import("./wallet/com.ledger/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "pro.tokenpocket": { + case "com.crypto.wallet": { return ( image - ? import("./wallet/pro.tokenpocket/image.js").then( + ? import("./wallet/com.crypto.wallet/image.js").then( (img) => img.default, ) - : import("./wallet/pro.tokenpocket/index.js").then((w) => w.wallet) + : import("./wallet/com.crypto.wallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.ledger": { + case "com.kraken": { return ( image - ? import("./wallet/com.ledger/image.js").then((img) => img.default) - : import("./wallet/com.ledger/index.js").then((w) => w.wallet) + ? import("./wallet/com.kraken/image.js").then((img) => img.default) + : import("./wallet/com.kraken/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "xyz.timelesswallet": { + case "io.1inch.wallet": { return ( image - ? import("./wallet/xyz.timelesswallet/image.js").then( + ? import("./wallet/io.1inch.wallet/image.js").then( (img) => img.default, ) - : import("./wallet/xyz.timelesswallet/index.js").then((w) => w.wallet) + : import("./wallet/io.1inch.wallet/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } + case "im.token": { + return ( + image + ? import("./wallet/im.token/image.js").then((img) => img.default) + : import("./wallet/im.token/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } case "global.safe": { @@ -166,42 +200,42 @@ export async function getWalletInfo( : import("./wallet/global.safe/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.zerion.wallet": { + case "xyz.timelesswallet": { return ( image - ? import("./wallet/io.zerion.wallet/image.js").then( + ? import("./wallet/xyz.timelesswallet/image.js").then( (img) => img.default, ) - : import("./wallet/io.zerion.wallet/index.js").then((w) => w.wallet) + : import("./wallet/xyz.timelesswallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.robinhood.wallet": { + case "com.roninchain.wallet": { return ( image - ? import("./wallet/com.robinhood.wallet/image.js").then( + ? import("./wallet/com.roninchain.wallet/image.js").then( (img) => img.default, ) - : import("./wallet/com.robinhood.wallet/index.js").then( + : import("./wallet/com.roninchain.wallet/index.js").then( (w) => w.wallet, ) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.1inch.wallet": { + case "com.elrond.maiar.wallet": { return ( image - ? import("./wallet/io.1inch.wallet/image.js").then( + ? import("./wallet/com.elrond.maiar.wallet/image.js").then( (img) => img.default, ) - : import("./wallet/io.1inch.wallet/index.js").then((w) => w.wallet) + : import("./wallet/com.elrond.maiar.wallet/index.js").then( + (w) => w.wallet, + ) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.crypto.wallet": { + case "app.backpack": { return ( image - ? import("./wallet/com.crypto.wallet/image.js").then( - (img) => img.default, - ) - : import("./wallet/com.crypto.wallet/index.js").then((w) => w.wallet) + ? import("./wallet/app.backpack/image.js").then((img) => img.default) + : import("./wallet/app.backpack/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } case "com.exodus": { @@ -211,18 +245,20 @@ export async function getWalletInfo( : import("./wallet/com.exodus/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "xyz.argent": { + case "com.fireblocks": { return ( image - ? import("./wallet/xyz.argent/image.js").then((img) => img.default) - : import("./wallet/xyz.argent/index.js").then((w) => w.wallet) + ? import("./wallet/com.fireblocks/image.js").then( + (img) => img.default, + ) + : import("./wallet/com.fireblocks/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "im.token": { + case "ag.jup": { return ( image - ? import("./wallet/im.token/image.js").then((img) => img.default) - : import("./wallet/im.token/index.js").then((w) => w.wallet) + ? import("./wallet/ag.jup/image.js").then((img) => img.default) + : import("./wallet/ag.jup/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } case "com.blockchain": { @@ -245,48 +281,45 @@ export async function getWalletInfo( ) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.kraken": { - return ( - image - ? import("./wallet/com.kraken/image.js").then((img) => img.default) - : import("./wallet/com.kraken/index.js").then((w) => w.wallet) - ) as Promise<[TImage] extends [true] ? string : any>; - } - case "app.backpack": { + case "com.bifrostwallet": { return ( image - ? import("./wallet/app.backpack/image.js").then((img) => img.default) - : import("./wallet/app.backpack/index.js").then((w) => w.wallet) + ? import("./wallet/com.bifrostwallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/com.bifrostwallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.zengo": { + case "com.tangem": { return ( image - ? import("./wallet/com.zengo/image.js").then((img) => img.default) - : import("./wallet/com.zengo/index.js").then((w) => w.wallet) + ? import("./wallet/com.tangem/image.js").then((img) => img.default) + : import("./wallet/com.tangem/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.mewwallet": { + case "com.wemixplay": { return ( image - ? import("./wallet/com.mewwallet/image.js").then((img) => img.default) - : import("./wallet/com.mewwallet/index.js").then((w) => w.wallet) + ? import("./wallet/com.wemixplay/image.js").then((img) => img.default) + : import("./wallet/com.wemixplay/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.phantom": { + case "com.robinhood.wallet": { return ( image - ? import("./wallet/app.phantom/image.js").then((img) => img.default) - : import("./wallet/app.phantom/index.js").then((w) => w.wallet) + ? import("./wallet/com.robinhood.wallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/com.robinhood.wallet/index.js").then( + (w) => w.wallet, + ) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.fireblocks": { + case "com.bitcoin": { return ( image - ? import("./wallet/com.fireblocks/image.js").then( - (img) => img.default, - ) - : import("./wallet/com.fireblocks/index.js").then((w) => w.wallet) + ? import("./wallet/com.bitcoin/image.js").then((img) => img.default) + : import("./wallet/com.bitcoin/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } case "org.mathwallet": { @@ -298,154 +331,119 @@ export async function getWalletInfo( : import("./wallet/org.mathwallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.alphawallet": { + case "network.blackfort": { return ( image - ? import("./wallet/com.alphawallet/image.js").then( + ? import("./wallet/network.blackfort/image.js").then( (img) => img.default, ) - : import("./wallet/com.alphawallet/index.js").then((w) => w.wallet) + : import("./wallet/network.blackfort/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.roninchain.wallet": { + case "app.keplr": { return ( image - ? import("./wallet/com.roninchain.wallet/image.js").then( - (img) => img.default, - ) - : import("./wallet/com.roninchain.wallet/index.js").then( - (w) => w.wallet, - ) + ? import("./wallet/app.keplr/image.js").then((img) => img.default) + : import("./wallet/app.keplr/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.unstoppabledomains": { + case "com.bee": { return ( image - ? import("./wallet/com.unstoppabledomains/image.js").then( - (img) => img.default, - ) - : import("./wallet/com.unstoppabledomains/index.js").then( - (w) => w.wallet, - ) + ? import("./wallet/com.bee/image.js").then((img) => img.default) + : import("./wallet/com.bee/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.keyring": { + case "com.veworld": { return ( image - ? import("./wallet/app.keyring/image.js").then((img) => img.default) - : import("./wallet/app.keyring/index.js").then((w) => w.wallet) + ? import("./wallet/com.veworld/image.js").then((img) => img.default) + : import("./wallet/com.veworld/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "xyz.frontier.wallet": { + case "com.bestwallet": { return ( image - ? import("./wallet/xyz.frontier.wallet/image.js").then( + ? import("./wallet/com.bestwallet/image.js").then( (img) => img.default, ) - : import("./wallet/xyz.frontier.wallet/index.js").then( - (w) => w.wallet, - ) - ) as Promise<[TImage] extends [true] ? string : any>; - } - case "app.omni": { - return ( - image - ? import("./wallet/app.omni/image.js").then((img) => img.default) - : import("./wallet/app.omni/index.js").then((w) => w.wallet) + : import("./wallet/com.bestwallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "technology.obvious": { + case "com.fastex.wallet": { return ( image - ? import("./wallet/technology.obvious/image.js").then( + ? import("./wallet/com.fastex.wallet/image.js").then( (img) => img.default, ) - : import("./wallet/technology.obvious/index.js").then((w) => w.wallet) + : import("./wallet/com.fastex.wallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.ambire": { + case "com.valoraapp": { return ( image - ? import("./wallet/com.ambire/image.js").then((img) => img.default) - : import("./wallet/com.ambire/index.js").then((w) => w.wallet) + ? import("./wallet/com.valoraapp/image.js").then((img) => img.default) + : import("./wallet/com.valoraapp/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.mtpelerin": { + case "id.co.pintu": { return ( image - ? import("./wallet/com.mtpelerin/image.js").then((img) => img.default) - : import("./wallet/com.mtpelerin/index.js").then((w) => w.wallet) + ? import("./wallet/id.co.pintu/image.js").then((img) => img.default) + : import("./wallet/id.co.pintu/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.internetmoney": { + case "app.core.extension": { return ( image - ? import("./wallet/io.internetmoney/image.js").then( + ? import("./wallet/app.core.extension/image.js").then( (img) => img.default, ) - : import("./wallet/io.internetmoney/index.js").then((w) => w.wallet) + : import("./wallet/app.core.extension/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.walletnow": { + case "com.opera": { return ( image - ? import("./wallet/app.walletnow/image.js").then((img) => img.default) - : import("./wallet/app.walletnow/index.js").then((w) => w.wallet) + ? import("./wallet/com.opera/image.js").then((img) => img.default) + : import("./wallet/com.opera/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.bitcoin": { + case "app.girin": { return ( image - ? import("./wallet/com.bitcoin/image.js").then((img) => img.default) - : import("./wallet/com.bitcoin/index.js").then((w) => w.wallet) + ? import("./wallet/app.girin/image.js").then((img) => img.default) + : import("./wallet/app.girin/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.alpha-u.wallet.web": { + case "dev.auroracloud": { return ( image - ? import("./wallet/io.alpha-u.wallet.web/image.js").then( + ? import("./wallet/dev.auroracloud/image.js").then( (img) => img.default, ) - : import("./wallet/io.alpha-u.wallet.web/index.js").then( - (w) => w.wallet, - ) + : import("./wallet/dev.auroracloud/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.coin98": { + case "com.chain": { return ( image - ? import("./wallet/com.coin98/image.js").then((img) => img.default) - : import("./wallet/com.coin98/index.js").then((w) => w.wallet) + ? import("./wallet/com.chain/image.js").then((img) => img.default) + : import("./wallet/com.chain/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.myabcwallet": { + case "app.wombat": { return ( image - ? import("./wallet/io.myabcwallet/image.js").then( - (img) => img.default, - ) - : import("./wallet/io.myabcwallet/index.js").then((w) => w.wallet) - ) as Promise<[TImage] extends [true] ? string : any>; - } - case "co.arculus": { - return ( - image - ? import("./wallet/co.arculus/image.js").then((img) => img.default) - : import("./wallet/co.arculus/index.js").then((w) => w.wallet) - ) as Promise<[TImage] extends [true] ? string : any>; - } - case "com.opera": { - return ( - image - ? import("./wallet/com.opera/image.js").then((img) => img.default) - : import("./wallet/com.opera/index.js").then((w) => w.wallet) + ? import("./wallet/app.wombat/image.js").then((img) => img.default) + : import("./wallet/app.wombat/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.chain": { + case "me.haha": { return ( image - ? import("./wallet/com.chain/image.js").then((img) => img.default) - : import("./wallet/com.chain/index.js").then((w) => w.wallet) + ? import("./wallet/me.haha/image.js").then((img) => img.default) + : import("./wallet/me.haha/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } case "io.huddln": { @@ -455,18 +453,22 @@ export async function getWalletInfo( : import("./wallet/io.huddln/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.get-verso": { + case "so.onekey.app.wallet": { return ( image - ? import("./wallet/com.get-verso/image.js").then((img) => img.default) - : import("./wallet/com.get-verso/index.js").then((w) => w.wallet) + ? import("./wallet/so.onekey.app.wallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/so.onekey.app.wallet/index.js").then( + (w) => w.wallet, + ) ) as Promise<[TImage] extends [true] ? string : any>; } - case "me.haha": { + case "app.subwallet": { return ( image - ? import("./wallet/me.haha/image.js").then((img) => img.default) - : import("./wallet/me.haha/index.js").then((w) => w.wallet) + ? import("./wallet/app.subwallet/image.js").then((img) => img.default) + : import("./wallet/app.subwallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } case "pk.modular": { @@ -476,39 +478,40 @@ export async function getWalletInfo( : import("./wallet/pk.modular/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "org.kelp": { - return ( - image - ? import("./wallet/org.kelp/image.js").then((img) => img.default) - : import("./wallet/org.kelp/index.js").then((w) => w.wallet) - ) as Promise<[TImage] extends [true] ? string : any>; - } - case "io.clingon": { + case "com.dcentwallet": { return ( image - ? import("./wallet/io.clingon/image.js").then((img) => img.default) - : import("./wallet/io.clingon/index.js").then((w) => w.wallet) + ? import("./wallet/com.dcentwallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/com.dcentwallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.broearn": { + case "io.internetmoney": { return ( image - ? import("./wallet/com.broearn/image.js").then((img) => img.default) - : import("./wallet/com.broearn/index.js").then((w) => w.wallet) + ? import("./wallet/io.internetmoney/image.js").then( + (img) => img.default, + ) + : import("./wallet/io.internetmoney/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.coinomi": { + case "com.hashpack.wallet": { return ( image - ? import("./wallet/com.coinomi/image.js").then((img) => img.default) - : import("./wallet/com.coinomi/index.js").then((w) => w.wallet) + ? import("./wallet/com.hashpack.wallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/com.hashpack.wallet/index.js").then( + (w) => w.wallet, + ) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.ripio": { + case "app.kabila": { return ( image - ? import("./wallet/com.ripio/image.js").then((img) => img.default) - : import("./wallet/com.ripio/index.js").then((w) => w.wallet) + ? import("./wallet/app.kabila/image.js").then((img) => img.default) + : import("./wallet/app.kabila/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } case "com.sabay.wallet": { @@ -520,57 +523,61 @@ export async function getWalletInfo( : import("./wallet/com.sabay.wallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.tokoin": { + case "com.mewwallet": { return ( image - ? import("./wallet/io.tokoin/image.js").then((img) => img.default) - : import("./wallet/io.tokoin/index.js").then((w) => w.wallet) + ? import("./wallet/com.mewwallet/image.js").then((img) => img.default) + : import("./wallet/com.mewwallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "world.fncy": { + case "io.tokoin": { return ( image - ? import("./wallet/world.fncy/image.js").then((img) => img.default) - : import("./wallet/world.fncy/index.js").then((w) => w.wallet) + ? import("./wallet/io.tokoin/image.js").then((img) => img.default) + : import("./wallet/io.tokoin/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.copiosa": { + case "io.atomicwallet": { return ( image - ? import("./wallet/io.copiosa/image.js").then((img) => img.default) - : import("./wallet/io.copiosa/index.js").then((w) => w.wallet) + ? import("./wallet/io.atomicwallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/io.atomicwallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.liberawallet": { + case "io.leapwallet": { return ( image - ? import("./wallet/com.liberawallet/image.js").then( - (img) => img.default, - ) - : import("./wallet/com.liberawallet/index.js").then((w) => w.wallet) + ? import("./wallet/io.leapwallet/image.js").then((img) => img.default) + : import("./wallet/io.leapwallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.certhis": { + case "io.novawallet": { return ( image - ? import("./wallet/io.certhis/image.js").then((img) => img.default) - : import("./wallet/io.certhis/index.js").then((w) => w.wallet) + ? import("./wallet/io.novawallet/image.js").then((img) => img.default) + : import("./wallet/io.novawallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.burritowallet": { + case "com.flowfoundation.wallet": { return ( image - ? import("./wallet/com.burritowallet/image.js").then( + ? import("./wallet/com.flowfoundation.wallet/image.js").then( (img) => img.default, ) - : import("./wallet/com.burritowallet/index.js").then((w) => w.wallet) + : import("./wallet/com.flowfoundation.wallet/index.js").then( + (w) => w.wallet, + ) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.ancrypto": { + case "org.gooddollar": { return ( image - ? import("./wallet/io.ancrypto/image.js").then((img) => img.default) - : import("./wallet/io.ancrypto/index.js").then((w) => w.wallet) + ? import("./wallet/org.gooddollar/image.js").then( + (img) => img.default, + ) + : import("./wallet/org.gooddollar/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } case "network.cvl": { @@ -580,34 +587,34 @@ export async function getWalletInfo( : import("./wallet/network.cvl/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.cypherhq": { + case "com.bitso": { return ( image - ? import("./wallet/io.cypherhq/image.js").then((img) => img.default) - : import("./wallet/io.cypherhq/index.js").then((w) => w.wallet) + ? import("./wallet/com.bitso/image.js").then((img) => img.default) + : import("./wallet/com.bitso/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.status": { + case "com.zengo": { return ( image - ? import("./wallet/app.status/image.js").then((img) => img.default) - : import("./wallet/app.status/index.js").then((w) => w.wallet) + ? import("./wallet/com.zengo/image.js").then((img) => img.default) + : import("./wallet/com.zengo/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.enjin": { + case "com.klipwallet": { return ( image - ? import("./wallet/io.enjin/image.js").then((img) => img.default) - : import("./wallet/io.enjin/index.js").then((w) => w.wallet) + ? import("./wallet/com.klipwallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/com.klipwallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.trinity-tech": { + case "xyz.argent": { return ( image - ? import("./wallet/io.trinity-tech/image.js").then( - (img) => img.default, - ) - : import("./wallet/io.trinity-tech/index.js").then((w) => w.wallet) + ? import("./wallet/xyz.argent/image.js").then((img) => img.default) + : import("./wallet/xyz.argent/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } case "app.everspace": { @@ -617,330 +624,329 @@ export async function getWalletInfo( : import("./wallet/app.everspace/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.kriptomat": { + case "io.enjin": { return ( image - ? import("./wallet/io.kriptomat/image.js").then((img) => img.default) - : import("./wallet/io.kriptomat/index.js").then((w) => w.wallet) + ? import("./wallet/io.enjin/image.js").then((img) => img.default) + : import("./wallet/io.enjin/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.oxalus": { + case "xyz.uniultra.wallet": { return ( image - ? import("./wallet/io.oxalus/image.js").then((img) => img.default) - : import("./wallet/io.oxalus/index.js").then((w) => w.wallet) + ? import("./wallet/xyz.uniultra.wallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/xyz.uniultra.wallet/index.js").then( + (w) => w.wallet, + ) ) as Promise<[TImage] extends [true] ? string : any>; } - case "org.thetatoken": { + case "social.halo": { return ( image - ? import("./wallet/org.thetatoken/image.js").then( - (img) => img.default, - ) - : import("./wallet/org.thetatoken/index.js").then((w) => w.wallet) + ? import("./wallet/social.halo/image.js").then((img) => img.default) + : import("./wallet/social.halo/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.leapwallet": { + case "tech.okto": { return ( image - ? import("./wallet/io.leapwallet/image.js").then((img) => img.default) - : import("./wallet/io.leapwallet/index.js").then((w) => w.wallet) + ? import("./wallet/tech.okto/image.js").then((img) => img.default) + : import("./wallet/tech.okto/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "finance.islamicoin": { + case "io.kriptomat": { return ( image - ? import("./wallet/finance.islamicoin/image.js").then( - (img) => img.default, - ) - : import("./wallet/finance.islamicoin/index.js").then((w) => w.wallet) + ? import("./wallet/io.kriptomat/image.js").then((img) => img.default) + : import("./wallet/io.kriptomat/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "xyz.coca": { + case "co.xellar": { return ( image - ? import("./wallet/xyz.coca/image.js").then((img) => img.default) - : import("./wallet/xyz.coca/index.js").then((w) => w.wallet) + ? import("./wallet/co.xellar/image.js").then((img) => img.default) + : import("./wallet/co.xellar/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.monarchwallet": { + case "network.haqq": { return ( image - ? import("./wallet/com.monarchwallet/image.js").then( - (img) => img.default, - ) - : import("./wallet/com.monarchwallet/index.js").then((w) => w.wallet) + ? import("./wallet/network.haqq/image.js").then((img) => img.default) + : import("./wallet/network.haqq/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "co.filwallet": { + case "io.oxalus": { return ( image - ? import("./wallet/co.filwallet/image.js").then((img) => img.default) - : import("./wallet/co.filwallet/index.js").then((w) => w.wallet) + ? import("./wallet/io.oxalus/image.js").then((img) => img.default) + : import("./wallet/io.oxalus/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.valoraapp": { + case "com.ullapay": { return ( image - ? import("./wallet/com.valoraapp/image.js").then((img) => img.default) - : import("./wallet/com.valoraapp/index.js").then((w) => w.wallet) + ? import("./wallet/com.ullapay/image.js").then((img) => img.default) + : import("./wallet/com.ullapay/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.coincircle": { + case "org.alephium": { return ( image - ? import("./wallet/com.coincircle/image.js").then( - (img) => img.default, - ) - : import("./wallet/com.coincircle/index.js").then((w) => w.wallet) + ? import("./wallet/org.alephium/image.js").then((img) => img.default) + : import("./wallet/org.alephium/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "money.snowball": { + case "xyz.frontier.wallet": { return ( image - ? import("./wallet/money.snowball/image.js").then( + ? import("./wallet/xyz.frontier.wallet/image.js").then( (img) => img.default, ) - : import("./wallet/money.snowball/index.js").then((w) => w.wallet) + : import("./wallet/xyz.frontier.wallet/index.js").then( + (w) => w.wallet, + ) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.paraswap": { + case "network.over": { return ( image - ? import("./wallet/io.paraswap/image.js").then((img) => img.default) - : import("./wallet/io.paraswap/index.js").then((w) => w.wallet) + ? import("./wallet/network.over/image.js").then((img) => img.default) + : import("./wallet/network.over/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "network.mrhb": { + case "money.unstoppable": { return ( image - ? import("./wallet/network.mrhb/image.js").then((img) => img.default) - : import("./wallet/network.mrhb/index.js").then((w) => w.wallet) + ? import("./wallet/money.unstoppable/image.js").then( + (img) => img.default, + ) + : import("./wallet/money.unstoppable/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.apollox": { + case "me.iopay": { return ( image - ? import("./wallet/com.apollox/image.js").then((img) => img.default) - : import("./wallet/com.apollox/index.js").then((w) => w.wallet) + ? import("./wallet/me.iopay/image.js").then((img) => img.default) + : import("./wallet/me.iopay/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.ennowallet": { + case "com.tomi": { return ( image - ? import("./wallet/com.ennowallet/image.js").then( - (img) => img.default, - ) - : import("./wallet/com.ennowallet/index.js").then((w) => w.wallet) + ? import("./wallet/com.tomi/image.js").then((img) => img.default) + : import("./wallet/com.tomi/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.loopring.wallet": { + case "xyz.coca": { return ( image - ? import("./wallet/io.loopring.wallet/image.js").then( - (img) => img.default, - ) - : import("./wallet/io.loopring.wallet/index.js").then((w) => w.wallet) + ? import("./wallet/xyz.coca/image.js").then((img) => img.default) + : import("./wallet/xyz.coca/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.bee": { + case "com.coin98": { return ( image - ? import("./wallet/com.bee/image.js").then((img) => img.default) - : import("./wallet/com.bee/index.js").then((w) => w.wallet) + ? import("./wallet/com.coin98/image.js").then((img) => img.default) + : import("./wallet/com.coin98/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "cc.localtrade.lab": { + case "org.thorwallet": { return ( image - ? import("./wallet/cc.localtrade.lab/image.js").then( + ? import("./wallet/org.thorwallet/image.js").then( (img) => img.default, ) - : import("./wallet/cc.localtrade.lab/index.js").then((w) => w.wallet) - ) as Promise<[TImage] extends [true] ? string : any>; - } - case "com.xcapit": { - return ( - image - ? import("./wallet/com.xcapit/image.js").then((img) => img.default) - : import("./wallet/com.xcapit/index.js").then((w) => w.wallet) + : import("./wallet/org.thorwallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.safematrix": { + case "com.monarchwallet": { return ( image - ? import("./wallet/io.safematrix/image.js").then((img) => img.default) - : import("./wallet/io.safematrix/index.js").then((w) => w.wallet) + ? import("./wallet/com.monarchwallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/com.monarchwallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.neonwallet": { + case "io.loopring.wallet": { return ( image - ? import("./wallet/com.neonwallet/image.js").then( + ? import("./wallet/io.loopring.wallet/image.js").then( (img) => img.default, ) - : import("./wallet/com.neonwallet/index.js").then((w) => w.wallet) + : import("./wallet/io.loopring.wallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "xyz.sequence": { + case "one.metapro.wallet": { return ( image - ? import("./wallet/xyz.sequence/image.js").then((img) => img.default) - : import("./wallet/xyz.sequence/index.js").then((w) => w.wallet) + ? import("./wallet/one.metapro.wallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/one.metapro.wallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.linen": { + case "com.burritowallet": { return ( image - ? import("./wallet/app.linen/image.js").then((img) => img.default) - : import("./wallet/app.linen/index.js").then((w) => w.wallet) + ? import("./wallet/com.burritowallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/com.burritowallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.nabox": { + case "com.mtpelerin": { return ( image - ? import("./wallet/io.nabox/image.js").then((img) => img.default) - : import("./wallet/io.nabox/index.js").then((w) => w.wallet) + ? import("./wallet/com.mtpelerin/image.js").then((img) => img.default) + : import("./wallet/com.mtpelerin/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "net.spatium": { + case "app.pluswallet": { return ( image - ? import("./wallet/net.spatium/image.js").then((img) => img.default) - : import("./wallet/net.spatium/index.js").then((w) => w.wallet) + ? import("./wallet/app.pluswallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/app.pluswallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.cryptnox": { + case "cc.localtrade.lab": { return ( image - ? import("./wallet/com.cryptnox/image.js").then((img) => img.default) - : import("./wallet/com.cryptnox/index.js").then((w) => w.wallet) + ? import("./wallet/cc.localtrade.lab/image.js").then( + (img) => img.default, + ) + : import("./wallet/cc.localtrade.lab/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.rktechworks": { + case "io.uptn.dapp-web": { return ( image - ? import("./wallet/com.rktechworks/image.js").then( + ? import("./wallet/io.uptn.dapp-web/image.js").then( (img) => img.default, ) - : import("./wallet/com.rktechworks/index.js").then((w) => w.wallet) + : import("./wallet/io.uptn.dapp-web/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "pro.assure": { + case "app.herewallet": { return ( image - ? import("./wallet/pro.assure/image.js").then((img) => img.default) - : import("./wallet/pro.assure/index.js").then((w) => w.wallet) + ? import("./wallet/app.herewallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/app.herewallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "trade.flooz.wallet": { + case "com.xcapit": { return ( image - ? import("./wallet/trade.flooz.wallet/image.js").then( - (img) => img.default, - ) - : import("./wallet/trade.flooz.wallet/index.js").then((w) => w.wallet) + ? import("./wallet/com.xcapit/image.js").then((img) => img.default) + : import("./wallet/com.xcapit/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.keplr": { + case "app.zeal": { return ( image - ? import("./wallet/app.keplr/image.js").then((img) => img.default) - : import("./wallet/app.keplr/index.js").then((w) => w.wallet) + ? import("./wallet/app.zeal/image.js").then((img) => img.default) + : import("./wallet/app.zeal/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.crossmint": { + case "com.oasys-wallet": { return ( image - ? import("./wallet/com.crossmint/image.js").then((img) => img.default) - : import("./wallet/com.crossmint/index.js").then((w) => w.wallet) + ? import("./wallet/com.oasys-wallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/com.oasys-wallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.pierwallet": { + case "com.coolbitx.cwsapp": { return ( image - ? import("./wallet/com.pierwallet/image.js").then( + ? import("./wallet/com.coolbitx.cwsapp/image.js").then( (img) => img.default, ) - : import("./wallet/com.pierwallet/index.js").then((w) => w.wallet) + : import("./wallet/com.coolbitx.cwsapp/index.js").then( + (w) => w.wallet, + ) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.core": { + case "app.linen": { return ( image - ? import("./wallet/app.core/image.js").then((img) => img.default) - : import("./wallet/app.core/index.js").then((w) => w.wallet) + ? import("./wallet/app.linen/image.js").then((img) => img.default) + : import("./wallet/app.linen/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.keeper-wallet": { + case "io.nabox": { return ( image - ? import("./wallet/app.keeper-wallet/image.js").then( - (img) => img.default, - ) - : import("./wallet/app.keeper-wallet/index.js").then((w) => w.wallet) + ? import("./wallet/io.nabox/image.js").then((img) => img.default) + : import("./wallet/io.nabox/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.dcentwallet": { + case "co.family.wallet": { return ( image - ? import("./wallet/com.dcentwallet/image.js").then( + ? import("./wallet/co.family.wallet/image.js").then( (img) => img.default, ) - : import("./wallet/com.dcentwallet/index.js").then((w) => w.wallet) + : import("./wallet/co.family.wallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.withpaper": { + case "app.krystal": { return ( image - ? import("./wallet/com.withpaper/image.js").then((img) => img.default) - : import("./wallet/com.withpaper/index.js").then((w) => w.wallet) + ? import("./wallet/app.krystal/image.js").then((img) => img.default) + : import("./wallet/app.krystal/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "finance.klever": { + case "com.ellipal": { return ( image - ? import("./wallet/finance.klever/image.js").then( - (img) => img.default, - ) - : import("./wallet/finance.klever/index.js").then((w) => w.wallet) + ? import("./wallet/com.ellipal/image.js").then((img) => img.default) + : import("./wallet/com.ellipal/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.edge": { + case "io.yusetoken": { return ( image - ? import("./wallet/app.edge/image.js").then((img) => img.default) - : import("./wallet/app.edge/index.js").then((w) => w.wallet) + ? import("./wallet/io.yusetoken/image.js").then((img) => img.default) + : import("./wallet/io.yusetoken/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.neftipedia": { + case "app.walletnow": { return ( image - ? import("./wallet/com.neftipedia/image.js").then( - (img) => img.default, - ) - : import("./wallet/com.neftipedia/index.js").then((w) => w.wallet) + ? import("./wallet/app.walletnow/image.js").then((img) => img.default) + : import("./wallet/app.walletnow/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.goldbit": { + case "com.saakuru.app": { return ( image - ? import("./wallet/io.goldbit/image.js").then((img) => img.default) - : import("./wallet/io.goldbit/index.js").then((w) => w.wallet) + ? import("./wallet/com.saakuru.app/image.js").then( + (img) => img.default, + ) + : import("./wallet/com.saakuru.app/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.coingrig": { + case "com.foxwallet": { return ( image - ? import("./wallet/com.coingrig/image.js").then((img) => img.default) - : import("./wallet/com.coingrig/index.js").then((w) => w.wallet) + ? import("./wallet/com.foxwallet/image.js").then((img) => img.default) + : import("./wallet/com.foxwallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.xfun": { + case "com.withpaper": { return ( image - ? import("./wallet/io.xfun/image.js").then((img) => img.default) - : import("./wallet/io.xfun/index.js").then((w) => w.wallet) + ? import("./wallet/com.withpaper/image.js").then((img) => img.default) + : import("./wallet/com.withpaper/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } case "io.ricewallet": { @@ -950,17 +956,6 @@ export async function getWalletInfo( : import("./wallet/io.ricewallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.antiersolutions": { - return ( - image - ? import("./wallet/com.antiersolutions/image.js").then( - (img) => img.default, - ) - : import("./wallet/com.antiersolutions/index.js").then( - (w) => w.wallet, - ) - ) as Promise<[TImage] extends [true] ? string : any>; - } case "io.okse": { return ( image @@ -977,25 +972,11 @@ export async function getWalletInfo( : import("./wallet/com.aktionariat/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.itoken": { - return ( - image - ? import("./wallet/com.itoken/image.js").then((img) => img.default) - : import("./wallet/com.itoken/index.js").then((w) => w.wallet) - ) as Promise<[TImage] extends [true] ? string : any>; - } - case "io.zelus": { - return ( - image - ? import("./wallet/io.zelus/image.js").then((img) => img.default) - : import("./wallet/io.zelus/index.js").then((w) => w.wallet) - ) as Promise<[TImage] extends [true] ? string : any>; - } - case "com.cardstack": { + case "io.cypherhq": { return ( image - ? import("./wallet/com.cardstack/image.js").then((img) => img.default) - : import("./wallet/com.cardstack/index.js").then((w) => w.wallet) + ? import("./wallet/io.cypherhq/image.js").then((img) => img.default) + : import("./wallet/io.cypherhq/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } case "com.paybolt": { @@ -1005,18 +986,13 @@ export async function getWalletInfo( : import("./wallet/com.paybolt/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "org.arianee": { - return ( - image - ? import("./wallet/org.arianee/image.js").then((img) => img.default) - : import("./wallet/org.arianee/index.js").then((w) => w.wallet) - ) as Promise<[TImage] extends [true] ? string : any>; - } - case "io.slavi": { + case "io.compasswallet": { return ( image - ? import("./wallet/io.slavi/image.js").then((img) => img.default) - : import("./wallet/io.slavi/index.js").then((w) => w.wallet) + ? import("./wallet/io.compasswallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/io.compasswallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } case "com.plasma-wallet": { @@ -1028,20 +1004,13 @@ export async function getWalletInfo( : import("./wallet/com.plasma-wallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "tech.defiantapp": { + case "io.cosmostation": { return ( image - ? import("./wallet/tech.defiantapp/image.js").then( + ? import("./wallet/io.cosmostation/image.js").then( (img) => img.default, ) - : import("./wallet/tech.defiantapp/index.js").then((w) => w.wallet) - ) as Promise<[TImage] extends [true] ? string : any>; - } - case "cc.avacus": { - return ( - image - ? import("./wallet/cc.avacus/image.js").then((img) => img.default) - : import("./wallet/cc.avacus/index.js").then((w) => w.wallet) + : import("./wallet/io.cosmostation/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } case "org.bytebank": { @@ -1051,61 +1020,61 @@ export async function getWalletInfo( : import("./wallet/org.bytebank/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.coolbitx.cwsapp": { + case "com.unstoppabledomains": { return ( image - ? import("./wallet/com.coolbitx.cwsapp/image.js").then( + ? import("./wallet/com.unstoppabledomains/image.js").then( (img) => img.default, ) - : import("./wallet/com.coolbitx.cwsapp/index.js").then( + : import("./wallet/com.unstoppabledomains/index.js").then( (w) => w.wallet, ) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.optowallet": { + case "io.koalawallet": { return ( image - ? import("./wallet/com.optowallet/image.js").then( + ? import("./wallet/io.koalawallet/image.js").then( (img) => img.default, ) - : import("./wallet/com.optowallet/index.js").then((w) => w.wallet) + : import("./wallet/io.koalawallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "network.trustkeys": { + case "com.optowallet": { return ( image - ? import("./wallet/network.trustkeys/image.js").then( + ? import("./wallet/com.optowallet/image.js").then( (img) => img.default, ) - : import("./wallet/network.trustkeys/index.js").then((w) => w.wallet) + : import("./wallet/com.optowallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.beewallet": { + case "io.miraiapp": { return ( image - ? import("./wallet/app.beewallet/image.js").then((img) => img.default) - : import("./wallet/app.beewallet/index.js").then((w) => w.wallet) + ? import("./wallet/io.miraiapp/image.js").then((img) => img.default) + : import("./wallet/io.miraiapp/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.ttmwallet": { + case "app.beewallet": { return ( image - ? import("./wallet/io.ttmwallet/image.js").then((img) => img.default) - : import("./wallet/io.ttmwallet/index.js").then((w) => w.wallet) + ? import("./wallet/app.beewallet/image.js").then((img) => img.default) + : import("./wallet/app.beewallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.pltwallet": { + case "xyz.sequence": { return ( image - ? import("./wallet/io.pltwallet/image.js").then((img) => img.default) - : import("./wallet/io.pltwallet/index.js").then((w) => w.wallet) + ? import("./wallet/xyz.sequence/image.js").then((img) => img.default) + : import("./wallet/xyz.sequence/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.helixid": { + case "io.fizen": { return ( image - ? import("./wallet/io.helixid/image.js").then((img) => img.default) - : import("./wallet/io.helixid/index.js").then((w) => w.wallet) + ? import("./wallet/io.fizen/image.js").then((img) => img.default) + : import("./wallet/io.fizen/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } case "it.airgap": { @@ -1115,13 +1084,13 @@ export async function getWalletInfo( : import("./wallet/it.airgap/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.qubic.wallet": { + case "org.thepulsewallet": { return ( image - ? import("./wallet/app.qubic.wallet/image.js").then( + ? import("./wallet/org.thepulsewallet/image.js").then( (img) => img.default, ) - : import("./wallet/app.qubic.wallet/index.js").then((w) => w.wallet) + : import("./wallet/org.thepulsewallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } case "com.holdstation": { @@ -1133,209 +1102,204 @@ export async function getWalletInfo( : import("./wallet/com.holdstation/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.saakuru.app": { + case "com.coinomi": { return ( image - ? import("./wallet/com.saakuru.app/image.js").then( - (img) => img.default, - ) - : import("./wallet/com.saakuru.app/index.js").then((w) => w.wallet) + ? import("./wallet/com.coinomi/image.js").then((img) => img.default) + : import("./wallet/com.coinomi/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.3swallet": { + case "com.trusteeglobal": { return ( image - ? import("./wallet/com.3swallet/image.js").then((img) => img.default) - : import("./wallet/com.3swallet/index.js").then((w) => w.wallet) + ? import("./wallet/com.trusteeglobal/image.js").then( + (img) => img.default, + ) + : import("./wallet/com.trusteeglobal/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.payperless": { + case "io.wallacy": { return ( image - ? import("./wallet/com.payperless/image.js").then( - (img) => img.default, - ) - : import("./wallet/com.payperless/index.js").then((w) => w.wallet) + ? import("./wallet/io.wallacy/image.js").then((img) => img.default) + : import("./wallet/io.wallacy/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "digital.minerva": { + case "technology.jambo": { return ( image - ? import("./wallet/digital.minerva/image.js").then( + ? import("./wallet/technology.jambo/image.js").then( (img) => img.default, ) - : import("./wallet/digital.minerva/index.js").then((w) => w.wallet) + : import("./wallet/technology.jambo/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "finance.voltage": { + case "io.bladewallet": { return ( image - ? import("./wallet/finance.voltage/image.js").then( + ? import("./wallet/io.bladewallet/image.js").then( (img) => img.default, ) - : import("./wallet/finance.voltage/index.js").then((w) => w.wallet) + : import("./wallet/io.bladewallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.lif3": { + case "app.keyring": { return ( image - ? import("./wallet/com.lif3/image.js").then((img) => img.default) - : import("./wallet/com.lif3/index.js").then((w) => w.wallet) + ? import("./wallet/app.keyring/image.js").then((img) => img.default) + : import("./wallet/app.keyring/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "net.shinobi-wallet": { + case "com.abra": { return ( image - ? import("./wallet/net.shinobi-wallet/image.js").then( - (img) => img.default, - ) - : import("./wallet/net.shinobi-wallet/index.js").then((w) => w.wallet) + ? import("./wallet/com.abra/image.js").then((img) => img.default) + : import("./wallet/com.abra/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.kryptogo": { + case "com.premanft": { return ( image - ? import("./wallet/com.kryptogo/image.js").then((img) => img.default) - : import("./wallet/com.kryptogo/index.js").then((w) => w.wallet) + ? import("./wallet/com.premanft/image.js").then((img) => img.default) + : import("./wallet/com.premanft/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.feralfile.app": { + case "finance.voltage": { return ( image - ? import("./wallet/com.feralfile.app/image.js").then( + ? import("./wallet/finance.voltage/image.js").then( (img) => img.default, ) - : import("./wallet/com.feralfile.app/index.js").then((w) => w.wallet) + : import("./wallet/finance.voltage/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.bifrostwallet": { + case "org.bitizen": { return ( image - ? import("./wallet/com.bifrostwallet/image.js").then( + ? import("./wallet/org.bitizen/image.js").then((img) => img.default) + : import("./wallet/org.bitizen/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } + case "com.wigwam.wallet": { + return ( + image + ? import("./wallet/com.wigwam.wallet/image.js").then( (img) => img.default, ) - : import("./wallet/com.bifrostwallet/index.js").then((w) => w.wallet) + : import("./wallet/com.wigwam.wallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.nufinetes": { + case "app.ultimate": { return ( image - ? import("./wallet/com.nufinetes/image.js").then((img) => img.default) - : import("./wallet/com.nufinetes/index.js").then((w) => w.wallet) + ? import("./wallet/app.ultimate/image.js").then((img) => img.default) + : import("./wallet/app.ultimate/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.wallet3": { + case "com.cakewallet": { return ( image - ? import("./wallet/io.wallet3/image.js").then((img) => img.default) - : import("./wallet/io.wallet3/index.js").then((w) => w.wallet) + ? import("./wallet/com.cakewallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/com.cakewallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.abra": { + case "app.fizzwallet": { return ( image - ? import("./wallet/com.abra/image.js").then((img) => img.default) - : import("./wallet/com.abra/index.js").then((w) => w.wallet) + ? import("./wallet/app.fizzwallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/app.fizzwallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.imem": { + case "com.kucoin": { return ( image - ? import("./wallet/app.imem/image.js").then((img) => img.default) - : import("./wallet/app.imem/index.js").then((w) => w.wallet) + ? import("./wallet/com.kucoin/image.js").then((img) => img.default) + : import("./wallet/com.kucoin/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.premanft": { + case "app.stickey": { return ( image - ? import("./wallet/com.premanft/image.js").then((img) => img.default) - : import("./wallet/com.premanft/index.js").then((w) => w.wallet) + ? import("./wallet/app.stickey/image.js").then((img) => img.default) + : import("./wallet/app.stickey/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "so.onekey.app.wallet": { + case "com.neonwallet": { return ( image - ? import("./wallet/so.onekey.app.wallet/image.js").then( + ? import("./wallet/com.neonwallet/image.js").then( (img) => img.default, ) - : import("./wallet/so.onekey.app.wallet/index.js").then( - (w) => w.wallet, - ) + : import("./wallet/com.neonwallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "finance.slingshot": { + case "app.coinstats": { return ( image - ? import("./wallet/finance.slingshot/image.js").then( - (img) => img.default, - ) - : import("./wallet/finance.slingshot/index.js").then((w) => w.wallet) + ? import("./wallet/app.coinstats/image.js").then((img) => img.default) + : import("./wallet/app.coinstats/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.kriptonio": { + case "ai.pundi": { return ( image - ? import("./wallet/com.kriptonio/image.js").then((img) => img.default) - : import("./wallet/com.kriptonio/index.js").then((w) => w.wallet) + ? import("./wallet/ai.pundi/image.js").then((img) => img.default) + : import("./wallet/ai.pundi/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "xyz.ctrl": { + case "com.ripio": { return ( image - ? import("./wallet/xyz.ctrl/image.js").then((img) => img.default) - : import("./wallet/xyz.ctrl/index.js").then((w) => w.wallet) + ? import("./wallet/com.ripio/image.js").then((img) => img.default) + : import("./wallet/com.ripio/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.streakk": { + case "co.arculus": { return ( image - ? import("./wallet/io.streakk/image.js").then((img) => img.default) - : import("./wallet/io.streakk/index.js").then((w) => w.wallet) + ? import("./wallet/co.arculus/image.js").then((img) => img.default) + : import("./wallet/co.arculus/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.saitamatoken": { + case "io.harti": { return ( image - ? import("./wallet/com.saitamatoken/image.js").then( - (img) => img.default, - ) - : import("./wallet/com.saitamatoken/index.js").then((w) => w.wallet) + ? import("./wallet/io.harti/image.js").then((img) => img.default) + : import("./wallet/io.harti/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.flowfoundation.wallet": { + case "com.gemwallet": { return ( image - ? import("./wallet/com.flowfoundation.wallet/image.js").then( - (img) => img.default, - ) - : import("./wallet/com.flowfoundation.wallet/index.js").then( - (w) => w.wallet, - ) + ? import("./wallet/com.gemwallet/image.js").then((img) => img.default) + : import("./wallet/com.gemwallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.hippowallet": { + case "io.dttd": { return ( image - ? import("./wallet/io.hippowallet/image.js").then( - (img) => img.default, - ) - : import("./wallet/io.hippowallet/index.js").then((w) => w.wallet) + ? import("./wallet/io.dttd/image.js").then((img) => img.default) + : import("./wallet/io.dttd/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.cosmostation": { + case "io.zelcore": { return ( image - ? import("./wallet/io.cosmostation/image.js").then( - (img) => img.default, - ) - : import("./wallet/io.cosmostation/index.js").then((w) => w.wallet) + ? import("./wallet/io.zelcore/image.js").then((img) => img.default) + : import("./wallet/io.zelcore/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "org.bitizen": { + case "org.thetatoken": { return ( image - ? import("./wallet/org.bitizen/image.js").then((img) => img.default) - : import("./wallet/org.bitizen/index.js").then((w) => w.wallet) + ? import("./wallet/org.thetatoken/image.js").then( + (img) => img.default, + ) + : import("./wallet/org.thetatoken/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } case "io.blocto": { @@ -1345,406 +1309,568 @@ export async function getWalletInfo( : import("./wallet/io.blocto/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.humbl": { - return ( - image - ? import("./wallet/com.humbl/image.js").then((img) => img.default) - : import("./wallet/com.humbl/index.js").then((w) => w.wallet) - ) as Promise<[TImage] extends [true] ? string : any>; - } - case "io.passpay": { + case "com.tellaw": { return ( image - ? import("./wallet/io.passpay/image.js").then((img) => img.default) - : import("./wallet/io.passpay/index.js").then((w) => w.wallet) + ? import("./wallet/com.tellaw/image.js").then((img) => img.default) + : import("./wallet/com.tellaw/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.ultimate": { + case "xyz.ctrl": { return ( image - ? import("./wallet/app.ultimate/image.js").then((img) => img.default) - : import("./wallet/app.ultimate/index.js").then((w) => w.wallet) + ? import("./wallet/xyz.ctrl/image.js").then((img) => img.default) + : import("./wallet/xyz.ctrl/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "me.astrox": { + case "is.callback": { return ( image - ? import("./wallet/me.astrox/image.js").then((img) => img.default) - : import("./wallet/me.astrox/index.js").then((w) => w.wallet) + ? import("./wallet/is.callback/image.js").then((img) => img.default) + : import("./wallet/is.callback/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "org.thorwallet": { + case "io.summonersarena": { return ( image - ? import("./wallet/org.thorwallet/image.js").then( + ? import("./wallet/io.summonersarena/image.js").then( (img) => img.default, ) - : import("./wallet/org.thorwallet/index.js").then((w) => w.wallet) + : import("./wallet/io.summonersarena/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.fizzwallet": { + case "com.safemoon": { return ( image - ? import("./wallet/app.fizzwallet/image.js").then( - (img) => img.default, - ) - : import("./wallet/app.fizzwallet/index.js").then((w) => w.wallet) + ? import("./wallet/com.safemoon/image.js").then((img) => img.default) + : import("./wallet/com.safemoon/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.stickey": { + case "world.ixo": { return ( image - ? import("./wallet/app.stickey/image.js").then((img) => img.default) - : import("./wallet/app.stickey/index.js").then((w) => w.wallet) + ? import("./wallet/world.ixo/image.js").then((img) => img.default) + : import("./wallet/world.ixo/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.klipwallet": { + case "com.bitpie": { return ( image - ? import("./wallet/com.klipwallet/image.js").then( + ? import("./wallet/com.bitpie/image.js").then((img) => img.default) + : import("./wallet/com.bitpie/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } + case "net.gateweb3": { + return ( + image + ? import("./wallet/net.gateweb3/image.js").then((img) => img.default) + : import("./wallet/net.gateweb3/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } + case "io.wallypto": { + return ( + image + ? import("./wallet/io.wallypto/image.js").then((img) => img.default) + : import("./wallet/io.wallypto/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } + case "io.alpha-u.wallet.web": { + return ( + image + ? import("./wallet/io.alpha-u.wallet.web/image.js").then( (img) => img.default, ) - : import("./wallet/com.klipwallet/index.js").then((w) => w.wallet) + : import("./wallet/io.alpha-u.wallet.web/index.js").then( + (w) => w.wallet, + ) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.coinstats": { + case "com.lif3": { return ( image - ? import("./wallet/app.coinstats/image.js").then((img) => img.default) - : import("./wallet/app.coinstats/index.js").then((w) => w.wallet) + ? import("./wallet/com.lif3/image.js").then((img) => img.default) + : import("./wallet/com.lif3/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "land.liker": { + case "app.ammer": { return ( image - ? import("./wallet/land.liker/image.js").then((img) => img.default) - : import("./wallet/land.liker/index.js").then((w) => w.wallet) + ? import("./wallet/app.ammer/image.js").then((img) => img.default) + : import("./wallet/app.ammer/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.krystal": { + case "us.binance": { return ( image - ? import("./wallet/app.krystal/image.js").then((img) => img.default) - : import("./wallet/app.krystal/index.js").then((w) => w.wallet) + ? import("./wallet/us.binance/image.js").then((img) => img.default) + : import("./wallet/us.binance/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "fi.pillar": { + case "com.bitpay": { return ( image - ? import("./wallet/fi.pillar/image.js").then((img) => img.default) - : import("./wallet/fi.pillar/index.js").then((w) => w.wallet) + ? import("./wallet/com.bitpay/image.js").then((img) => img.default) + : import("./wallet/com.bitpay/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.harti": { + case "co.muza": { return ( image - ? import("./wallet/io.harti/image.js").then((img) => img.default) - : import("./wallet/io.harti/index.js").then((w) => w.wallet) + ? import("./wallet/co.muza/image.js").then((img) => img.default) + : import("./wallet/co.muza/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "net.stasis": { + case "jp.co.rakuten-wallet": { return ( image - ? import("./wallet/net.stasis/image.js").then((img) => img.default) - : import("./wallet/net.stasis/index.js").then((w) => w.wallet) + ? import("./wallet/jp.co.rakuten-wallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/jp.co.rakuten-wallet/index.js").then( + (w) => w.wallet, + ) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.novawallet": { + case "app.ryipay": { return ( image - ? import("./wallet/io.novawallet/image.js").then((img) => img.default) - : import("./wallet/io.novawallet/index.js").then((w) => w.wallet) + ? import("./wallet/app.ryipay/image.js").then((img) => img.default) + : import("./wallet/app.ryipay/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.dttd": { + case "org.dota168": { return ( image - ? import("./wallet/io.dttd/image.js").then((img) => img.default) - : import("./wallet/io.dttd/index.js").then((w) => w.wallet) + ? import("./wallet/org.dota168/image.js").then((img) => img.default) + : import("./wallet/org.dota168/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.foxwallet": { + case "com.alphawallet": { return ( image - ? import("./wallet/com.foxwallet/image.js").then((img) => img.default) - : import("./wallet/com.foxwallet/index.js").then((w) => w.wallet) + ? import("./wallet/com.alphawallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/com.alphawallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "network.haqq": { + case "io.noone": { return ( image - ? import("./wallet/network.haqq/image.js").then((img) => img.default) - : import("./wallet/network.haqq/index.js").then((w) => w.wallet) + ? import("./wallet/io.noone/image.js").then((img) => img.default) + : import("./wallet/io.noone/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.tomi": { + case "io.myabcwallet": { return ( image - ? import("./wallet/com.tomi/image.js").then((img) => img.default) - : import("./wallet/com.tomi/index.js").then((w) => w.wallet) + ? import("./wallet/io.myabcwallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/io.myabcwallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.tradestrike": { + case "io.wallet3": { return ( image - ? import("./wallet/io.tradestrike/image.js").then( + ? import("./wallet/io.wallet3/image.js").then((img) => img.default) + : import("./wallet/io.wallet3/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } + case "com.coininn": { + return ( + image + ? import("./wallet/com.coininn/image.js").then((img) => img.default) + : import("./wallet/com.coininn/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } + case "com.ambire": { + return ( + image + ? import("./wallet/com.ambire/image.js").then((img) => img.default) + : import("./wallet/com.ambire/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } + case "cc.avacus": { + return ( + image + ? import("./wallet/cc.avacus/image.js").then((img) => img.default) + : import("./wallet/cc.avacus/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } + case "me.easy": { + return ( + image + ? import("./wallet/me.easy/image.js").then((img) => img.default) + : import("./wallet/me.easy/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } + case "app.utorg": { + return ( + image + ? import("./wallet/app.utorg/image.js").then((img) => img.default) + : import("./wallet/app.utorg/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } + case "io.scramberry": { + return ( + image + ? import("./wallet/io.scramberry/image.js").then((img) => img.default) + : import("./wallet/io.scramberry/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } + case "com.saitamatoken": { + return ( + image + ? import("./wallet/com.saitamatoken/image.js").then( (img) => img.default, ) - : import("./wallet/io.tradestrike/index.js").then((w) => w.wallet) + : import("./wallet/com.saitamatoken/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.subwallet": { + case "com.secuxtech": { return ( image - ? import("./wallet/app.subwallet/image.js").then((img) => img.default) - : import("./wallet/app.subwallet/index.js").then((w) => w.wallet) + ? import("./wallet/com.secuxtech/image.js").then((img) => img.default) + : import("./wallet/com.secuxtech/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "tech.okto": { + case "finance.openwallet": { return ( image - ? import("./wallet/tech.okto/image.js").then((img) => img.default) - : import("./wallet/tech.okto/index.js").then((w) => w.wallet) + ? import("./wallet/finance.openwallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/finance.openwallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.catecoin": { + case "io.shido": { return ( image - ? import("./wallet/app.catecoin/image.js").then((img) => img.default) - : import("./wallet/app.catecoin/index.js").then((w) => w.wallet) + ? import("./wallet/io.shido/image.js").then((img) => img.default) + : import("./wallet/io.shido/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.ukiss": { + case "com.unitywallet": { return ( image - ? import("./wallet/io.ukiss/image.js").then((img) => img.default) - : import("./wallet/io.ukiss/index.js").then((w) => w.wallet) + ? import("./wallet/com.unitywallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/com.unitywallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.tellaw": { + case "app.onto": { return ( image - ? import("./wallet/com.tellaw/image.js").then((img) => img.default) - : import("./wallet/com.tellaw/index.js").then((w) => w.wallet) + ? import("./wallet/app.onto/image.js").then((img) => img.default) + : import("./wallet/app.onto/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.tangem": { + case "com.companyname.swaptobe": { return ( image - ? import("./wallet/com.tangem/image.js").then((img) => img.default) - : import("./wallet/com.tangem/index.js").then((w) => w.wallet) + ? import("./wallet/com.companyname.swaptobe/image.js").then( + (img) => img.default, + ) + : import("./wallet/com.companyname.swaptobe/index.js").then( + (w) => w.wallet, + ) ) as Promise<[TImage] extends [true] ? string : any>; } - case "is.callback": { + case "com.midoin": { return ( image - ? import("./wallet/is.callback/image.js").then((img) => img.default) - : import("./wallet/is.callback/index.js").then((w) => w.wallet) + ? import("./wallet/com.midoin/image.js").then((img) => img.default) + : import("./wallet/com.midoin/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.summonersarena": { + case "io.hyperpay": { return ( image - ? import("./wallet/io.summonersarena/image.js").then( + ? import("./wallet/io.hyperpay/image.js").then((img) => img.default) + : import("./wallet/io.hyperpay/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } + case "id.competence": { + return ( + image + ? import("./wallet/id.competence/image.js").then((img) => img.default) + : import("./wallet/id.competence/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } + case "io.tradestrike": { + return ( + image + ? import("./wallet/io.tradestrike/image.js").then( (img) => img.default, ) - : import("./wallet/io.summonersarena/index.js").then((w) => w.wallet) + : import("./wallet/io.tradestrike/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "co.xellar": { + case "llc.besc": { return ( image - ? import("./wallet/co.xellar/image.js").then((img) => img.default) - : import("./wallet/co.xellar/index.js").then((w) => w.wallet) + ? import("./wallet/llc.besc/image.js").then((img) => img.default) + : import("./wallet/llc.besc/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.talken": { + case "baby.smart": { return ( image - ? import("./wallet/io.talken/image.js").then((img) => img.default) - : import("./wallet/io.talken/index.js").then((w) => w.wallet) + ? import("./wallet/baby.smart/image.js").then((img) => img.default) + : import("./wallet/baby.smart/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "xyz.uniultra.wallet": { + case "com.coinsdo": { return ( image - ? import("./wallet/xyz.uniultra.wallet/image.js").then( + ? import("./wallet/com.coinsdo/image.js").then((img) => img.default) + : import("./wallet/com.coinsdo/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } + case "com.ivirse": { + return ( + image + ? import("./wallet/com.ivirse/image.js").then((img) => img.default) + : import("./wallet/com.ivirse/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } + case "ch.dssecurity": { + return ( + image + ? import("./wallet/ch.dssecurity/image.js").then((img) => img.default) + : import("./wallet/ch.dssecurity/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } + case "com.concordium": { + return ( + image + ? import("./wallet/com.concordium/image.js").then( (img) => img.default, ) - : import("./wallet/xyz.uniultra.wallet/index.js").then( - (w) => w.wallet, + : import("./wallet/com.concordium/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } + case "io.zkape": { + return ( + image + ? import("./wallet/io.zkape/image.js").then((img) => img.default) + : import("./wallet/io.zkape/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } + case "app.status": { + return ( + image + ? import("./wallet/app.status/image.js").then((img) => img.default) + : import("./wallet/app.status/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } + case "io.pitaka": { + return ( + image + ? import("./wallet/io.pitaka/image.js").then((img) => img.default) + : import("./wallet/io.pitaka/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } + case "io.ozonewallet": { + return ( + image + ? import("./wallet/io.ozonewallet/image.js").then( + (img) => img.default, ) + : import("./wallet/io.ozonewallet/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } + case "org.mugambo": { + return ( + image + ? import("./wallet/org.mugambo/image.js").then((img) => img.default) + : import("./wallet/org.mugambo/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } + case "network.mrhb": { + return ( + image + ? import("./wallet/network.mrhb/image.js").then((img) => img.default) + : import("./wallet/network.mrhb/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } + case "com.crossmint": { + return ( + image + ? import("./wallet/com.crossmint/image.js").then((img) => img.default) + : import("./wallet/com.crossmint/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.ozonewallet": { + case "io.konio": { return ( image - ? import("./wallet/io.ozonewallet/image.js").then( - (img) => img.default, - ) - : import("./wallet/io.ozonewallet/index.js").then((w) => w.wallet) + ? import("./wallet/io.konio/image.js").then((img) => img.default) + : import("./wallet/io.konio/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.tiduswallet": { + case "io.legionnetwork": { return ( image - ? import("./wallet/com.tiduswallet/image.js").then( + ? import("./wallet/io.legionnetwork/image.js").then( (img) => img.default, ) - : import("./wallet/com.tiduswallet/index.js").then((w) => w.wallet) + : import("./wallet/io.legionnetwork/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "world.ixo": { + case "com.meld.app": { return ( image - ? import("./wallet/world.ixo/image.js").then((img) => img.default) - : import("./wallet/world.ixo/index.js").then((w) => w.wallet) + ? import("./wallet/com.meld.app/image.js").then((img) => img.default) + : import("./wallet/com.meld.app/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.zelcore": { + case "io.pltwallet": { return ( image - ? import("./wallet/io.zelcore/image.js").then((img) => img.default) - : import("./wallet/io.zelcore/index.js").then((w) => w.wallet) + ? import("./wallet/io.pltwallet/image.js").then((img) => img.default) + : import("./wallet/io.pltwallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "world.dosi.vault": { + case "com.authentrend": { return ( image - ? import("./wallet/world.dosi.vault/image.js").then( + ? import("./wallet/com.authentrend/image.js").then( (img) => img.default, ) - : import("./wallet/world.dosi.vault/index.js").then((w) => w.wallet) - ) as Promise<[TImage] extends [true] ? string : any>; - } - case "com.ullapay": { - return ( - image - ? import("./wallet/com.ullapay/image.js").then((img) => img.default) - : import("./wallet/com.ullapay/index.js").then((w) => w.wallet) + : import("./wallet/com.authentrend/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.ellipal": { + case "io.pockie": { return ( image - ? import("./wallet/com.ellipal/image.js").then((img) => img.default) - : import("./wallet/com.ellipal/index.js").then((w) => w.wallet) + ? import("./wallet/io.pockie/image.js").then((img) => img.default) + : import("./wallet/io.pockie/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "money.unstoppable": { + case "io.klever": { return ( image - ? import("./wallet/money.unstoppable/image.js").then( - (img) => img.default, - ) - : import("./wallet/money.unstoppable/index.js").then((w) => w.wallet) + ? import("./wallet/io.klever/image.js").then((img) => img.default) + : import("./wallet/io.klever/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "dev.auroracloud": { + case "org.kelp": { return ( image - ? import("./wallet/dev.auroracloud/image.js").then( - (img) => img.default, - ) - : import("./wallet/dev.auroracloud/index.js").then((w) => w.wallet) + ? import("./wallet/org.kelp/image.js").then((img) => img.default) + : import("./wallet/org.kelp/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "zone.bitverse": { + case "io.ethermail": { return ( image - ? import("./wallet/zone.bitverse/image.js").then((img) => img.default) - : import("./wallet/zone.bitverse/index.js").then((w) => w.wallet) + ? import("./wallet/io.ethermail/image.js").then((img) => img.default) + : import("./wallet/io.ethermail/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.konio": { + case "pro.fintoken": { return ( image - ? import("./wallet/io.konio/image.js").then((img) => img.default) - : import("./wallet/io.konio/index.js").then((w) => w.wallet) + ? import("./wallet/pro.fintoken/image.js").then((img) => img.default) + : import("./wallet/pro.fintoken/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "net.gateweb3": { + case "com.paliwallet": { return ( image - ? import("./wallet/net.gateweb3/image.js").then((img) => img.default) - : import("./wallet/net.gateweb3/index.js").then((w) => w.wallet) + ? import("./wallet/com.paliwallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/com.paliwallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.utorg": { + case "vc.uincubator.api": { return ( image - ? import("./wallet/app.utorg/image.js").then((img) => img.default) - : import("./wallet/app.utorg/index.js").then((w) => w.wallet) + ? import("./wallet/vc.uincubator.api/image.js").then( + (img) => img.default, + ) + : import("./wallet/vc.uincubator.api/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.coinsdo": { + case "io.unagi.unawallet": { return ( image - ? import("./wallet/com.coinsdo/image.js").then((img) => img.default) - : import("./wallet/com.coinsdo/index.js").then((w) => w.wallet) + ? import("./wallet/io.unagi.unawallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/io.unagi.unawallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.ammer": { + case "com.liberawallet": { return ( image - ? import("./wallet/app.ammer/image.js").then((img) => img.default) - : import("./wallet/app.ammer/index.js").then((w) => w.wallet) + ? import("./wallet/com.liberawallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/com.liberawallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "us.binance": { + case "io.armana.portal": { return ( image - ? import("./wallet/us.binance/image.js").then((img) => img.default) - : import("./wallet/us.binance/index.js").then((w) => w.wallet) + ? import("./wallet/io.armana.portal/image.js").then( + (img) => img.default, + ) + : import("./wallet/io.armana.portal/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "co.muza": { + case "io.nash": { return ( image - ? import("./wallet/co.muza/image.js").then((img) => img.default) - : import("./wallet/co.muza/index.js").then((w) => w.wallet) + ? import("./wallet/io.nash/image.js").then((img) => img.default) + : import("./wallet/io.nash/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.fxwallet": { + case "com.x9wallet": { return ( image - ? import("./wallet/com.fxwallet/image.js").then((img) => img.default) - : import("./wallet/com.fxwallet/index.js").then((w) => w.wallet) + ? import("./wallet/com.x9wallet/image.js").then((img) => img.default) + : import("./wallet/com.x9wallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.ryipay": { + case "io.kigo": { return ( image - ? import("./wallet/app.ryipay/image.js").then((img) => img.default) - : import("./wallet/app.ryipay/index.js").then((w) => w.wallet) + ? import("./wallet/io.kigo/image.js").then((img) => img.default) + : import("./wallet/io.kigo/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "org.dota168": { + case "world.dosi.vault": { return ( image - ? import("./wallet/org.dota168/image.js").then((img) => img.default) - : import("./wallet/org.dota168/index.js").then((w) => w.wallet) + ? import("./wallet/world.dosi.vault/image.js").then( + (img) => img.default, + ) + : import("./wallet/world.dosi.vault/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.altme": { + case "io.nonbank": { return ( image - ? import("./wallet/io.altme/image.js").then((img) => img.default) - : import("./wallet/io.altme/index.js").then((w) => w.wallet) + ? import("./wallet/io.nonbank/image.js").then((img) => img.default) + : import("./wallet/io.nonbank/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.bitpie": { + case "app.hbwallet": { return ( image - ? import("./wallet/com.bitpie/image.js").then((img) => img.default) - : import("./wallet/com.bitpie/index.js").then((w) => w.wallet) + ? import("./wallet/app.hbwallet/image.js").then((img) => img.default) + : import("./wallet/app.hbwallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.moonstake": { + case "com.getcogni": { return ( image - ? import("./wallet/io.moonstake/image.js").then((img) => img.default) - : import("./wallet/io.moonstake/index.js").then((w) => w.wallet) + ? import("./wallet/com.getcogni/image.js").then((img) => img.default) + : import("./wallet/com.getcogni/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } case "gg.indi": { @@ -1754,439 +1880,435 @@ export async function getWalletInfo( : import("./wallet/gg.indi/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.yusetoken": { + case "app.qubic.wallet": { return ( image - ? import("./wallet/io.yusetoken/image.js").then((img) => img.default) - : import("./wallet/io.yusetoken/index.js").then((w) => w.wallet) + ? import("./wallet/app.qubic.wallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/app.qubic.wallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.coininn": { + case "com.fxwallet": { return ( image - ? import("./wallet/com.coininn/image.js").then((img) => img.default) - : import("./wallet/com.coininn/index.js").then((w) => w.wallet) + ? import("./wallet/com.fxwallet/image.js").then((img) => img.default) + : import("./wallet/com.fxwallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.functionx": { + case "app.sinum": { return ( image - ? import("./wallet/io.functionx/image.js").then((img) => img.default) - : import("./wallet/io.functionx/index.js").then((w) => w.wallet) + ? import("./wallet/app.sinum/image.js").then((img) => img.default) + : import("./wallet/app.sinum/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.pockie": { + case "com.kryptogo": { return ( image - ? import("./wallet/io.pockie/image.js").then((img) => img.default) - : import("./wallet/io.pockie/index.js").then((w) => w.wallet) + ? import("./wallet/com.kryptogo/image.js").then((img) => img.default) + : import("./wallet/com.kryptogo/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.amazewallet": { + case "finance.soulswap.app": { return ( image - ? import("./wallet/com.amazewallet/image.js").then( + ? import("./wallet/finance.soulswap.app/image.js").then( (img) => img.default, ) - : import("./wallet/com.amazewallet/index.js").then((w) => w.wallet) + : import("./wallet/finance.soulswap.app/index.js").then( + (w) => w.wallet, + ) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.paliwallet": { + case "com.shapeshift": { return ( image - ? import("./wallet/com.paliwallet/image.js").then( + ? import("./wallet/com.shapeshift/image.js").then( (img) => img.default, ) - : import("./wallet/com.paliwallet/index.js").then((w) => w.wallet) - ) as Promise<[TImage] extends [true] ? string : any>; - } - case "me.easy": { - return ( - image - ? import("./wallet/me.easy/image.js").then((img) => img.default) - : import("./wallet/me.easy/index.js").then((w) => w.wallet) + : import("./wallet/com.shapeshift/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "live.superex": { + case "io.ready": { return ( image - ? import("./wallet/live.superex/image.js").then((img) => img.default) - : import("./wallet/live.superex/index.js").then((w) => w.wallet) + ? import("./wallet/io.ready/image.js").then((img) => img.default) + : import("./wallet/io.ready/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.secuxtech": { + case "org.shefi": { return ( image - ? import("./wallet/com.secuxtech/image.js").then((img) => img.default) - : import("./wallet/com.secuxtech/index.js").then((w) => w.wallet) + ? import("./wallet/org.shefi/image.js").then((img) => img.default) + : import("./wallet/org.shefi/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.didwallet": { + case "money.keychain": { return ( image - ? import("./wallet/io.didwallet/image.js").then((img) => img.default) - : import("./wallet/io.didwallet/index.js").then((w) => w.wallet) + ? import("./wallet/money.keychain/image.js").then( + (img) => img.default, + ) + : import("./wallet/money.keychain/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "social.halo": { + case "com.beexo": { return ( image - ? import("./wallet/social.halo/image.js").then((img) => img.default) - : import("./wallet/social.halo/index.js").then((w) => w.wallet) + ? import("./wallet/com.beexo/image.js").then((img) => img.default) + : import("./wallet/com.beexo/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.sinohope": { + case "live.superex": { return ( image - ? import("./wallet/com.sinohope/image.js").then((img) => img.default) - : import("./wallet/com.sinohope/index.js").then((w) => w.wallet) + ? import("./wallet/live.superex/image.js").then((img) => img.default) + : import("./wallet/live.superex/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.ballet": { + case "io.getclave": { return ( image - ? import("./wallet/com.ballet/image.js").then((img) => img.default) - : import("./wallet/com.ballet/index.js").then((w) => w.wallet) + ? import("./wallet/io.getclave/image.js").then((img) => img.default) + : import("./wallet/io.getclave/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.opz": { + case "com.bettatrade": { return ( image - ? import("./wallet/com.opz/image.js").then((img) => img.default) - : import("./wallet/com.opz/index.js").then((w) => w.wallet) + ? import("./wallet/com.bettatrade/image.js").then( + (img) => img.default, + ) + : import("./wallet/com.bettatrade/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.fizen": { + case "io.neopin": { return ( image - ? import("./wallet/io.fizen/image.js").then((img) => img.default) - : import("./wallet/io.fizen/index.js").then((w) => w.wallet) + ? import("./wallet/io.neopin/image.js").then((img) => img.default) + : import("./wallet/io.neopin/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.kresus": { + case "online.puzzle": { return ( image - ? import("./wallet/com.kresus/image.js").then((img) => img.default) - : import("./wallet/com.kresus/index.js").then((w) => w.wallet) + ? import("./wallet/online.puzzle/image.js").then((img) => img.default) + : import("./wallet/online.puzzle/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.midoin": { + case "xyz.echooo": { return ( image - ? import("./wallet/com.midoin/image.js").then((img) => img.default) - : import("./wallet/com.midoin/index.js").then((w) => w.wallet) + ? import("./wallet/xyz.echooo/image.js").then((img) => img.default) + : import("./wallet/xyz.echooo/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.onto": { + case "com.get-verso": { return ( image - ? import("./wallet/app.onto/image.js").then((img) => img.default) - : import("./wallet/app.onto/index.js").then((w) => w.wallet) + ? import("./wallet/com.get-verso/image.js").then((img) => img.default) + : import("./wallet/com.get-verso/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.oasys-wallet": { + case "com.wemix": { return ( image - ? import("./wallet/com.oasys-wallet/image.js").then( - (img) => img.default, - ) - : import("./wallet/com.oasys-wallet/index.js").then((w) => w.wallet) + ? import("./wallet/com.wemix/image.js").then((img) => img.default) + : import("./wallet/com.wemix/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "org.gooddollar": { + case "io.trinity-tech": { return ( image - ? import("./wallet/org.gooddollar/image.js").then( + ? import("./wallet/io.trinity-tech/image.js").then( (img) => img.default, ) - : import("./wallet/org.gooddollar/index.js").then((w) => w.wallet) + : import("./wallet/io.trinity-tech/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "id.competence": { + case "io.trustasset": { return ( image - ? import("./wallet/id.competence/image.js").then((img) => img.default) - : import("./wallet/id.competence/index.js").then((w) => w.wallet) + ? import("./wallet/io.trustasset/image.js").then((img) => img.default) + : import("./wallet/io.trustasset/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "ai.spotonchain.platform": { + case "app.dfinnwallet": { return ( image - ? import("./wallet/ai.spotonchain.platform/image.js").then( + ? import("./wallet/app.dfinnwallet/image.js").then( (img) => img.default, ) - : import("./wallet/ai.spotonchain.platform/index.js").then( - (w) => w.wallet, - ) + : import("./wallet/app.dfinnwallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "network.dgg": { + case "com.bmawallet": { return ( image - ? import("./wallet/network.dgg/image.js").then((img) => img.default) - : import("./wallet/network.dgg/index.js").then((w) => w.wallet) + ? import("./wallet/com.bmawallet/image.js").then((img) => img.default) + : import("./wallet/com.bmawallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "llc.besc": { + case "io.transi": { return ( image - ? import("./wallet/llc.besc/image.js").then((img) => img.default) - : import("./wallet/llc.besc/index.js").then((w) => w.wallet) + ? import("./wallet/io.transi/image.js").then((img) => img.default) + : import("./wallet/io.transi/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.gamic": { + case "io.safecryptowallet": { return ( image - ? import("./wallet/app.gamic/image.js").then((img) => img.default) - : import("./wallet/app.gamic/index.js").then((w) => w.wallet) + ? import("./wallet/io.safecryptowallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/io.safecryptowallet/index.js").then( + (w) => w.wallet, + ) ) as Promise<[TImage] extends [true] ? string : any>; } - case "baby.smart": { + case "finance.plena": { return ( image - ? import("./wallet/baby.smart/image.js").then((img) => img.default) - : import("./wallet/baby.smart/index.js").then((w) => w.wallet) + ? import("./wallet/finance.plena/image.js").then((img) => img.default) + : import("./wallet/finance.plena/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "network.gridlock": { + case "io.certhis": { return ( image - ? import("./wallet/network.gridlock/image.js").then( - (img) => img.default, - ) - : import("./wallet/network.gridlock/index.js").then((w) => w.wallet) + ? import("./wallet/io.certhis/image.js").then((img) => img.default) + : import("./wallet/io.certhis/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.zeal": { + case "inc.tomo": { return ( image - ? import("./wallet/app.zeal/image.js").then((img) => img.default) - : import("./wallet/app.zeal/index.js").then((w) => w.wallet) + ? import("./wallet/inc.tomo/image.js").then((img) => img.default) + : import("./wallet/inc.tomo/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.ivirse": { + case "me.komet.app": { return ( image - ? import("./wallet/com.ivirse/image.js").then((img) => img.default) - : import("./wallet/com.ivirse/index.js").then((w) => w.wallet) + ? import("./wallet/me.komet.app/image.js").then((img) => img.default) + : import("./wallet/me.komet.app/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "ch.dssecurity": { + case "com.pandoshi": { return ( image - ? import("./wallet/ch.dssecurity/image.js").then((img) => img.default) - : import("./wallet/ch.dssecurity/index.js").then((w) => w.wallet) + ? import("./wallet/com.pandoshi/image.js").then((img) => img.default) + : import("./wallet/com.pandoshi/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.concordium": { + case "io.guardiianwallet": { return ( image - ? import("./wallet/com.concordium/image.js").then( + ? import("./wallet/io.guardiianwallet/image.js").then( (img) => img.default, ) - : import("./wallet/com.concordium/index.js").then((w) => w.wallet) + : import("./wallet/io.guardiianwallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.zkape": { + case "com.bscecowallet": { return ( image - ? import("./wallet/io.zkape/image.js").then((img) => img.default) - : import("./wallet/io.zkape/index.js").then((w) => w.wallet) + ? import("./wallet/com.bscecowallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/com.bscecowallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.thirdweb": { + case "co.lifedefi": { return ( image - ? import("./wallet/com.thirdweb/image.js").then((img) => img.default) - : import("./wallet/com.thirdweb/index.js").then((w) => w.wallet) + ? import("./wallet/co.lifedefi/image.js").then((img) => img.default) + : import("./wallet/co.lifedefi/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.pitaka": { + case "com.zypto": { return ( image - ? import("./wallet/io.pitaka/image.js").then((img) => img.default) - : import("./wallet/io.pitaka/index.js").then((w) => w.wallet) + ? import("./wallet/com.zypto/image.js").then((img) => img.default) + : import("./wallet/com.zypto/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.trusteeglobal": { + case "com.broearn": { return ( image - ? import("./wallet/com.trusteeglobal/image.js").then( - (img) => img.default, - ) - : import("./wallet/com.trusteeglobal/index.js").then((w) => w.wallet) + ? import("./wallet/com.broearn/image.js").then((img) => img.default) + : import("./wallet/com.broearn/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "org.mugambo": { + case "io.ttmwallet": { return ( image - ? import("./wallet/org.mugambo/image.js").then((img) => img.default) - : import("./wallet/org.mugambo/index.js").then((w) => w.wallet) + ? import("./wallet/io.ttmwallet/image.js").then((img) => img.default) + : import("./wallet/io.ttmwallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "cc.dropp": { + case "com.tastycrypto": { return ( image - ? import("./wallet/cc.dropp/image.js").then((img) => img.default) - : import("./wallet/cc.dropp/index.js").then((w) => w.wallet) + ? import("./wallet/com.tastycrypto/image.js").then( + (img) => img.default, + ) + : import("./wallet/com.tastycrypto/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "xyz.roam.wallet": { + case "com.ipmb": { return ( image - ? import("./wallet/xyz.roam.wallet/image.js").then( - (img) => img.default, - ) - : import("./wallet/xyz.roam.wallet/index.js").then((w) => w.wallet) + ? import("./wallet/com.ipmb/image.js").then((img) => img.default) + : import("./wallet/com.ipmb/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "world.qoin": { + case "xyz.nestwallet": { return ( image - ? import("./wallet/world.qoin/image.js").then((img) => img.default) - : import("./wallet/world.qoin/index.js").then((w) => w.wallet) + ? import("./wallet/xyz.nestwallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/xyz.nestwallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.meld.app": { + case "app.nicegram": { return ( image - ? import("./wallet/com.meld.app/image.js").then((img) => img.default) - : import("./wallet/com.meld.app/index.js").then((w) => w.wallet) + ? import("./wallet/app.nicegram/image.js").then((img) => img.default) + : import("./wallet/app.nicegram/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.bestwallet": { + case "com.ballet": { return ( image - ? import("./wallet/com.bestwallet/image.js").then( - (img) => img.default, - ) - : import("./wallet/com.bestwallet/index.js").then((w) => w.wallet) + ? import("./wallet/com.ballet/image.js").then((img) => img.default) + : import("./wallet/com.ballet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.hyperpay": { + case "app.omni": { return ( image - ? import("./wallet/io.hyperpay/image.js").then((img) => img.default) - : import("./wallet/io.hyperpay/index.js").then((w) => w.wallet) + ? import("./wallet/app.omni/image.js").then((img) => img.default) + : import("./wallet/app.omni/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.xucre": { + case "io.paraswap": { return ( image - ? import("./wallet/io.xucre/image.js").then((img) => img.default) - : import("./wallet/io.xucre/index.js").then((w) => w.wallet) + ? import("./wallet/io.paraswap/image.js").then((img) => img.default) + : import("./wallet/io.paraswap/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.herewallet": { + case "one.mixin.messenger": { return ( image - ? import("./wallet/app.herewallet/image.js").then( + ? import("./wallet/one.mixin.messenger/image.js").then( (img) => img.default, ) - : import("./wallet/app.herewallet/index.js").then((w) => w.wallet) + : import("./wallet/one.mixin.messenger/index.js").then( + (w) => w.wallet, + ) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.cakewallet": { + case "com.cryptokara": { return ( image - ? import("./wallet/com.cakewallet/image.js").then( + ? import("./wallet/com.cryptokara/image.js").then( (img) => img.default, ) - : import("./wallet/com.cakewallet/index.js").then((w) => w.wallet) + : import("./wallet/com.cryptokara/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.unagi.unawallet": { + case "com.caesiumlab": { return ( image - ? import("./wallet/io.unagi.unawallet/image.js").then( + ? import("./wallet/com.caesiumlab/image.js").then( (img) => img.default, ) - : import("./wallet/io.unagi.unawallet/index.js").then((w) => w.wallet) + : import("./wallet/com.caesiumlab/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.ethos": { + case "com.nodle": { return ( image - ? import("./wallet/io.ethos/image.js").then((img) => img.default) - : import("./wallet/io.ethos/index.js").then((w) => w.wallet) + ? import("./wallet/com.nodle/image.js").then((img) => img.default) + : import("./wallet/com.nodle/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.pluswallet": { + case "io.universaleverything": { return ( image - ? import("./wallet/app.pluswallet/image.js").then( + ? import("./wallet/io.universaleverything/image.js").then( (img) => img.default, ) - : import("./wallet/app.pluswallet/index.js").then((w) => w.wallet) + : import("./wallet/io.universaleverything/index.js").then( + (w) => w.wallet, + ) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.authentrend": { + case "finance.islamicoin": { return ( image - ? import("./wallet/com.authentrend/image.js").then( + ? import("./wallet/finance.islamicoin/image.js").then( (img) => img.default, ) - : import("./wallet/com.authentrend/index.js").then((w) => w.wallet) + : import("./wallet/finance.islamicoin/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "finance.plena": { + case "com.thirdweb": { return ( image - ? import("./wallet/finance.plena/image.js").then((img) => img.default) - : import("./wallet/finance.plena/index.js").then((w) => w.wallet) + ? import("./wallet/com.thirdweb/image.js").then((img) => img.default) + : import("./wallet/com.thirdweb/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.wemix": { + case "com.opz": { return ( image - ? import("./wallet/com.wemix/image.js").then((img) => img.default) - : import("./wallet/com.wemix/index.js").then((w) => w.wallet) + ? import("./wallet/com.opz/image.js").then((img) => img.default) + : import("./wallet/com.opz/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.gemwallet": { + case "fun.tobi": { return ( image - ? import("./wallet/com.gemwallet/image.js").then((img) => img.default) - : import("./wallet/com.gemwallet/index.js").then((w) => w.wallet) + ? import("./wallet/fun.tobi/image.js").then((img) => img.default) + : import("./wallet/fun.tobi/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.caesiumlab": { + case "trade.flooz.wallet": { return ( image - ? import("./wallet/com.caesiumlab/image.js").then( + ? import("./wallet/trade.flooz.wallet/image.js").then( (img) => img.default, ) - : import("./wallet/com.caesiumlab/index.js").then((w) => w.wallet) - ) as Promise<[TImage] extends [true] ? string : any>; - } - case "pro.fintoken": { - return ( - image - ? import("./wallet/pro.fintoken/image.js").then((img) => img.default) - : import("./wallet/pro.fintoken/index.js").then((w) => w.wallet) + : import("./wallet/trade.flooz.wallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.peakdefi": { + case "org.talkapp": { return ( image - ? import("./wallet/com.peakdefi/image.js").then((img) => img.default) - : import("./wallet/com.peakdefi/index.js").then((w) => w.wallet) + ? import("./wallet/org.talkapp/image.js").then((img) => img.default) + : import("./wallet/org.talkapp/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.nodle": { + case "io.plutope": { return ( - image - ? import("./wallet/com.nodle/image.js").then((img) => img.default) - : import("./wallet/com.nodle/index.js").then((w) => w.wallet) + image + ? import("./wallet/io.plutope/image.js").then((img) => img.default) + : import("./wallet/io.plutope/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.cryptokara": { + case "org.ecoinwallet": { return ( image - ? import("./wallet/com.cryptokara/image.js").then( + ? import("./wallet/org.ecoinwallet/image.js").then( (img) => img.default, ) - : import("./wallet/com.cryptokara/index.js").then((w) => w.wallet) + : import("./wallet/org.ecoinwallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } case "com.poolsmobility.wallet": { @@ -2200,36 +2322,34 @@ export async function getWalletInfo( ) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.veworld": { + case "xyz.roam.wallet": { return ( image - ? import("./wallet/com.veworld/image.js").then((img) => img.default) - : import("./wallet/com.veworld/index.js").then((w) => w.wallet) + ? import("./wallet/xyz.roam.wallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/xyz.roam.wallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.azcoiner": { + case "com.dextrade": { return ( image - ? import("./wallet/com.azcoiner/image.js").then((img) => img.default) - : import("./wallet/com.azcoiner/index.js").then((w) => w.wallet) + ? import("./wallet/com.dextrade/image.js").then((img) => img.default) + : import("./wallet/com.dextrade/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "technology.jambo": { + case "app.gamic": { return ( image - ? import("./wallet/technology.jambo/image.js").then( - (img) => img.default, - ) - : import("./wallet/technology.jambo/index.js").then((w) => w.wallet) + ? import("./wallet/app.gamic/image.js").then((img) => img.default) + : import("./wallet/app.gamic/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "vc.uincubator.api": { + case "world.fncy": { return ( image - ? import("./wallet/vc.uincubator.api/image.js").then( - (img) => img.default, - ) - : import("./wallet/vc.uincubator.api/index.js").then((w) => w.wallet) + ? import("./wallet/world.fncy/image.js").then((img) => img.default) + : import("./wallet/world.fncy/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } case "app.m1nty": { @@ -2239,809 +2359,805 @@ export async function getWalletInfo( : import("./wallet/app.m1nty/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.noone": { + case "com.3swallet": { return ( image - ? import("./wallet/io.noone/image.js").then((img) => img.default) - : import("./wallet/io.noone/index.js").then((w) => w.wallet) + ? import("./wallet/com.3swallet/image.js").then((img) => img.default) + : import("./wallet/com.3swallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.bitso": { + case "app.catecoin": { return ( image - ? import("./wallet/com.bitso/image.js").then((img) => img.default) - : import("./wallet/com.bitso/index.js").then((w) => w.wallet) + ? import("./wallet/app.catecoin/image.js").then((img) => img.default) + : import("./wallet/app.catecoin/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "online.puzzle": { + case "com.payperless": { return ( image - ? import("./wallet/online.puzzle/image.js").then((img) => img.default) - : import("./wallet/online.puzzle/index.js").then((w) => w.wallet) + ? import("./wallet/com.payperless/image.js").then( + (img) => img.default, + ) + : import("./wallet/com.payperless/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "network.blackfort": { + case "com.coincircle": { return ( image - ? import("./wallet/network.blackfort/image.js").then( + ? import("./wallet/com.coincircle/image.js").then( (img) => img.default, ) - : import("./wallet/network.blackfort/index.js").then((w) => w.wallet) + : import("./wallet/com.coincircle/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.armana.portal": { + case "io.helixid": { return ( image - ? import("./wallet/io.armana.portal/image.js").then( - (img) => img.default, - ) - : import("./wallet/io.armana.portal/index.js").then((w) => w.wallet) + ? import("./wallet/io.helixid/image.js").then((img) => img.default) + : import("./wallet/io.helixid/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.bharatbox": { + case "io.passpay": { return ( image - ? import("./wallet/io.bharatbox/image.js").then((img) => img.default) - : import("./wallet/io.bharatbox/index.js").then((w) => w.wallet) + ? import("./wallet/io.passpay/image.js").then((img) => img.default) + : import("./wallet/io.passpay/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.greengloryglobal": { + case "com.kresus": { return ( image - ? import("./wallet/com.greengloryglobal/image.js").then( - (img) => img.default, - ) - : import("./wallet/com.greengloryglobal/index.js").then( - (w) => w.wallet, - ) + ? import("./wallet/com.kresus/image.js").then((img) => img.default) + : import("./wallet/com.kresus/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.x9wallet": { + case "com.nufinetes": { return ( image - ? import("./wallet/com.x9wallet/image.js").then((img) => img.default) - : import("./wallet/com.x9wallet/index.js").then((w) => w.wallet) + ? import("./wallet/com.nufinetes/image.js").then((img) => img.default) + : import("./wallet/com.nufinetes/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.miraiapp": { + case "world.qoin": { return ( image - ? import("./wallet/io.miraiapp/image.js").then((img) => img.default) - : import("./wallet/io.miraiapp/index.js").then((w) => w.wallet) + ? import("./wallet/world.qoin/image.js").then((img) => img.default) + : import("./wallet/world.qoin/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.kigo": { + case "io.copiosa": { return ( image - ? import("./wallet/io.kigo/image.js").then((img) => img.default) - : import("./wallet/io.kigo/index.js").then((w) => w.wallet) + ? import("./wallet/io.copiosa/image.js").then((img) => img.default) + : import("./wallet/io.copiosa/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.getcogni": { + case "io.ancrypto": { return ( image - ? import("./wallet/com.getcogni/image.js").then((img) => img.default) - : import("./wallet/com.getcogni/index.js").then((w) => w.wallet) + ? import("./wallet/io.ancrypto/image.js").then((img) => img.default) + : import("./wallet/io.ancrypto/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.fastex.wallet": { + case "app.keeper-wallet": { return ( image - ? import("./wallet/com.fastex.wallet/image.js").then( + ? import("./wallet/app.keeper-wallet/image.js").then( (img) => img.default, ) - : import("./wallet/com.fastex.wallet/index.js").then((w) => w.wallet) + : import("./wallet/app.keeper-wallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.wallacy": { + case "io.bharatbox": { return ( image - ? import("./wallet/io.wallacy/image.js").then((img) => img.default) - : import("./wallet/io.wallacy/index.js").then((w) => w.wallet) + ? import("./wallet/io.bharatbox/image.js").then((img) => img.default) + : import("./wallet/io.bharatbox/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "org.talkapp": { + case "xyz.orion": { return ( image - ? import("./wallet/org.talkapp/image.js").then((img) => img.default) - : import("./wallet/org.talkapp/index.js").then((w) => w.wallet) + ? import("./wallet/xyz.orion/image.js").then((img) => img.default) + : import("./wallet/xyz.orion/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.usecapsule": { + case "com.cryptnox": { return ( image - ? import("./wallet/com.usecapsule/image.js").then( - (img) => img.default, - ) - : import("./wallet/com.usecapsule/index.js").then((w) => w.wallet) + ? import("./wallet/com.cryptnox/image.js").then((img) => img.default) + : import("./wallet/com.cryptnox/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.unitywallet": { + case "zone.bitverse": { return ( image - ? import("./wallet/com.unitywallet/image.js").then( - (img) => img.default, - ) - : import("./wallet/com.unitywallet/index.js").then((w) => w.wallet) + ? import("./wallet/zone.bitverse/image.js").then((img) => img.default) + : import("./wallet/zone.bitverse/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.sinum": { + case "cc.dropp": { return ( image - ? import("./wallet/app.sinum/image.js").then((img) => img.default) - : import("./wallet/app.sinum/index.js").then((w) => w.wallet) + ? import("./wallet/cc.dropp/image.js").then((img) => img.default) + : import("./wallet/cc.dropp/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "finance.soulswap.app": { + case "com.sinohope": { return ( image - ? import("./wallet/finance.soulswap.app/image.js").then( - (img) => img.default, - ) - : import("./wallet/finance.soulswap.app/index.js").then( - (w) => w.wallet, - ) + ? import("./wallet/com.sinohope/image.js").then((img) => img.default) + : import("./wallet/com.sinohope/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.shapeshift": { + case "ai.hacken": { return ( image - ? import("./wallet/com.shapeshift/image.js").then( - (img) => img.default, - ) - : import("./wallet/com.shapeshift/index.js").then((w) => w.wallet) + ? import("./wallet/ai.hacken/image.js").then((img) => img.default) + : import("./wallet/ai.hacken/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "finance.panaroma": { + case "net.spatium": { return ( image - ? import("./wallet/finance.panaroma/image.js").then( - (img) => img.default, - ) - : import("./wallet/finance.panaroma/index.js").then((w) => w.wallet) + ? import("./wallet/net.spatium/image.js").then((img) => img.default) + : import("./wallet/net.spatium/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.neopin": { + case "com.bitnovo": { return ( image - ? import("./wallet/io.neopin/image.js").then((img) => img.default) - : import("./wallet/io.neopin/index.js").then((w) => w.wallet) + ? import("./wallet/com.bitnovo/image.js").then((img) => img.default) + : import("./wallet/com.bitnovo/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.alicebob": { + case "co.swopme": { return ( image - ? import("./wallet/com.alicebob/image.js").then((img) => img.default) - : import("./wallet/com.alicebob/index.js").then((w) => w.wallet) + ? import("./wallet/co.swopme/image.js").then((img) => img.default) + : import("./wallet/co.swopme/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "co.cyber.wallet": { + case "land.liker": { return ( image - ? import("./wallet/co.cyber.wallet/image.js").then( - (img) => img.default, - ) - : import("./wallet/co.cyber.wallet/index.js").then((w) => w.wallet) + ? import("./wallet/land.liker/image.js").then((img) => img.default) + : import("./wallet/land.liker/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.dextrade": { + case "io.owallet": { return ( image - ? import("./wallet/com.dextrade/image.js").then((img) => img.default) - : import("./wallet/com.dextrade/index.js").then((w) => w.wallet) + ? import("./wallet/io.owallet/image.js").then((img) => img.default) + : import("./wallet/io.owallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.hashpack.wallet": { + case "com.dolletwallet": { return ( image - ? import("./wallet/com.hashpack.wallet/image.js").then( + ? import("./wallet/com.dolletwallet/image.js").then( (img) => img.default, ) - : import("./wallet/com.hashpack.wallet/index.js").then( - (w) => w.wallet, - ) + : import("./wallet/com.dolletwallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "org.thepulsewallet": { + case "net.shinobi-wallet": { return ( image - ? import("./wallet/org.thepulsewallet/image.js").then( + ? import("./wallet/net.shinobi-wallet/image.js").then( (img) => img.default, ) - : import("./wallet/org.thepulsewallet/index.js").then((w) => w.wallet) + : import("./wallet/net.shinobi-wallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "id.co.pintu": { + case "com.azcoiner": { return ( image - ? import("./wallet/id.co.pintu/image.js").then((img) => img.default) - : import("./wallet/id.co.pintu/index.js").then((w) => w.wallet) + ? import("./wallet/com.azcoiner/image.js").then((img) => img.default) + : import("./wallet/com.azcoiner/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.bladewallet": { + case "com.pierwallet": { return ( image - ? import("./wallet/io.bladewallet/image.js").then( + ? import("./wallet/com.pierwallet/image.js").then( (img) => img.default, ) - : import("./wallet/io.bladewallet/index.js").then((w) => w.wallet) - ) as Promise<[TImage] extends [true] ? string : any>; - } - case "com.pandoshi": { - return ( - image - ? import("./wallet/com.pandoshi/image.js").then((img) => img.default) - : import("./wallet/com.pandoshi/index.js").then((w) => w.wallet) + : import("./wallet/com.pierwallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "money.keychain": { + case "io.talken": { return ( image - ? import("./wallet/money.keychain/image.js").then( - (img) => img.default, - ) - : import("./wallet/money.keychain/index.js").then((w) => w.wallet) + ? import("./wallet/io.talken/image.js").then((img) => img.default) + : import("./wallet/io.talken/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.mpcvault.broswerplugin": { + case "com.passwallet.app": { return ( image - ? import("./wallet/com.mpcvault.broswerplugin/image.js").then( + ? import("./wallet/com.passwallet.app/image.js").then( (img) => img.default, ) - : import("./wallet/com.mpcvault.broswerplugin/index.js").then( - (w) => w.wallet, - ) + : import("./wallet/com.passwallet.app/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.legacynetwork": { + case "com.coinex.wallet": { return ( image - ? import("./wallet/io.legacynetwork/image.js").then( + ? import("./wallet/com.coinex.wallet/image.js").then( (img) => img.default, - ) - : import("./wallet/io.legacynetwork/index.js").then((w) => w.wallet) - ) as Promise<[TImage] extends [true] ? string : any>; - } - case "io.getclave": { - return ( - image - ? import("./wallet/io.getclave/image.js").then((img) => img.default) - : import("./wallet/io.getclave/index.js").then((w) => w.wallet) + ) + : import("./wallet/com.coinex.wallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "me.iopay": { + case "pub.dg": { return ( image - ? import("./wallet/me.iopay/image.js").then((img) => img.default) - : import("./wallet/me.iopay/index.js").then((w) => w.wallet) + ? import("./wallet/pub.dg/image.js").then((img) => img.default) + : import("./wallet/pub.dg/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.kabila": { + case "app.xverse": { return ( image - ? import("./wallet/app.kabila/image.js").then((img) => img.default) - : import("./wallet/app.kabila/index.js").then((w) => w.wallet) + ? import("./wallet/app.xverse/image.js").then((img) => img.default) + : import("./wallet/app.xverse/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "one.mixin.messenger": { + case "nl.greenhood.wallet": { return ( image - ? import("./wallet/one.mixin.messenger/image.js").then( + ? import("./wallet/nl.greenhood.wallet/image.js").then( (img) => img.default, ) - : import("./wallet/one.mixin.messenger/index.js").then( + : import("./wallet/nl.greenhood.wallet/index.js").then( (w) => w.wallet, ) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.bettatrade": { + case "com.flash-wallet": { return ( image - ? import("./wallet/com.bettatrade/image.js").then( + ? import("./wallet/com.flash-wallet/image.js").then( (img) => img.default, ) - : import("./wallet/com.bettatrade/index.js").then((w) => w.wallet) + : import("./wallet/com.flash-wallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.scramberry": { + case "com.vgxfoundation": { return ( image - ? import("./wallet/io.scramberry/image.js").then((img) => img.default) - : import("./wallet/io.scramberry/index.js").then((w) => w.wallet) + ? import("./wallet/com.vgxfoundation/image.js").then( + (img) => img.default, + ) + : import("./wallet/com.vgxfoundation/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.earthwallet": { + case "org.arianee": { return ( image - ? import("./wallet/io.earthwallet/image.js").then( - (img) => img.default, - ) - : import("./wallet/io.earthwallet/index.js").then((w) => w.wallet) + ? import("./wallet/org.arianee/image.js").then((img) => img.default) + : import("./wallet/org.arianee/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "xyz.nestwallet": { + case "ai.spotonchain.platform": { return ( image - ? import("./wallet/xyz.nestwallet/image.js").then( + ? import("./wallet/ai.spotonchain.platform/image.js").then( (img) => img.default, ) - : import("./wallet/xyz.nestwallet/index.js").then((w) => w.wallet) + : import("./wallet/ai.spotonchain.platform/index.js").then( + (w) => w.wallet, + ) ) as Promise<[TImage] extends [true] ? string : any>; } - case "xyz.echooo": { + case "com.tiduswallet": { return ( image - ? import("./wallet/xyz.echooo/image.js").then((img) => img.default) - : import("./wallet/xyz.echooo/index.js").then((w) => w.wallet) + ? import("./wallet/com.tiduswallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/com.tiduswallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "net.myrenegade": { + case "technology.obvious": { return ( image - ? import("./wallet/net.myrenegade/image.js").then( + ? import("./wallet/technology.obvious/image.js").then( (img) => img.default, ) - : import("./wallet/net.myrenegade/index.js").then((w) => w.wallet) + : import("./wallet/technology.obvious/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.ready": { + case "com.daffione": { return ( image - ? import("./wallet/io.ready/image.js").then((img) => img.default) - : import("./wallet/io.ready/index.js").then((w) => w.wallet) + ? import("./wallet/com.daffione/image.js").then((img) => img.default) + : import("./wallet/com.daffione/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "ai.hacken": { + case "com.webauth": { return ( image - ? import("./wallet/ai.hacken/image.js").then((img) => img.default) - : import("./wallet/ai.hacken/index.js").then((w) => w.wallet) + ? import("./wallet/com.webauth/image.js").then((img) => img.default) + : import("./wallet/com.webauth/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.plutope": { + case "app.tofee": { return ( image - ? import("./wallet/io.plutope/image.js").then((img) => img.default) - : import("./wallet/io.plutope/index.js").then((w) => w.wallet) + ? import("./wallet/app.tofee/image.js").then((img) => img.default) + : import("./wallet/app.tofee/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.trustasset": { + case "io.didwallet": { return ( image - ? import("./wallet/io.trustasset/image.js").then((img) => img.default) - : import("./wallet/io.trustasset/index.js").then((w) => w.wallet) + ? import("./wallet/io.didwallet/image.js").then((img) => img.default) + : import("./wallet/io.didwallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.dfinnwallet": { + case "xyz.bonuz": { return ( image - ? import("./wallet/app.dfinnwallet/image.js").then( - (img) => img.default, - ) - : import("./wallet/app.dfinnwallet/index.js").then((w) => w.wallet) + ? import("./wallet/xyz.bonuz/image.js").then((img) => img.default) + : import("./wallet/xyz.bonuz/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.bmawallet": { + case "social.gm2": { return ( image - ? import("./wallet/com.bmawallet/image.js").then((img) => img.default) - : import("./wallet/com.bmawallet/index.js").then((w) => w.wallet) + ? import("./wallet/social.gm2/image.js").then((img) => img.default) + : import("./wallet/social.gm2/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "net.spatium.wallet": { + case "co.cyber.wallet": { return ( image - ? import("./wallet/net.spatium.wallet/image.js").then( + ? import("./wallet/co.cyber.wallet/image.js").then( (img) => img.default, ) - : import("./wallet/net.spatium.wallet/index.js").then((w) => w.wallet) + : import("./wallet/co.cyber.wallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.transi": { + case "me.astrox": { return ( image - ? import("./wallet/io.transi/image.js").then((img) => img.default) - : import("./wallet/io.transi/index.js").then((w) => w.wallet) + ? import("./wallet/me.astrox/image.js").then((img) => img.default) + : import("./wallet/me.astrox/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.dolletwallet": { + case "fi.pillar": { return ( image - ? import("./wallet/com.dolletwallet/image.js").then( - (img) => img.default, - ) - : import("./wallet/com.dolletwallet/index.js").then((w) => w.wallet) + ? import("./wallet/fi.pillar/image.js").then((img) => img.default) + : import("./wallet/fi.pillar/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.wombat": { + case "io.buzz-up": { return ( image - ? import("./wallet/app.wombat/image.js").then((img) => img.default) - : import("./wallet/app.wombat/index.js").then((w) => w.wallet) + ? import("./wallet/io.buzz-up/image.js").then((img) => img.default) + : import("./wallet/io.buzz-up/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "fi.dropmate": { + case "io.moonstake": { return ( image - ? import("./wallet/fi.dropmate/image.js").then((img) => img.default) - : import("./wallet/fi.dropmate/index.js").then((w) => w.wallet) + ? import("./wallet/io.moonstake/image.js").then((img) => img.default) + : import("./wallet/io.moonstake/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "pub.dg": { + case "io.hippowallet": { return ( image - ? import("./wallet/pub.dg/image.js").then((img) => img.default) - : import("./wallet/pub.dg/index.js").then((w) => w.wallet) + ? import("./wallet/io.hippowallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/io.hippowallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.icewal": { + case "com.amazewallet": { return ( image - ? import("./wallet/com.icewal/image.js").then((img) => img.default) - : import("./wallet/com.icewal/index.js").then((w) => w.wallet) + ? import("./wallet/com.amazewallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/com.amazewallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "one.metapro.wallet": { + case "com.kriptonio": { return ( image - ? import("./wallet/one.metapro.wallet/image.js").then( - (img) => img.default, - ) - : import("./wallet/one.metapro.wallet/index.js").then((w) => w.wallet) + ? import("./wallet/com.kriptonio/image.js").then((img) => img.default) + : import("./wallet/com.kriptonio/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "xyz.bonuz": { + case "io.altme": { return ( image - ? import("./wallet/xyz.bonuz/image.js").then((img) => img.default) - : import("./wallet/xyz.bonuz/index.js").then((w) => w.wallet) + ? import("./wallet/io.altme/image.js").then((img) => img.default) + : import("./wallet/io.altme/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.shido": { + case "io.ukiss": { return ( image - ? import("./wallet/io.shido/image.js").then((img) => img.default) - : import("./wallet/io.shido/index.js").then((w) => w.wallet) + ? import("./wallet/io.ukiss/image.js").then((img) => img.default) + : import("./wallet/io.ukiss/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "co.lifedefi": { + case "fi.dropmate": { return ( image - ? import("./wallet/co.lifedefi/image.js").then((img) => img.default) - : import("./wallet/co.lifedefi/index.js").then((w) => w.wallet) + ? import("./wallet/fi.dropmate/image.js").then((img) => img.default) + : import("./wallet/fi.dropmate/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "fun.tobi": { + case "io.zelus": { return ( image - ? import("./wallet/fun.tobi/image.js").then((img) => img.default) - : import("./wallet/fun.tobi/index.js").then((w) => w.wallet) + ? import("./wallet/io.zelus/image.js").then((img) => img.default) + : import("./wallet/io.zelus/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "inc.tomo": { + case "io.xucre": { return ( image - ? import("./wallet/inc.tomo/image.js").then((img) => img.default) - : import("./wallet/inc.tomo/index.js").then((w) => w.wallet) + ? import("./wallet/io.xucre/image.js").then((img) => img.default) + : import("./wallet/io.xucre/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.clot": { + case "net.myrenegade": { return ( image - ? import("./wallet/app.clot/image.js").then((img) => img.default) - : import("./wallet/app.clot/index.js").then((w) => w.wallet) + ? import("./wallet/net.myrenegade/image.js").then( + (img) => img.default, + ) + : import("./wallet/net.myrenegade/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "me.komet.app": { + case "net.stasis": { return ( image - ? import("./wallet/me.komet.app/image.js").then((img) => img.default) - : import("./wallet/me.komet.app/index.js").then((w) => w.wallet) + ? import("./wallet/net.stasis/image.js").then((img) => img.default) + : import("./wallet/net.stasis/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.guardiianwallet": { + case "io.clingon": { return ( image - ? import("./wallet/io.guardiianwallet/image.js").then( - (img) => img.default, - ) - : import("./wallet/io.guardiianwallet/index.js").then((w) => w.wallet) + ? import("./wallet/io.clingon/image.js").then((img) => img.default) + : import("./wallet/io.clingon/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.wallypto": { + case "com.humbl": { return ( image - ? import("./wallet/io.wallypto/image.js").then((img) => img.default) - : import("./wallet/io.wallypto/index.js").then((w) => w.wallet) + ? import("./wallet/com.humbl/image.js").then((img) => img.default) + : import("./wallet/com.humbl/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.safemoon": { + case "com.peakdefi": { return ( image - ? import("./wallet/com.safemoon/image.js").then((img) => img.default) - : import("./wallet/com.safemoon/index.js").then((w) => w.wallet) + ? import("./wallet/com.peakdefi/image.js").then((img) => img.default) + : import("./wallet/com.peakdefi/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.elrond.maiar.wallet": { + case "network.dgg": { return ( image - ? import("./wallet/com.elrond.maiar.wallet/image.js").then( + ? import("./wallet/network.dgg/image.js").then((img) => img.default) + : import("./wallet/network.dgg/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } + case "finance.panaroma": { + return ( + image + ? import("./wallet/finance.panaroma/image.js").then( (img) => img.default, ) - : import("./wallet/com.elrond.maiar.wallet/index.js").then( - (w) => w.wallet, - ) + : import("./wallet/finance.panaroma/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "co.swopme": { + case "com.icewal": { return ( image - ? import("./wallet/co.swopme/image.js").then((img) => img.default) - : import("./wallet/co.swopme/index.js").then((w) => w.wallet) + ? import("./wallet/com.icewal/image.js").then((img) => img.default) + : import("./wallet/com.icewal/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.bitpay": { + case "io.streakk": { return ( image - ? import("./wallet/com.bitpay/image.js").then((img) => img.default) - : import("./wallet/com.bitpay/index.js").then((w) => w.wallet) + ? import("./wallet/io.streakk/image.js").then((img) => img.default) + : import("./wallet/io.streakk/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.tofee": { + case "network.gridlock": { return ( image - ? import("./wallet/app.tofee/image.js").then((img) => img.default) - : import("./wallet/app.tofee/index.js").then((w) => w.wallet) + ? import("./wallet/network.gridlock/image.js").then( + (img) => img.default, + ) + : import("./wallet/network.gridlock/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.zypto": { + case "network.trustkeys": { return ( image - ? import("./wallet/com.zypto/image.js").then((img) => img.default) - : import("./wallet/com.zypto/index.js").then((w) => w.wallet) + ? import("./wallet/network.trustkeys/image.js").then( + (img) => img.default, + ) + : import("./wallet/network.trustkeys/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "xyz.orion": { + case "finance.slingshot": { return ( image - ? import("./wallet/xyz.orion/image.js").then((img) => img.default) - : import("./wallet/xyz.orion/index.js").then((w) => w.wallet) + ? import("./wallet/finance.slingshot/image.js").then( + (img) => img.default, + ) + : import("./wallet/finance.slingshot/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.uptn.dapp-web": { + case "com.mpcvault.broswerplugin": { return ( image - ? import("./wallet/io.uptn.dapp-web/image.js").then( + ? import("./wallet/com.mpcvault.broswerplugin/image.js").then( (img) => img.default, ) - : import("./wallet/io.uptn.dapp-web/index.js").then((w) => w.wallet) + : import("./wallet/com.mpcvault.broswerplugin/index.js").then( + (w) => w.wallet, + ) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.compasswallet": { + case "digital.minerva": { return ( image - ? import("./wallet/io.compasswallet/image.js").then( + ? import("./wallet/digital.minerva/image.js").then( (img) => img.default, ) - : import("./wallet/io.compasswallet/index.js").then((w) => w.wallet) + : import("./wallet/digital.minerva/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.nicegram": { + case "finance.porta": { return ( image - ? import("./wallet/app.nicegram/image.js").then((img) => img.default) - : import("./wallet/app.nicegram/index.js").then((w) => w.wallet) + ? import("./wallet/finance.porta/image.js").then((img) => img.default) + : import("./wallet/finance.porta/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "finance.openwallet": { + case "io.earthwallet": { return ( image - ? import("./wallet/finance.openwallet/image.js").then( + ? import("./wallet/io.earthwallet/image.js").then( (img) => img.default, ) - : import("./wallet/finance.openwallet/index.js").then((w) => w.wallet) + : import("./wallet/io.earthwallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.tastycrypto": { + case "app.clot": { return ( image - ? import("./wallet/com.tastycrypto/image.js").then( - (img) => img.default, - ) - : import("./wallet/com.tastycrypto/index.js").then((w) => w.wallet) + ? import("./wallet/app.clot/image.js").then((img) => img.default) + : import("./wallet/app.clot/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.ipmb": { + case "com.alicebob": { return ( image - ? import("./wallet/com.ipmb/image.js").then((img) => img.default) - : import("./wallet/com.ipmb/index.js").then((w) => w.wallet) + ? import("./wallet/com.alicebob/image.js").then((img) => img.default) + : import("./wallet/com.alicebob/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.daffione": { + case "net.spatium.wallet": { return ( image - ? import("./wallet/com.daffione/image.js").then((img) => img.default) - : import("./wallet/com.daffione/index.js").then((w) => w.wallet) + ? import("./wallet/net.spatium.wallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/net.spatium.wallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.owallet": { + case "id.plumaa": { return ( image - ? import("./wallet/io.owallet/image.js").then((img) => img.default) - : import("./wallet/io.owallet/index.js").then((w) => w.wallet) + ? import("./wallet/id.plumaa/image.js").then((img) => img.default) + : import("./wallet/id.plumaa/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.beexo": { + case "com.apollox": { return ( image - ? import("./wallet/com.beexo/image.js").then((img) => img.default) - : import("./wallet/com.beexo/index.js").then((w) => w.wallet) + ? import("./wallet/com.apollox/image.js").then((img) => img.default) + : import("./wallet/com.apollox/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.webauth": { + case "io.legacynetwork": { return ( image - ? import("./wallet/com.webauth/image.js").then((img) => img.default) - : import("./wallet/com.webauth/index.js").then((w) => w.wallet) + ? import("./wallet/io.legacynetwork/image.js").then( + (img) => img.default, + ) + : import("./wallet/io.legacynetwork/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "id.plumaa": { + case "io.ethos": { return ( image - ? import("./wallet/id.plumaa/image.js").then((img) => img.default) - : import("./wallet/id.plumaa/index.js").then((w) => w.wallet) + ? import("./wallet/io.ethos/image.js").then((img) => img.default) + : import("./wallet/io.ethos/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "social.gm2": { + case "com.rktechworks": { return ( image - ? import("./wallet/social.gm2/image.js").then((img) => img.default) - : import("./wallet/social.gm2/index.js").then((w) => w.wallet) + ? import("./wallet/com.rktechworks/image.js").then( + (img) => img.default, + ) + : import("./wallet/com.rktechworks/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "nl.greenhood.wallet": { + case "com.greengloryglobal": { return ( image - ? import("./wallet/nl.greenhood.wallet/image.js").then( + ? import("./wallet/com.greengloryglobal/image.js").then( (img) => img.default, ) - : import("./wallet/nl.greenhood.wallet/index.js").then( + : import("./wallet/com.greengloryglobal/index.js").then( (w) => w.wallet, ) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.companyname.swaptobe": { + case "co.filwallet": { return ( image - ? import("./wallet/com.companyname.swaptobe/image.js").then( + ? import("./wallet/co.filwallet/image.js").then((img) => img.default) + : import("./wallet/co.filwallet/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } + case "money.snowball": { + return ( + image + ? import("./wallet/money.snowball/image.js").then( (img) => img.default, ) - : import("./wallet/com.companyname.swaptobe/index.js").then( - (w) => w.wallet, + : import("./wallet/money.snowball/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } + case "com.ennowallet": { + return ( + image + ? import("./wallet/com.ennowallet/image.js").then( + (img) => img.default, ) + : import("./wallet/com.ennowallet/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "finance.porta": { + case "io.safematrix": { return ( image - ? import("./wallet/finance.porta/image.js").then((img) => img.default) - : import("./wallet/finance.porta/index.js").then((w) => w.wallet) + ? import("./wallet/io.safematrix/image.js").then((img) => img.default) + : import("./wallet/io.safematrix/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "org.alephium": { + case "pro.assure": { return ( image - ? import("./wallet/org.alephium/image.js").then((img) => img.default) - : import("./wallet/org.alephium/index.js").then((w) => w.wallet) + ? import("./wallet/pro.assure/image.js").then((img) => img.default) + : import("./wallet/pro.assure/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "network.over": { + case "app.edge": { return ( image - ? import("./wallet/network.over/image.js").then((img) => img.default) - : import("./wallet/network.over/index.js").then((w) => w.wallet) + ? import("./wallet/app.edge/image.js").then((img) => img.default) + : import("./wallet/app.edge/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.walletverse": { + case "com.neftipedia": { return ( image - ? import("./wallet/io.walletverse/image.js").then( + ? import("./wallet/com.neftipedia/image.js").then( (img) => img.default, ) - : import("./wallet/io.walletverse/index.js").then((w) => w.wallet) + : import("./wallet/com.neftipedia/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.berasig": { + case "io.goldbit": { return ( image - ? import("./wallet/com.berasig/image.js").then((img) => img.default) - : import("./wallet/com.berasig/index.js").then((w) => w.wallet) + ? import("./wallet/io.goldbit/image.js").then((img) => img.default) + : import("./wallet/io.goldbit/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "org.shefi": { + case "com.coingrig": { return ( image - ? import("./wallet/org.shefi/image.js").then((img) => img.default) - : import("./wallet/org.shefi/index.js").then((w) => w.wallet) + ? import("./wallet/com.coingrig/image.js").then((img) => img.default) + : import("./wallet/com.coingrig/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.wemixplay": { + case "io.xfun": { return ( image - ? import("./wallet/com.wemixplay/image.js").then((img) => img.default) - : import("./wallet/com.wemixplay/index.js").then((w) => w.wallet) + ? import("./wallet/io.xfun/image.js").then((img) => img.default) + : import("./wallet/io.xfun/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "co.family.wallet": { + case "com.antiersolutions": { return ( image - ? import("./wallet/co.family.wallet/image.js").then( + ? import("./wallet/com.antiersolutions/image.js").then( (img) => img.default, ) - : import("./wallet/co.family.wallet/index.js").then((w) => w.wallet) + : import("./wallet/com.antiersolutions/index.js").then( + (w) => w.wallet, + ) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.legionnetwork": { + case "com.itoken": { return ( image - ? import("./wallet/io.legionnetwork/image.js").then( - (img) => img.default, - ) - : import("./wallet/io.legionnetwork/index.js").then((w) => w.wallet) + ? import("./wallet/com.itoken/image.js").then((img) => img.default) + : import("./wallet/com.itoken/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.bitnovo": { + case "com.cardstack": { return ( image - ? import("./wallet/com.bitnovo/image.js").then((img) => img.default) - : import("./wallet/com.bitnovo/index.js").then((w) => w.wallet) + ? import("./wallet/com.cardstack/image.js").then((img) => img.default) + : import("./wallet/com.cardstack/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.safecryptowallet": { + case "io.slavi": { return ( image - ? import("./wallet/io.safecryptowallet/image.js").then( + ? import("./wallet/io.slavi/image.js").then((img) => img.default) + : import("./wallet/io.slavi/index.js").then((w) => w.wallet) + ) as Promise<[TImage] extends [true] ? string : any>; + } + case "tech.defiantapp": { + return ( + image + ? import("./wallet/tech.defiantapp/image.js").then( (img) => img.default, ) - : import("./wallet/io.safecryptowallet/index.js").then( - (w) => w.wallet, - ) + : import("./wallet/tech.defiantapp/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "ag.jup": { + case "app.imem": { return ( image - ? import("./wallet/ag.jup/image.js").then((img) => img.default) - : import("./wallet/ag.jup/index.js").then((w) => w.wallet) + ? import("./wallet/app.imem/image.js").then((img) => img.default) + : import("./wallet/app.imem/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.koalawallet": { + case "io.walletverse": { return ( image - ? import("./wallet/io.koalawallet/image.js").then( + ? import("./wallet/io.walletverse/image.js").then( (img) => img.default, ) - : import("./wallet/io.koalawallet/index.js").then((w) => w.wallet) + : import("./wallet/io.walletverse/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.nonbank": { + case "com.berasig": { return ( image - ? import("./wallet/io.nonbank/image.js").then((img) => img.default) - : import("./wallet/io.nonbank/index.js").then((w) => w.wallet) + ? import("./wallet/com.berasig/image.js").then((img) => img.default) + : import("./wallet/com.berasig/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "io.universaleverything": { + case "app.phantom": { return ( image - ? import("./wallet/io.universaleverything/image.js").then( - (img) => img.default, - ) - : import("./wallet/io.universaleverything/index.js").then( - (w) => w.wallet, - ) + ? import("./wallet/app.phantom/image.js").then((img) => img.default) + : import("./wallet/app.phantom/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } case "com.coinbase.wallet": { @@ -3080,17 +3196,6 @@ export async function getWalletInfo( : import("./wallet/com.moongate.one/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.blanqlabs.wallet": { - return ( - image - ? import("./wallet/com.blanqlabs.wallet/image.js").then( - (img) => img.default, - ) - : import("./wallet/com.blanqlabs.wallet/index.js").then( - (w) => w.wallet, - ) - ) as Promise<[TImage] extends [true] ? string : any>; - } case "tech.levain": { return ( image @@ -3119,6 +3224,17 @@ export async function getWalletInfo( : import("./wallet/io.finoa/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } + case "com.blanqlabs.wallet": { + return ( + image + ? import("./wallet/com.blanqlabs.wallet/image.js").then( + (img) => img.default, + ) + : import("./wallet/com.blanqlabs.wallet/index.js").then( + (w) => w.wallet, + ) + ) as Promise<[TImage] extends [true] ? string : any>; + } case "com.walletconnect.com": { return ( image @@ -3180,20 +3296,20 @@ export async function getWalletInfo( : import("./wallet/app.berasig/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "com.lootrush": { + case "com.wallet.reown": { return ( image - ? import("./wallet/com.lootrush/image.js").then((img) => img.default) - : import("./wallet/com.lootrush/index.js").then((w) => w.wallet) + ? import("./wallet/com.wallet.reown/image.js").then( + (img) => img.default, + ) + : import("./wallet/com.wallet.reown/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } - case "app.core.extension": { + case "com.lootrush": { return ( image - ? import("./wallet/app.core.extension/image.js").then( - (img) => img.default, - ) - : import("./wallet/app.core.extension/index.js").then((w) => w.wallet) + ? import("./wallet/com.lootrush/image.js").then((img) => img.default) + : import("./wallet/com.lootrush/index.js").then((w) => w.wallet) ) as Promise<[TImage] extends [true] ? string : any>; } case "xyz.dawnwallet": { diff --git a/packages/thirdweb/src/wallets/__generated__/wallet-ids.ts b/packages/thirdweb/src/wallets/__generated__/wallet-ids.ts index cfe9b7837d8..f9ed40465fe 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet-ids.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet-ids.ts @@ -1,461 +1,480 @@ // This file is auto-generated by the `scripts/wallets/generate.ts` script. // Do not modify this file manually. -// 390 wallets +// 403 wallets export type WCSupportedWalletIds = | "io.metamask" | "com.trustwallet.app" - | "com.okex.wallet" | "com.bitget.web3" - | "com.binance" - | "org.uniswap" + | "com.okex.wallet" + | "com.binance.wallet" | "com.safepal" - | "me.rainbow" - | "com.bybit" | "pro.tokenpocket" - | "com.ledger" - | "xyz.timelesswallet" - | "global.safe" + | "com.bybit" + | "org.uniswap" | "io.zerion.wallet" - | "com.robinhood.wallet" - | "io.1inch.wallet" + | "me.rainbow" + | "com.ledger" | "com.crypto.wallet" - | "com.exodus" - | "xyz.argent" - | "im.token" - | "com.blockchain" - | "io.magiceden.wallet" | "com.kraken" + | "io.1inch.wallet" + | "im.token" + | "global.safe" + | "xyz.timelesswallet" + | "com.roninchain.wallet" + | "com.elrond.maiar.wallet" | "app.backpack" - | "com.zengo" - | "com.mewwallet" - | "app.phantom" + | "com.exodus" | "com.fireblocks" - | "org.mathwallet" - | "com.alphawallet" - | "com.roninchain.wallet" - | "com.unstoppabledomains" - | "app.keyring" - | "xyz.frontier.wallet" - | "app.omni" - | "technology.obvious" - | "com.ambire" - | "com.mtpelerin" - | "io.internetmoney" - | "app.walletnow" + | "ag.jup" + | "com.blockchain" + | "io.magiceden.wallet" + | "com.bifrostwallet" + | "com.tangem" + | "com.wemixplay" + | "com.robinhood.wallet" | "com.bitcoin" - | "io.alpha-u.wallet.web" - | "com.coin98" - | "io.myabcwallet" - | "co.arculus" + | "org.mathwallet" + | "network.blackfort" + | "app.keplr" + | "com.bee" + | "com.veworld" + | "com.bestwallet" + | "com.fastex.wallet" + | "com.valoraapp" + | "id.co.pintu" + | "app.core.extension" | "com.opera" + | "app.girin" + | "dev.auroracloud" | "com.chain" - | "io.huddln" - | "com.get-verso" + | "app.wombat" | "me.haha" + | "io.huddln" + | "so.onekey.app.wallet" + | "app.subwallet" | "pk.modular" - | "org.kelp" - | "io.clingon" - | "com.broearn" - | "com.coinomi" - | "com.ripio" + | "com.dcentwallet" + | "io.internetmoney" + | "com.hashpack.wallet" + | "app.kabila" | "com.sabay.wallet" + | "com.mewwallet" | "io.tokoin" - | "world.fncy" - | "io.copiosa" - | "com.liberawallet" - | "io.certhis" - | "com.burritowallet" - | "io.ancrypto" + | "io.atomicwallet" + | "io.leapwallet" + | "io.novawallet" + | "com.flowfoundation.wallet" + | "org.gooddollar" | "network.cvl" - | "io.cypherhq" - | "app.status" - | "io.enjin" - | "io.trinity-tech" + | "com.bitso" + | "com.zengo" + | "com.klipwallet" + | "xyz.argent" | "app.everspace" + | "io.enjin" + | "xyz.uniultra.wallet" + | "social.halo" + | "tech.okto" | "io.kriptomat" + | "co.xellar" + | "network.haqq" | "io.oxalus" - | "org.thetatoken" - | "io.leapwallet" - | "finance.islamicoin" + | "com.ullapay" + | "org.alephium" + | "xyz.frontier.wallet" + | "network.over" + | "money.unstoppable" + | "me.iopay" + | "com.tomi" | "xyz.coca" + | "com.coin98" + | "org.thorwallet" | "com.monarchwallet" - | "co.filwallet" - | "com.valoraapp" - | "com.coincircle" - | "money.snowball" - | "io.paraswap" - | "network.mrhb" - | "com.apollox" - | "com.ennowallet" | "io.loopring.wallet" - | "com.bee" + | "one.metapro.wallet" + | "com.burritowallet" + | "com.mtpelerin" + | "app.pluswallet" | "cc.localtrade.lab" + | "io.uptn.dapp-web" + | "app.herewallet" | "com.xcapit" - | "io.safematrix" - | "com.neonwallet" - | "xyz.sequence" + | "app.zeal" + | "com.oasys-wallet" + | "com.coolbitx.cwsapp" | "app.linen" | "io.nabox" - | "net.spatium" - | "com.cryptnox" - | "com.rktechworks" - | "pro.assure" - | "trade.flooz.wallet" - | "app.keplr" - | "com.crossmint" - | "com.pierwallet" - | "app.core" - | "app.keeper-wallet" - | "com.dcentwallet" + | "co.family.wallet" + | "app.krystal" + | "com.ellipal" + | "io.yusetoken" + | "app.walletnow" + | "com.saakuru.app" + | "com.foxwallet" | "com.withpaper" - | "finance.klever" - | "app.edge" - | "com.neftipedia" - | "io.goldbit" - | "com.coingrig" - | "io.xfun" | "io.ricewallet" - | "com.antiersolutions" | "io.okse" | "com.aktionariat" - | "com.itoken" - | "io.zelus" - | "com.cardstack" + | "io.cypherhq" | "com.paybolt" - | "org.arianee" - | "io.slavi" + | "io.compasswallet" | "com.plasma-wallet" - | "tech.defiantapp" - | "cc.avacus" + | "io.cosmostation" | "org.bytebank" - | "com.coolbitx.cwsapp" + | "com.unstoppabledomains" + | "io.koalawallet" | "com.optowallet" - | "network.trustkeys" + | "io.miraiapp" | "app.beewallet" - | "io.ttmwallet" - | "io.pltwallet" - | "io.helixid" + | "xyz.sequence" + | "io.fizen" | "it.airgap" - | "app.qubic.wallet" + | "org.thepulsewallet" | "com.holdstation" - | "com.saakuru.app" - | "com.3swallet" - | "com.payperless" - | "digital.minerva" - | "finance.voltage" - | "com.lif3" - | "net.shinobi-wallet" - | "com.kryptogo" - | "com.feralfile.app" - | "com.bifrostwallet" - | "com.nufinetes" - | "io.wallet3" + | "com.coinomi" + | "com.trusteeglobal" + | "io.wallacy" + | "technology.jambo" + | "io.bladewallet" + | "app.keyring" | "com.abra" - | "app.imem" | "com.premanft" - | "so.onekey.app.wallet" - | "finance.slingshot" - | "com.kriptonio" + | "xyz.coca" | "xyz.timelesswallet" - | "xyz.ctrl" - | "io.streakk" - | "com.saitamatoken" - | "com.flowfoundation.wallet" - | "io.hippowallet" - | "io.cosmostation" + | "finance.voltage" | "org.bitizen" - | "io.blocto" - | "com.humbl" - | "io.passpay" + | "com.wigwam.wallet" | "app.ultimate" - | "me.astrox" - | "org.thorwallet" + | "com.cakewallet" | "app.fizzwallet" - | "org.arianee" + | "com.kucoin" | "app.stickey" - | "com.klipwallet" + | "com.neonwallet" | "app.coinstats" - | "land.liker" - | "app.krystal" - | "fi.pillar" + | "ai.pundi" + | "com.ripio" + | "co.arculus" | "io.harti" - | "net.stasis" - | "io.novawallet" + | "com.gemwallet" | "io.dttd" - | "com.foxwallet" - | "network.haqq" - | "com.tomi" - | "io.tradestrike" - | "app.subwallet" - | "tech.okto" - | "app.catecoin" - | "io.ukiss" + | "io.zelcore" + | "org.thetatoken" + | "io.blocto" | "com.tellaw" - | "com.tangem" + | "xyz.ctrl" | "is.callback" | "io.summonersarena" - | "co.xellar" - | "io.talken" - | "xyz.uniultra.wallet" - | "io.ozonewallet" - | "com.tiduswallet" + | "com.safemoon" | "world.ixo" - | "xyz.coca" - | "io.zelcore" - | "world.dosi.vault" - | "com.ullapay" - | "com.ellipal" - | "money.unstoppable" - | "dev.auroracloud" - | "zone.bitverse" - | "io.konio" + | "com.bitpie" | "net.gateweb3" - | "app.utorg" - | "com.coinsdo" + | "io.wallypto" + | "io.alpha-u.wallet.web" + | "com.lif3" | "app.ammer" | "us.binance" + | "com.bitpay" | "co.muza" - | "com.fxwallet" + | "jp.co.rakuten-wallet" | "app.ryipay" | "org.dota168" - | "io.altme" - | "com.bitpie" - | "io.moonstake" - | "gg.indi" - | "io.yusetoken" + | "com.alphawallet" + | "io.noone" + | "io.myabcwallet" + | "io.wallet3" | "com.coininn" - | "io.functionx" - | "io.pockie" - | "com.amazewallet" - | "com.paliwallet" + | "com.ambire" + | "cc.avacus" | "me.easy" - | "live.superex" + | "app.utorg" + | "io.scramberry" + | "com.saitamatoken" | "com.secuxtech" - | "io.didwallet" - | "social.halo" - | "com.sinohope" - | "com.ballet" - | "com.opz" - | "io.fizen" - | "com.kresus" - | "com.midoin" + | "finance.openwallet" + | "io.shido" + | "com.unitywallet" | "app.onto" - | "com.oasys-wallet" - | "org.gooddollar" + | "com.companyname.swaptobe" + | "com.midoin" + | "io.hyperpay" | "id.competence" - | "ai.spotonchain.platform" - | "network.dgg" + | "io.tradestrike" | "llc.besc" - | "app.gamic" | "baby.smart" - | "network.gridlock" - | "app.zeal" + | "com.coinsdo" | "com.ivirse" - | "network.trustkeys" | "ch.dssecurity" | "com.concordium" | "io.zkape" - | "com.thirdweb" + | "app.status" | "io.pitaka" - | "com.trusteeglobal" + | "io.ozonewallet" | "org.mugambo" - | "cc.dropp" - | "xyz.roam.wallet" - | "world.qoin" + | "network.mrhb" + | "com.crossmint" + | "io.konio" + | "io.legionnetwork" | "com.meld.app" - | "com.bestwallet" - | "io.hyperpay" - | "io.xucre" - | "app.herewallet" - | "com.cakewallet" - | "io.unagi.unawallet" - | "io.ethos" - | "app.pluswallet" + | "io.pltwallet" | "com.authentrend" - | "finance.plena" + | "io.pockie" | "com.bifrostwallet" - | "com.wemix" - | "com.gemwallet" - | "com.caesiumlab" + | "io.klever" + | "org.kelp" + | "io.ethermail" | "pro.fintoken" - | "com.peakdefi" - | "com.nodle" - | "com.cryptokara" - | "com.poolsmobility.wallet" - | "com.veworld" - | "com.azcoiner" - | "technology.jambo" + | "com.paliwallet" | "vc.uincubator.api" - | "app.m1nty" - | "io.noone" - | "com.bitso" - | "online.puzzle" - | "network.blackfort" + | "io.unagi.unawallet" + | "com.liberawallet" | "io.armana.portal" - | "io.bharatbox" - | "com.greengloryglobal" + | "io.nash" | "com.x9wallet" - | "io.miraiapp" | "io.kigo" - | "com.getcogni" - | "com.fastex.wallet" - | "io.wallacy" - | "org.talkapp" - | "io.zelus" - | "com.usecapsule" - | "com.unitywallet" + | "world.dosi.vault" + | "io.nonbank" + | "app.hbwallet" + | "com.getcogni" + | "gg.indi" + | "app.qubic.wallet" + | "com.fxwallet" | "app.sinum" + | "com.kryptogo" | "finance.soulswap.app" | "com.shapeshift" - | "finance.panaroma" - | "io.neopin" - | "com.alicebob" - | "co.cyber.wallet" - | "com.dextrade" - | "com.hashpack.wallet" - | "org.thepulsewallet" - | "id.co.pintu" - | "io.bladewallet" - | "com.pandoshi" + | "io.ready" + | "org.shefi" | "money.keychain" - | "finance.voltage" - | "com.mpcvault.broswerplugin" - | "io.legacynetwork" + | "com.beexo" + | "live.superex" | "io.getclave" - | "me.iopay" - | "app.kabila" - | "one.mixin.messenger" | "com.bettatrade" - | "io.scramberry" - | "io.earthwallet" - | "xyz.nestwallet" + | "io.neopin" + | "online.puzzle" | "xyz.echooo" - | "net.myrenegade" - | "io.ready" - | "ai.hacken" - | "io.plutope" + | "com.get-verso" + | "com.wemix" + | "io.trinity-tech" | "io.trustasset" | "app.dfinnwallet" | "com.bmawallet" - | "net.spatium.wallet" | "io.transi" - | "com.dolletwallet" - | "app.wombat" - | "fi.dropmate" - | "pub.dg" - | "com.icewal" - | "one.metapro.wallet" - | "xyz.bonuz" - | "io.shido" - | "co.lifedefi" - | "fun.tobi" + | "io.safecryptowallet" + | "finance.plena" + | "io.certhis" | "inc.tomo" - | "app.clot" | "me.komet.app" + | "com.pandoshi" | "io.guardiianwallet" - | "io.wallypto" - | "com.safemoon" - | "com.elrond.maiar.wallet" - | "co.swopme" - | "com.bitpay" - | "app.tofee" + | "com.bscecowallet" + | "co.lifedefi" | "com.zypto" - | "xyz.orion" - | "io.uptn.dapp-web" | "io.nabox" - | "io.compasswallet" - | "app.nicegram" - | "finance.openwallet" + | "com.broearn" + | "io.ttmwallet" | "com.bitget.web3" | "com.tastycrypto" | "com.ipmb" - | "com.daffione" + | "xyz.nestwallet" + | "app.nicegram" + | "com.ballet" + | "app.omni" + | "io.paraswap" + | "one.mixin.messenger" + | "com.cryptokara" + | "com.caesiumlab" + | "com.nodle" + | "io.universaleverything" + | "finance.islamicoin" + | "com.thirdweb" + | "com.opz" + | "fun.tobi" + | "trade.flooz.wallet" + | "org.talkapp" + | "io.plutope" + | "org.ecoinwallet" + | "com.poolsmobility.wallet" + | "xyz.roam.wallet" + | "com.dextrade" + | "app.gamic" + | "world.fncy" + | "app.m1nty" + | "com.3swallet" + | "app.catecoin" + | "com.payperless" + | "com.coincircle" + | "io.helixid" + | "io.passpay" + | "com.kresus" + | "com.nufinetes" + | "world.qoin" + | "io.copiosa" + | "io.ancrypto" + | "app.keeper-wallet" + | "io.bharatbox" + | "xyz.orion" + | "com.cryptnox" + | "zone.bitverse" + | "cc.dropp" + | "com.sinohope" + | "ai.hacken" + | "net.spatium" + | "com.bitnovo" + | "co.swopme" + | "land.liker" | "io.owallet" - | "com.beexo" + | "com.dolletwallet" + | "net.shinobi-wallet" + | "com.azcoiner" + | "com.pierwallet" + | "io.talken" + | "com.passwallet.app" + | "com.coinex.wallet" + | "pub.dg" + | "app.xverse" + | "nl.greenhood.wallet" + | "com.flash-wallet" + | "com.vgxfoundation" + | "org.arianee" + | "ai.spotonchain.platform" + | "com.tiduswallet" + | "technology.obvious" + | "com.daffione" | "com.webauth" - | "id.plumaa" + | "app.tofee" + | "io.didwallet" + | "xyz.bonuz" | "social.gm2" - | "nl.greenhood.wallet" - | "com.companyname.swaptobe" + | "co.cyber.wallet" + | "me.astrox" + | "fi.pillar" + | "io.buzz-up" + | "io.moonstake" + | "io.hippowallet" + | "com.amazewallet" + | "com.kriptonio" + | "io.altme" + | "io.ukiss" + | "fi.dropmate" + | "io.zelus" + | "io.xucre" + | "net.myrenegade" + | "net.stasis" + | "io.clingon" + | "com.humbl" + | "com.peakdefi" + | "network.dgg" + | "finance.panaroma" + | "com.icewal" + | "io.streakk" + | "network.gridlock" + | "network.trustkeys" + | "finance.slingshot" + | "com.mpcvault.broswerplugin" + | "digital.minerva" | "finance.porta" - | "org.alephium" - | "network.over" + | "io.earthwallet" + | "app.clot" + | "com.alicebob" + | "net.spatium.wallet" + | "id.plumaa" + | "com.apollox" + | "io.legacynetwork" + | "io.ethos" + | "com.rktechworks" + | "com.greengloryglobal" + | "co.filwallet" + | "money.snowball" + | "com.ennowallet" + | "io.safematrix" + | "pro.assure" + | "app.edge" + | "com.neftipedia" + | "io.goldbit" + | "com.coingrig" + | "io.xfun" + | "com.antiersolutions" + | "com.itoken" + | "io.zelus" + | "com.cardstack" + | "org.arianee" + | "io.slavi" + | "tech.defiantapp" + | "network.trustkeys" + | "finance.voltage" + | "app.imem" | "io.walletverse" - | "com.berasig" - | "org.shefi" - | "com.wemixplay" - | "co.family.wallet" - | "io.legionnetwork" - | "com.bitnovo" - | "io.safecryptowallet" - | "ag.jup" - | "io.koalawallet" - | "io.nonbank" - | "io.universaleverything"; + | "com.berasig"; -// 61 wallets +// 67 wallets export type InjectedSupportedWalletIds = | "io.metamask" | "com.trustwallet.app" | "com.okex.wallet" - | "me.rainbow" - | "com.bybit" + | "com.binance.wallet" | "pro.tokenpocket" + | "com.bybit" | "io.zerion.wallet" - | "com.robinhood.wallet" + | "me.rainbow" | "com.crypto.wallet" - | "io.magiceden.wallet" - | "com.coinbase.wallet" + | "com.roninchain.wallet" + | "com.elrond.maiar.wallet" | "app.backpack" | "app.phantom" - | "com.roninchain.wallet" + | "io.magiceden.wallet" + | "com.coinbase.wallet" + | "com.bifrostwallet" + | "com.robinhood.wallet" + | "app.keplr" + | "com.fastex.wallet" + | "app.core.extension" + | "so.onekey.app.wallet" + | "app.subwallet" + | "com.hashpack.wallet" + | "com.flowfoundation.wallet" | "xyz.frontier.wallet" - | "com.coin98" | "io.rabby" + | "com.coin98" | "io.loopring.wallet" - | "app.keplr" - | "com.brave.wallet" + | "app.zeal" | "com.coolbitx.cwsapp" - | "com.bifrostwallet" - | "so.onekey.app.wallet" + | "co.family.wallet" + | "com.brave.wallet" + | "com.wigwam.wallet" | "xyz.ctrl" - | "com.flowfoundation.wallet" - | "app.subwallet" - | "app.zeal" - | "xyz.roam.wallet" + | "com.companyname.swaptobe" + | "app.status" | "com.meld.app" | "com.moongate.one" - | "com.cryptokara" - | "com.blanqlabs.wallet" | "tech.levain" | "com.enkrypt" | "com.scramble" - | "com.fastex.wallet" - | "com.dextrade" - | "com.hashpack.wallet" - | "com.mpcvault.broswerplugin" - | "one.mixin.messenger" | "io.finoa" - | "xyz.nestwallet" + | "com.blanqlabs.wallet" | "inc.tomo" | "me.komet.app" | "com.cryptnox" - | "com.elrond.maiar.wallet" | "com.zypto" | "com.walletconnect.com" + | "xyz.nestwallet" | "app.nightly" - | "nl.greenhood.wallet" | "com.blazpay.wallet" - | "com.companyname.swaptobe" | "io.getjoin.prd" | "xyz.talisman" - | "co.family.wallet" + | "one.mixin.messenger" | "eu.flashsoft.clear-wallet" + | "com.cryptokara" | "app.berasig" + | "xyz.roam.wallet" + | "com.dextrade" + | "com.passwallet.app" + | "com.wallet.reown" + | "nl.greenhood.wallet" + | "com.mpcvault.broswerplugin" | "com.lootrush" | "app.core.extension" | "xyz.dawnwallet" | "xyz.abs"; -export type DeepLinkSupportedWalletIds = "io.metamask"; +export type DeepLinkSupportedWalletIds = "io.metamask" | "app.phantom"; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet-infos.ts b/packages/thirdweb/src/wallets/__generated__/wallet-infos.ts index d7c7efcc365..9d524e55233 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet-infos.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet-infos.ts @@ -24,24 +24,19 @@ const ALL_MINIMAL_WALLET_INFOS = ([ name: "Trust Wallet", hasMobileSupport: true, }, - { - id: "com.okex.wallet", - name: "OKX Wallet", - hasMobileSupport: true, - }, { id: "com.bitget.web3", name: "Bitget Wallet", hasMobileSupport: true, }, { - id: "com.binance", - name: "Binance Wallet", + id: "com.okex.wallet", + name: "OKX Wallet", hasMobileSupport: true, }, { - id: "org.uniswap", - name: "Uniswap Wallet", + id: "com.binance.wallet", + name: "Binance Wallet", hasMobileSupport: true, }, { @@ -50,8 +45,8 @@ const ALL_MINIMAL_WALLET_INFOS = ([ hasMobileSupport: true, }, { - id: "me.rainbow", - name: "Rainbow", + id: "pro.tokenpocket", + name: "TokenPocket", hasMobileSupport: true, }, { @@ -60,33 +55,33 @@ const ALL_MINIMAL_WALLET_INFOS = ([ hasMobileSupport: true, }, { - id: "pro.tokenpocket", - name: "TokenPocket", + id: "org.uniswap", + name: "Uniswap Wallet", hasMobileSupport: true, }, { - id: "com.ledger", - name: "Ledger Live", + id: "io.zerion.wallet", + name: "Zerion", hasMobileSupport: true, }, { - id: "xyz.timelesswallet", - name: "Timeless X", + id: "me.rainbow", + name: "Rainbow", hasMobileSupport: true, }, { - id: "global.safe", - name: "Safe", + id: "com.ledger", + name: "Ledger Live", hasMobileSupport: true, }, { - id: "io.zerion.wallet", - name: "Zerion", + id: "com.crypto.wallet", + name: "Crypto.com Onchain", hasMobileSupport: true, }, { - id: "com.robinhood.wallet", - name: "Robinhood Wallet", + id: "com.kraken", + name: "Kraken Wallet ", hasMobileSupport: true, }, { @@ -95,158 +90,163 @@ const ALL_MINIMAL_WALLET_INFOS = ([ hasMobileSupport: true, }, { - id: "com.crypto.wallet", - name: "Crypto.com Onchain", + id: "im.token", + name: "imToken", hasMobileSupport: true, }, { - id: "com.exodus", - name: "Exodus", + id: "global.safe", + name: "Safe", hasMobileSupport: true, }, { - id: "xyz.argent", - name: "Argent", + id: "xyz.timelesswallet", + name: "Timeless X", hasMobileSupport: true, }, { - id: "im.token", - name: "imToken", + id: "com.roninchain.wallet", + name: "Ronin Wallet", hasMobileSupport: true, }, { - id: "com.blockchain", - name: "Blockchain.com", + id: "com.elrond.maiar.wallet", + name: "xPortal", hasMobileSupport: true, }, { - id: "io.magiceden.wallet", - name: "Magic Eden", + id: "app.backpack", + name: "Backpack", hasMobileSupport: true, }, { - id: "com.kraken", - name: "Kraken Wallet ", + id: "com.exodus", + name: "Exodus", hasMobileSupport: true, }, { - id: "app.backpack", - name: "Backpack", + id: "com.fireblocks", + name: "Fireblocks", hasMobileSupport: true, }, { - id: "com.zengo", - name: "Zengo Wallet", + id: "ag.jup", + name: "Jupiter", hasMobileSupport: true, }, { - id: "com.mewwallet", - name: "MEW wallet", + id: "com.blockchain", + name: "Blockchain.com", hasMobileSupport: true, }, { - id: "app.phantom", - name: "Phantom", + id: "io.magiceden.wallet", + name: "Magic Eden", hasMobileSupport: true, }, { - id: "com.fireblocks", - name: "Fireblocks", + id: "com.bifrostwallet", + name: "Bifrost Wallet", hasMobileSupport: true, }, { - id: "org.mathwallet", - name: "MathWallet", + id: "com.tangem", + name: "Tangem Wallet", hasMobileSupport: true, }, { - id: "com.alphawallet", - name: "AlphaWallet", + id: "com.wemixplay", + name: "WEMIX Play", hasMobileSupport: true, }, { - id: "com.roninchain.wallet", - name: "Ronin Wallet", + id: "com.robinhood.wallet", + name: "Robinhood Wallet", hasMobileSupport: true, }, { - id: "com.unstoppabledomains", - name: "Unstoppable Domains", + id: "com.bitcoin", + name: "Bitcoin.com Wallet", hasMobileSupport: true, }, { - id: "app.keyring", - name: "KEYRING PRO", + id: "org.mathwallet", + name: "MathWallet", hasMobileSupport: true, }, { - id: "xyz.frontier.wallet", - name: "Frontier", + id: "network.blackfort", + name: "BlackFort Wallet", hasMobileSupport: true, }, { - id: "app.omni", - name: "Omni", + id: "app.keplr", + name: "Keplr", hasMobileSupport: true, }, { - id: "technology.obvious", - name: "Obvious", + id: "com.bee", + name: "BeeWallet", hasMobileSupport: true, }, { - id: "com.ambire", - name: "Ambire Wallet", + id: "com.veworld", + name: "VeWorld Mobile", hasMobileSupport: true, }, { - id: "com.mtpelerin", - name: "Bridge Wallet", + id: "com.bestwallet", + name: "Best Wallet", hasMobileSupport: true, }, { - id: "io.internetmoney", - name: "Internet Money Wallet", + id: "com.fastex.wallet", + name: "Fastex Wallet", hasMobileSupport: true, }, { - id: "app.walletnow", - name: "NOW Wallet", + id: "com.valoraapp", + name: "Valora", hasMobileSupport: true, }, { - id: "com.bitcoin", - name: "Bitcoin.com Wallet", + id: "id.co.pintu", + name: "Pintu", hasMobileSupport: true, }, { - id: "io.alpha-u.wallet.web", - name: "αU wallet", + id: "app.core.extension", + name: "Core", hasMobileSupport: true, }, { - id: "com.coin98", - name: "Coin98 Super Wallet", + id: "com.opera", + name: "Opera Crypto Browser", hasMobileSupport: true, }, { - id: "io.myabcwallet", - name: "ABC Wallet", + id: "app.girin", + name: "Girin Wallet", hasMobileSupport: true, }, { - id: "co.arculus", - name: "Arculus Wallet", + id: "dev.auroracloud", + name: "Aurora Pass", hasMobileSupport: true, }, { - id: "com.opera", - name: "Opera Crypto Browser", + id: "com.chain", + name: "Chain", hasMobileSupport: true, }, { - id: "com.chain", - name: "Chain", + id: "app.wombat", + name: "Wombat", + hasMobileSupport: true, + }, + { + id: "me.haha", + name: "HaHa", hasMobileSupport: true, }, { @@ -255,13 +255,13 @@ const ALL_MINIMAL_WALLET_INFOS = ([ hasMobileSupport: true, }, { - id: "com.get-verso", - name: "Verso", + id: "so.onekey.app.wallet", + name: "OneKey", hasMobileSupport: true, }, { - id: "me.haha", - name: "HaHa", + id: "app.subwallet", + name: "SubWallet", hasMobileSupport: true, }, { @@ -270,28 +270,23 @@ const ALL_MINIMAL_WALLET_INFOS = ([ hasMobileSupport: true, }, { - id: "org.kelp", - name: "Kelp", - hasMobileSupport: true, - }, - { - id: "io.clingon", - name: "Cling Wallet", + id: "com.dcentwallet", + name: "D'CENT Wallet", hasMobileSupport: true, }, { - id: "com.broearn", - name: "Broearn Wallet", + id: "io.internetmoney", + name: "Internet Money Wallet", hasMobileSupport: true, }, { - id: "com.coinomi", - name: "Coinomi", + id: "com.hashpack.wallet", + name: "HashPack", hasMobileSupport: true, }, { - id: "com.ripio", - name: "Ripio Portal", + id: "app.kabila", + name: "Kabila Wallet", hasMobileSupport: true, }, { @@ -300,38 +295,38 @@ const ALL_MINIMAL_WALLET_INFOS = ([ hasMobileSupport: true, }, { - id: "io.tokoin", - name: "Tokoin | My-T Wallet", + id: "com.mewwallet", + name: "MEW wallet", hasMobileSupport: true, }, { - id: "world.fncy", - name: "Fncy Mobile Wallet", + id: "io.tokoin", + name: "Tokoin | My-T Wallet", hasMobileSupport: true, }, { - id: "io.copiosa", - name: "Copiosa", + id: "io.atomicwallet", + name: "Atomic Wallet", hasMobileSupport: true, }, { - id: "com.liberawallet", - name: "Libera", + id: "io.leapwallet", + name: "Leap", hasMobileSupport: true, }, { - id: "io.certhis", - name: "Certhis", + id: "io.novawallet", + name: "Nova Wallet", hasMobileSupport: true, }, { - id: "com.burritowallet", - name: "Burrito", + id: "com.flowfoundation.wallet", + name: "Flow Wallet", hasMobileSupport: true, }, { - id: "io.ancrypto", - name: "Ancrypto", + id: "org.gooddollar", + name: "GoodDollar", hasMobileSupport: true, }, { @@ -340,23 +335,23 @@ const ALL_MINIMAL_WALLET_INFOS = ([ hasMobileSupport: true, }, { - id: "io.cypherhq", - name: "Cypher Wallet", + id: "com.bitso", + name: "Bitso Web3 Wallet", hasMobileSupport: true, }, { - id: "app.status", - name: "Status", + id: "com.zengo", + name: "Zengo Wallet", hasMobileSupport: true, }, { - id: "io.enjin", - name: "Enjin Wallet", + id: "com.klipwallet", + name: "Klip", hasMobileSupport: true, }, { - id: "io.trinity-tech", - name: "Essentials", + id: "xyz.argent", + name: "Argent", hasMobileSupport: true, }, { @@ -365,213 +360,208 @@ const ALL_MINIMAL_WALLET_INFOS = ([ hasMobileSupport: true, }, { - id: "io.kriptomat", - name: "Kriptomat", + id: "io.enjin", + name: "Enjin Wallet", hasMobileSupport: true, }, { - id: "io.oxalus", - name: "Oxalus Wallet", + id: "xyz.uniultra.wallet", + name: "U2U Wallet", hasMobileSupport: true, }, { - id: "org.thetatoken", - name: "Theta Wallet", + id: "social.halo", + name: "Halo Wallet", hasMobileSupport: true, }, { - id: "io.leapwallet", - name: "Leap Cosmos Wallet", + id: "tech.okto", + name: "Okto", hasMobileSupport: true, }, { - id: "finance.islamicoin", - name: "ISLAMIwallet", + id: "io.kriptomat", + name: "Kriptomat", hasMobileSupport: true, }, { - id: "xyz.coca", - name: "COCA Wallet", - hasMobileSupport: true, - }, - { - id: "com.monarchwallet", - name: "Monarch Wallet", + id: "co.xellar", + name: "Xellar", hasMobileSupport: true, }, { - id: "co.filwallet", - name: "FILWallet", + id: "network.haqq", + name: "HAQQ Wallet", hasMobileSupport: true, }, { - id: "com.valoraapp", - name: "Valora", + id: "io.oxalus", + name: "Oxalus Wallet", hasMobileSupport: true, }, { - id: "com.coincircle", - name: "CoinCircle", + id: "com.ullapay", + name: "WOW EARN", hasMobileSupport: true, }, { - id: "money.snowball", - name: "Snowball", + id: "org.alephium", + name: "Alephium Wallet", hasMobileSupport: true, }, { - id: "io.paraswap", - name: "ParaSwap Wallet", + id: "xyz.frontier.wallet", + name: "Frontier", hasMobileSupport: true, }, { - id: "network.mrhb", - name: "Sahal Wallet", + id: "network.over", + name: "OverFlex", hasMobileSupport: true, }, { - id: "com.apollox", - name: "ApolloX", + id: "money.unstoppable", + name: "Unstoppable Wallet", hasMobileSupport: true, }, { - id: "com.ennowallet", - name: "Enno Wallet", + id: "me.iopay", + name: "ioPay", hasMobileSupport: true, }, { - id: "io.loopring.wallet", - name: "Loopring", + id: "com.tomi", + name: "tomi Wallet", hasMobileSupport: true, }, { - id: "com.bee", - name: "BeeWallet", + id: "xyz.coca", + name: "COCA Wallet", hasMobileSupport: true, }, { - id: "cc.localtrade.lab", - name: "LocalTrade Wallet", + id: "com.coin98", + name: "Coin98 Super Wallet", hasMobileSupport: true, }, { - id: "com.xcapit", - name: "Xcapit", + id: "org.thorwallet", + name: "THORWallet", hasMobileSupport: true, }, { - id: "io.safematrix", - name: "Safematrix", + id: "com.monarchwallet", + name: "Monarch Wallet", hasMobileSupport: true, }, { - id: "com.neonwallet", - name: "Neon Wallet", + id: "io.loopring.wallet", + name: "Loopring", hasMobileSupport: true, }, { - id: "xyz.sequence", - name: "Sequence Wallet", + id: "one.metapro.wallet", + name: "metapro wallet", hasMobileSupport: true, }, { - id: "app.linen", - name: "Linen", + id: "com.burritowallet", + name: "Burrito", hasMobileSupport: true, }, { - id: "io.nabox", - name: "Nabox", + id: "com.mtpelerin", + name: "Bridge Wallet", hasMobileSupport: true, }, { - id: "net.spatium", - name: "Spatium", + id: "app.pluswallet", + name: "Plus Wallet", hasMobileSupport: true, }, { - id: "com.cryptnox", - name: "Cryptnox Wallet", + id: "cc.localtrade.lab", + name: "LocalTrade Wallet", hasMobileSupport: true, }, { - id: "com.rktechworks", - name: "ID Pocket", + id: "io.uptn.dapp-web", + name: "UPTN", hasMobileSupport: true, }, { - id: "pro.assure", - name: "Assure", + id: "app.herewallet", + name: "HERE Wallet", hasMobileSupport: true, }, { - id: "trade.flooz.wallet", - name: "Flooz", + id: "com.xcapit", + name: "Xcapit", hasMobileSupport: true, }, { - id: "app.keplr", - name: "Keplr", + id: "app.zeal", + name: "Zeal", hasMobileSupport: true, }, { - id: "com.crossmint", - name: "Crossmint", + id: "com.oasys-wallet", + name: "Oasys Passport", hasMobileSupport: true, }, { - id: "com.pierwallet", - name: "pier", + id: "com.coolbitx.cwsapp", + name: "CoolWallet", hasMobileSupport: true, }, { - id: "app.core", - name: "Core", + id: "app.linen", + name: "Linen", hasMobileSupport: true, }, { - id: "app.keeper-wallet", - name: "Keeper", + id: "io.nabox", + name: "Nabox", hasMobileSupport: true, }, { - id: "com.dcentwallet", - name: "D'CENT Wallet", + id: "co.family.wallet", + name: "Family", hasMobileSupport: true, }, { - id: "com.withpaper", - name: "Paper", + id: "app.krystal", + name: "Krystal", hasMobileSupport: true, }, { - id: "finance.klever", - name: "Klever Wallet", + id: "com.ellipal", + name: "ELLIPAL", hasMobileSupport: true, }, { - id: "app.edge", - name: "Edge Wallet", + id: "io.yusetoken", + name: "Yuse Wallet", hasMobileSupport: true, }, { - id: "com.neftipedia", - name: "NeftiWallet", + id: "app.walletnow", + name: "NOW Wallet", hasMobileSupport: true, }, { - id: "io.goldbit", - name: "GoldBit", + id: "com.saakuru.app", + name: "Saakuru All-in-One crypto App", hasMobileSupport: true, }, { - id: "com.coingrig", - name: "Coingrig", + id: "com.foxwallet", + name: "FoxWallet", hasMobileSupport: true, }, { - id: "io.xfun", - name: "XFUN Wallet", + id: "com.withpaper", + name: "Paper", hasMobileSupport: true, }, { @@ -579,11 +569,6 @@ const ALL_MINIMAL_WALLET_INFOS = ([ name: "RiceWallet", hasMobileSupport: true, }, - { - id: "com.antiersolutions", - name: "Ancrypto Wallet", - hasMobileSupport: true, - }, { id: "io.okse", name: "Okse Wallet", @@ -595,18 +580,8 @@ const ALL_MINIMAL_WALLET_INFOS = ([ hasMobileSupport: true, }, { - id: "com.itoken", - name: "iToken Wallet", - hasMobileSupport: true, - }, - { - id: "io.zelus", - name: "Zelus", - hasMobileSupport: true, - }, - { - id: "com.cardstack", - name: "Card Wallet", + id: "io.cypherhq", + name: "Cypher Wallet", hasMobileSupport: true, }, { @@ -615,13 +590,8 @@ const ALL_MINIMAL_WALLET_INFOS = ([ hasMobileSupport: true, }, { - id: "org.arianee", - name: "Arianee Wallet", - hasMobileSupport: true, - }, - { - id: "io.slavi", - name: "Slavi Wallet", + id: "io.compasswallet", + name: "Compass Wallet", hasMobileSupport: true, }, { @@ -630,23 +600,23 @@ const ALL_MINIMAL_WALLET_INFOS = ([ hasMobileSupport: true, }, { - id: "tech.defiantapp", - name: "Defiant", + id: "io.cosmostation", + name: "Cosmostation", hasMobileSupport: true, }, { - id: "cc.avacus", - name: "Avacus", + id: "org.bytebank", + name: "ByteBank", hasMobileSupport: true, }, { - id: "org.bytebank", - name: "ByteBank", + id: "com.unstoppabledomains", + name: "Unstoppable Domains", hasMobileSupport: true, }, { - id: "com.coolbitx.cwsapp", - name: "CoolWallet", + id: "io.koalawallet", + name: "Koala Wallet", hasMobileSupport: true, }, { @@ -655,8 +625,8 @@ const ALL_MINIMAL_WALLET_INFOS = ([ hasMobileSupport: true, }, { - id: "network.trustkeys", - name: "TK Finance", + id: "io.miraiapp", + name: "Mirai App", hasMobileSupport: true, }, { @@ -665,18 +635,13 @@ const ALL_MINIMAL_WALLET_INFOS = ([ hasMobileSupport: true, }, { - id: "io.ttmwallet", - name: "MDAO Wallet", - hasMobileSupport: true, - }, - { - id: "io.pltwallet", - name: "PLTwallet", + id: "xyz.sequence", + name: "Sequence Wallet", hasMobileSupport: true, }, { - id: "io.helixid", - name: "helix id", + id: "io.fizen", + name: "Fizen Wallet", hasMobileSupport: true, }, { @@ -685,8 +650,8 @@ const ALL_MINIMAL_WALLET_INFOS = ([ hasMobileSupport: true, }, { - id: "app.qubic.wallet", - name: "Qubic Wallet", + id: "org.thepulsewallet", + name: "The Pulse Wallet", hasMobileSupport: true, }, { @@ -695,423 +660,423 @@ const ALL_MINIMAL_WALLET_INFOS = ([ hasMobileSupport: true, }, { - id: "com.saakuru.app", - name: "Saakuru All-in-One crypto App", + id: "com.coinomi", + name: "Coinomi", hasMobileSupport: true, }, { - id: "com.3swallet", - name: "3S Wallet", + id: "com.trusteeglobal", + name: "Trustee Wallet", hasMobileSupport: true, }, { - id: "com.payperless", - name: "Payperless", + id: "io.wallacy", + name: "Wallacy", hasMobileSupport: true, }, { - id: "digital.minerva", - name: "Minerva Wallet", + id: "technology.jambo", + name: "Jambo", hasMobileSupport: true, }, { - id: "finance.voltage", - name: "Volt: DeFi", + id: "io.bladewallet", + name: "Blade Wallet", hasMobileSupport: true, }, { - id: "com.lif3", - name: "Lif3 Wallet", + id: "app.keyring", + name: "KEYRING PRO", hasMobileSupport: true, }, { - id: "net.shinobi-wallet", - name: "Shinobi-Wallet", + id: "com.abra", + name: "Abra Wallet", hasMobileSupport: true, }, { - id: "com.kryptogo", - name: "KryptoGO Wallet", + id: "com.premanft", + name: "PREMA Wallet", hasMobileSupport: true, }, { - id: "com.feralfile.app", - name: "Feral File", + id: "finance.voltage", + name: "Volt Wallet", hasMobileSupport: true, }, { - id: "com.bifrostwallet", - name: "Bifrost Wallet", + id: "org.bitizen", + name: "Bitizen", hasMobileSupport: true, }, { - id: "com.nufinetes", - name: "Nufinetes", + id: "com.wigwam.wallet", + name: "Wigwam", hasMobileSupport: true, }, { - id: "io.wallet3", - name: "Wallet 3", + id: "app.ultimate", + name: "Ultimate", hasMobileSupport: true, }, { - id: "com.abra", - name: "Abra Wallet", + id: "com.cakewallet", + name: "Cake Wallet", hasMobileSupport: true, }, { - id: "app.imem", - name: "iMe", + id: "app.fizzwallet", + name: "Fizz", hasMobileSupport: true, }, { - id: "com.premanft", - name: "PREMA Wallet", + id: "com.kucoin", + name: "KuCoin Web3 Wallet", hasMobileSupport: true, }, { - id: "so.onekey.app.wallet", - name: "OneKey", + id: "app.stickey", + name: "Stickey Wallet", hasMobileSupport: true, }, { - id: "finance.slingshot", - name: "Slingshot Wallet", + id: "com.neonwallet", + name: "Neon Wallet", hasMobileSupport: true, }, { - id: "com.kriptonio", - name: "Kriptonio", + id: "app.coinstats", + name: "CoinStats", hasMobileSupport: true, }, { - id: "xyz.ctrl", - name: "Ctrl Wallet", + id: "ai.pundi", + name: "Pundi Wallet", hasMobileSupport: true, }, { - id: "io.streakk", - name: "Streakk Wallet", + id: "com.ripio", + name: "Ripio Portal", hasMobileSupport: true, }, { - id: "com.saitamatoken", - name: "SaitaPro", + id: "co.arculus", + name: "Arculus Wallet", hasMobileSupport: true, }, { - id: "com.flowfoundation.wallet", - name: "Flow Wallet", + id: "io.harti", + name: "HARTi Wallet", hasMobileSupport: true, }, { - id: "io.hippowallet", - name: "Hippo Wallet", + id: "com.gemwallet", + name: "Gem Wallet", hasMobileSupport: true, }, { - id: "io.cosmostation", - name: "Cosmostation", + id: "io.dttd", + name: "DTTD", hasMobileSupport: true, }, { - id: "org.bitizen", - name: "Bitizen", + id: "io.zelcore", + name: "Zelcore", hasMobileSupport: true, }, { - id: "io.blocto", - name: "Blocto", + id: "org.thetatoken", + name: "Theta Wallet", hasMobileSupport: true, }, { - id: "com.humbl", - name: "HUMBL WALLET", + id: "io.blocto", + name: "Blocto", hasMobileSupport: true, }, { - id: "io.passpay", - name: "PassPay Wallet", + id: "com.tellaw", + name: "Tellaw Wallet", hasMobileSupport: true, }, { - id: "app.ultimate", - name: "Ultimate", + id: "xyz.ctrl", + name: "Ctrl Wallet", hasMobileSupport: true, }, { - id: "me.astrox", - name: "Me Wallet", + id: "is.callback", + name: "Callback", hasMobileSupport: true, }, { - id: "org.thorwallet", - name: "THORWallet", + id: "io.summonersarena", + name: "SA ASSISTANT", hasMobileSupport: true, }, { - id: "app.fizzwallet", - name: "Fizz", + id: "com.safemoon", + name: "SafeMoon", hasMobileSupport: true, }, { - id: "app.stickey", - name: "Stickey Wallet", + id: "world.ixo", + name: "Impact Wallet", hasMobileSupport: true, }, { - id: "com.klipwallet", - name: "Klip", + id: "com.bitpie", + name: "Bitpie", hasMobileSupport: true, }, { - id: "app.coinstats", - name: "CoinStats", + id: "net.gateweb3", + name: "GateWallet", hasMobileSupport: true, }, { - id: "land.liker", - name: "LikerLand App", + id: "io.wallypto", + name: "Wallypto", hasMobileSupport: true, }, { - id: "app.krystal", - name: "Krystal", + id: "io.alpha-u.wallet.web", + name: "αU wallet", hasMobileSupport: true, }, { - id: "fi.pillar", - name: "Pillar", + id: "com.lif3", + name: "Lif3 Wallet", hasMobileSupport: true, }, { - id: "io.harti", - name: "HARTi Wallet", + id: "app.ammer", + name: "Ammer Wallet", hasMobileSupport: true, }, { - id: "net.stasis", - name: "Stasis Wallet", + id: "us.binance", + name: "Binance.US", hasMobileSupport: true, }, { - id: "io.novawallet", - name: "Nova Wallet", + id: "com.bitpay", + name: "BitPay Wallet", hasMobileSupport: true, }, { - id: "io.dttd", - name: "DTTD", + id: "co.muza", + name: "MUZA", hasMobileSupport: true, }, { - id: "com.foxwallet", - name: "FoxWallet", + id: "jp.co.rakuten-wallet", + name: "Rakuten Wallet", hasMobileSupport: true, }, { - id: "network.haqq", - name: "HAQQ Wallet", + id: "app.ryipay", + name: "RYIPAY", hasMobileSupport: true, }, { - id: "com.tomi", - name: "tomi Wallet", + id: "org.dota168", + name: "MetaWallet", hasMobileSupport: true, }, { - id: "io.tradestrike", - name: "StrikeX Wallet", + id: "com.alphawallet", + name: "AlphaWallet", hasMobileSupport: true, }, { - id: "app.subwallet", - name: "SubWallet", + id: "io.noone", + name: "Noone Wallet", hasMobileSupport: true, }, { - id: "tech.okto", - name: "Okto", + id: "io.myabcwallet", + name: "ABC Wallet", hasMobileSupport: true, }, { - id: "app.catecoin", - name: "Catecoin Wallet", + id: "io.wallet3", + name: "Wallet 3", hasMobileSupport: true, }, { - id: "io.ukiss", - name: "UKISS Hub", + id: "com.coininn", + name: "Coininn Wallet", hasMobileSupport: true, }, { - id: "com.tellaw", - name: "Tellaw Wallet", + id: "com.ambire", + name: "Ambire Wallet", hasMobileSupport: true, }, { - id: "com.tangem", - name: "Tangem Wallet", + id: "cc.avacus", + name: "Avacus", hasMobileSupport: true, }, { - id: "is.callback", - name: "Callback", + id: "me.easy", + name: "EASY", hasMobileSupport: true, }, { - id: "io.summonersarena", - name: "SA ASSISTANT", + id: "app.utorg", + name: "UTORG", hasMobileSupport: true, }, { - id: "co.xellar", - name: "Xellar", + id: "io.scramberry", + name: "ScramberryWallet", hasMobileSupport: true, }, { - id: "io.talken", - name: "Talken Wallet", + id: "com.saitamatoken", + name: "SaitaPro", hasMobileSupport: true, }, { - id: "xyz.uniultra.wallet", - name: "U2U Wallet", + id: "com.secuxtech", + name: "SecuX", hasMobileSupport: true, }, { - id: "io.ozonewallet", - name: "OzoneWallet", + id: "finance.openwallet", + name: "Open Wallet", hasMobileSupport: true, }, { - id: "com.tiduswallet", - name: "Tidus Wallet ", + id: "io.shido", + name: "Shido App", hasMobileSupport: true, }, { - id: "world.ixo", - name: "Impact Wallet", + id: "com.unitywallet", + name: "Unity Wallet", hasMobileSupport: true, }, { - id: "io.zelcore", - name: "Zelcore", + id: "app.onto", + name: "ONTO", hasMobileSupport: true, }, { - id: "world.dosi.vault", - name: "DOSI Vault", + id: "com.companyname.swaptobe", + name: "TobeWallet", hasMobileSupport: true, }, { - id: "com.ullapay", - name: "WOW EARN", + id: "com.midoin", + name: "midoin", hasMobileSupport: true, }, { - id: "com.ellipal", - name: "ELLIPAL", + id: "io.hyperpay", + name: "HyperPay", hasMobileSupport: true, }, { - id: "money.unstoppable", - name: "Unstoppable Wallet", + id: "id.competence", + name: "Competence.id", hasMobileSupport: true, }, { - id: "dev.auroracloud", - name: "Aurora Pass", + id: "io.tradestrike", + name: "StrikeX Wallet", hasMobileSupport: true, }, { - id: "zone.bitverse", - name: "Bitverse", + id: "llc.besc", + name: "BeanBag", hasMobileSupport: true, }, { - id: "io.konio", - name: "Konio", + id: "baby.smart", + name: "Smart.Baby", hasMobileSupport: true, }, { - id: "net.gateweb3", - name: "GateWallet", + id: "com.coinsdo", + name: "CoinWallet", hasMobileSupport: true, }, { - id: "app.utorg", - name: "UTORG", + id: "com.ivirse", + name: "IApp", hasMobileSupport: true, }, { - id: "com.coinsdo", - name: "CoinWallet", + id: "ch.dssecurity", + name: "DS Security SA", hasMobileSupport: true, }, { - id: "app.ammer", - name: "Ammer Wallet", + id: "com.concordium", + name: "Concordium", hasMobileSupport: true, }, { - id: "us.binance", - name: "Binance.US", + id: "io.zkape", + name: "Ape Wallet", hasMobileSupport: true, }, { - id: "co.muza", - name: "MUZA", + id: "app.status", + name: "Status", hasMobileSupport: true, }, { - id: "com.fxwallet", - name: "FxWallet", + id: "io.pitaka", + name: "Pitaka", hasMobileSupport: true, }, { - id: "app.ryipay", - name: "RYIPAY", + id: "io.ozonewallet", + name: "OzoneWallet", hasMobileSupport: true, }, { - id: "org.dota168", - name: "MetaWallet", + id: "org.mugambo", + name: "rss wallet", hasMobileSupport: true, }, { - id: "io.altme", - name: "Altme", + id: "network.mrhb", + name: "Sahal Wallet", hasMobileSupport: true, }, { - id: "com.bitpie", - name: "Bitpie", + id: "com.crossmint", + name: "Crossmint", hasMobileSupport: true, }, { - id: "io.moonstake", - name: "MOONSTAKE", + id: "io.konio", + name: "Konio", hasMobileSupport: true, }, { - id: "gg.indi", - name: "IndiGG", + id: "io.legionnetwork", + name: "LegionNetwork", hasMobileSupport: true, }, { - id: "io.yusetoken", - name: "Yuse Wallet", + id: "com.meld.app", + name: "MELDapp", hasMobileSupport: true, }, { - id: "com.coininn", - name: "Coininn Wallet", + id: "io.pltwallet", + name: "PLTwallet", hasMobileSupport: true, }, { - id: "io.functionx", - name: "f(x)Wallet", + id: "com.authentrend", + name: "AT.Wallet", hasMobileSupport: true, }, { @@ -1120,8 +1085,23 @@ const ALL_MINIMAL_WALLET_INFOS = ([ hasMobileSupport: true, }, { - id: "com.amazewallet", - name: "AmazeWallet", + id: "io.klever", + name: "Klever Wallet", + hasMobileSupport: true, + }, + { + id: "org.kelp", + name: "Kelp", + hasMobileSupport: true, + }, + { + id: "io.ethermail", + name: "EtherMail", + hasMobileSupport: true, + }, + { + id: "pro.fintoken", + name: "FINTOKEN", hasMobileSupport: true, }, { @@ -1130,258 +1110,338 @@ const ALL_MINIMAL_WALLET_INFOS = ([ hasMobileSupport: true, }, { - id: "me.easy", - name: "EASY", + id: "vc.uincubator.api", + name: "UIIC", hasMobileSupport: true, }, { - id: "live.superex", - name: "SuperWallet", + id: "io.unagi.unawallet", + name: "una Wallet", hasMobileSupport: true, }, { - id: "com.secuxtech", - name: "SecuX", + id: "com.liberawallet", + name: "Libera", hasMobileSupport: true, }, { - id: "io.didwallet", - name: "DIDWallet", + id: "io.armana.portal", + name: "Armana Portal", hasMobileSupport: true, }, { - id: "social.halo", - name: "Halo Wallet", + id: "io.nash", + name: "Nash", hasMobileSupport: true, }, { - id: "com.sinohope", - name: "Sinohope", + id: "com.x9wallet", + name: "X9Wallet", hasMobileSupport: true, }, { - id: "com.ballet", - name: "Ballet Crypto", + id: "io.kigo", + name: "Kigo", hasMobileSupport: true, }, { - id: "com.opz", - name: "OPZ Wallet", + id: "world.dosi.vault", + name: "DOSI Vault", hasMobileSupport: true, }, { - id: "io.fizen", - name: "Fizen Wallet", + id: "io.nonbank", + name: "NonBank", hasMobileSupport: true, }, { - id: "com.kresus", - name: "Kresus SuperApp", + id: "app.hbwallet", + name: "HB WALLET", hasMobileSupport: true, }, { - id: "com.midoin", - name: "midoin", + id: "com.getcogni", + name: "Cogni ", hasMobileSupport: true, }, { - id: "app.onto", - name: "ONTO", + id: "gg.indi", + name: "IndiGG", hasMobileSupport: true, }, { - id: "com.oasys-wallet", - name: "Oasys Passport", + id: "app.qubic.wallet", + name: "Qubic Wallet", hasMobileSupport: true, }, { - id: "org.gooddollar", - name: "GoodDollar", + id: "com.fxwallet", + name: "FxWallet", hasMobileSupport: true, }, { - id: "id.competence", - name: "Competence.id", + id: "app.sinum", + name: "Sinum", hasMobileSupport: true, }, { - id: "ai.spotonchain.platform", - name: "Spot On Chain App", + id: "com.kryptogo", + name: "KryptoGO Wallet", hasMobileSupport: true, }, { - id: "network.dgg", - name: "DGG Wallet", + id: "finance.soulswap.app", + name: "SoulSwap", hasMobileSupport: true, }, { - id: "llc.besc", - name: "BeanBag", + id: "com.shapeshift", + name: "ShapeShift", hasMobileSupport: true, }, { - id: "app.gamic", - name: "Gamic", + id: "io.ready", + name: "Ready", hasMobileSupport: true, }, { - id: "baby.smart", - name: "Smart.Baby", + id: "org.shefi", + name: "SheFi", hasMobileSupport: true, }, { - id: "network.gridlock", - name: "Gridlock Wallet", + id: "money.keychain", + name: "Keychain", hasMobileSupport: true, }, { - id: "app.zeal", - name: "Zeal", + id: "com.beexo", + name: "Beexo", hasMobileSupport: true, }, { - id: "com.ivirse", - name: "IApp", + id: "live.superex", + name: "SuperWallet", hasMobileSupport: true, }, { - id: "ch.dssecurity", - name: "DS Security SA", + id: "io.getclave", + name: "Clave", hasMobileSupport: true, }, { - id: "com.concordium", - name: "Concordium", + id: "com.bettatrade", + name: "Bettatrade", hasMobileSupport: true, }, { - id: "io.zkape", - name: "Ape Wallet", + id: "io.neopin", + name: "NEOPIN", hasMobileSupport: true, }, { - id: "com.thirdweb", - name: "thirdweb", + id: "online.puzzle", + name: "Puzzle Wallet", hasMobileSupport: true, }, { - id: "io.pitaka", - name: "Pitaka", + id: "xyz.echooo", + name: "Echooo Wallet", hasMobileSupport: true, }, { - id: "com.trusteeglobal", - name: "Trustee Wallet", + id: "com.get-verso", + name: "Verso", hasMobileSupport: true, }, { - id: "org.mugambo", - name: "rss wallet", + id: "com.wemix", + name: "WemixWallet", hasMobileSupport: true, }, { - id: "cc.dropp", - name: "Dropp", + id: "io.trinity-tech", + name: "Essentials", + hasMobileSupport: true, + }, + { + id: "io.trustasset", + name: "Trust Asset Wallet", + hasMobileSupport: true, + }, + { + id: "app.dfinnwallet", + name: "Dfinn Wallet", + hasMobileSupport: true, + }, + { + id: "com.bmawallet", + name: "BMA Wallet", + hasMobileSupport: true, + }, + { + id: "io.transi", + name: "Transi", + hasMobileSupport: true, + }, + { + id: "io.safecryptowallet", + name: "SafeWallet", + hasMobileSupport: true, + }, + { + id: "finance.plena", + name: "Plena-App", + hasMobileSupport: true, + }, + { + id: "io.certhis", + name: "Certhis", + hasMobileSupport: true, + }, + { + id: "inc.tomo", + name: "Tomo Wallet", + hasMobileSupport: true, + }, + { + id: "me.komet.app", + name: "Komet", + hasMobileSupport: true, + }, + { + id: "com.pandoshi", + name: "Pandoshi Wallet", + hasMobileSupport: true, + }, + { + id: "io.guardiianwallet", + name: "GUARDIIAN Wallet", + hasMobileSupport: true, + }, + { + id: "com.bscecowallet", + name: "BSC Wallet", + hasMobileSupport: true, + }, + { + id: "co.lifedefi", + name: "Life DeFi", + hasMobileSupport: true, + }, + { + id: "com.zypto", + name: "Zypto", + hasMobileSupport: true, + }, + { + id: "com.broearn", + name: "Broearn Wallet", + hasMobileSupport: true, + }, + { + id: "io.ttmwallet", + name: "MDAO Wallet", hasMobileSupport: true, }, { - id: "xyz.roam.wallet", - name: "Roam", + id: "com.tastycrypto", + name: "tastycrypto", hasMobileSupport: true, }, { - id: "world.qoin", - name: "Qoin Wallet", + id: "com.ipmb", + name: "IPMB Wallet", hasMobileSupport: true, }, { - id: "com.meld.app", - name: "MELDapp", + id: "xyz.nestwallet", + name: "Nest Wallet", hasMobileSupport: true, }, { - id: "com.bestwallet", - name: "Best Wallet", + id: "app.nicegram", + name: "Nicegram Wallet", hasMobileSupport: true, }, { - id: "io.hyperpay", - name: "HyperPay", + id: "com.ballet", + name: "Ballet Crypto", hasMobileSupport: true, }, { - id: "io.xucre", - name: "Xucre", + id: "app.omni", + name: "Omni", hasMobileSupport: true, }, { - id: "app.herewallet", - name: "HERE Wallet", + id: "io.paraswap", + name: "ParaSwap Wallet", hasMobileSupport: true, }, { - id: "com.cakewallet", - name: "Cake Wallet", + id: "one.mixin.messenger", + name: "Mixin Messenger", hasMobileSupport: true, }, { - id: "io.unagi.unawallet", - name: "una Wallet", + id: "com.cryptokara", + name: "Cryptokara", hasMobileSupport: true, }, { - id: "io.ethos", - name: "Ethos Self-Custody Vault", + id: "com.caesiumlab", + name: "Caesium", hasMobileSupport: true, }, { - id: "app.pluswallet", - name: "Plus Wallet", + id: "com.nodle", + name: "Nodle", hasMobileSupport: true, }, { - id: "com.authentrend", - name: "AT.Wallet", + id: "io.universaleverything", + name: "UniversalProfiles", hasMobileSupport: true, }, { - id: "finance.plena", - name: "Plena-App", + id: "finance.islamicoin", + name: "ISLAMIwallet", hasMobileSupport: true, }, { - id: "com.wemix", - name: "WemixWallet", + id: "com.thirdweb", + name: "thirdweb", hasMobileSupport: true, }, { - id: "com.gemwallet", - name: "Gem Wallet", + id: "com.opz", + name: "OPZ Wallet", hasMobileSupport: true, }, { - id: "com.caesiumlab", - name: "Caesium", + id: "fun.tobi", + name: "Tobi", hasMobileSupport: true, }, { - id: "pro.fintoken", - name: "FINTOKEN", + id: "trade.flooz.wallet", + name: "Flooz", hasMobileSupport: true, }, { - id: "com.peakdefi", - name: "PEAKDEFI", + id: "org.talkapp", + name: "T+ Wallet ", hasMobileSupport: true, }, { - id: "com.nodle", - name: "Nodle", + id: "io.plutope", + name: "Plutope", hasMobileSupport: true, }, { - id: "com.cryptokara", - name: "Cryptokara", + id: "org.ecoinwallet", + name: "ECOIN Wallet", hasMobileSupport: true, }, { @@ -1390,23 +1450,23 @@ const ALL_MINIMAL_WALLET_INFOS = ([ hasMobileSupport: true, }, { - id: "com.veworld", - name: "VeWorld Mobile", + id: "xyz.roam.wallet", + name: "Roam", hasMobileSupport: true, }, { - id: "com.azcoiner", - name: "AZCoiner", + id: "com.dextrade", + name: "DexTrade", hasMobileSupport: true, }, { - id: "technology.jambo", - name: "Jambo", + id: "app.gamic", + name: "Gamic", hasMobileSupport: true, }, { - id: "vc.uincubator.api", - name: "UIIC", + id: "world.fncy", + name: "Fncy Mobile Wallet", hasMobileSupport: true, }, { @@ -1415,509 +1475,519 @@ const ALL_MINIMAL_WALLET_INFOS = ([ hasMobileSupport: true, }, { - id: "io.noone", - name: "Noone Wallet", + id: "com.3swallet", + name: "3S Wallet", hasMobileSupport: true, }, { - id: "com.bitso", - name: "Bitso Web3 Wallet", + id: "app.catecoin", + name: "Catecoin Wallet", hasMobileSupport: true, }, { - id: "online.puzzle", - name: "Puzzle Wallet", + id: "com.payperless", + name: "Payperless", hasMobileSupport: true, }, { - id: "network.blackfort", - name: "BlackFort Wallet", + id: "com.coincircle", + name: "CoinCircle", hasMobileSupport: true, }, { - id: "io.armana.portal", - name: "Armana Portal", + id: "io.helixid", + name: "helix id", hasMobileSupport: true, }, { - id: "io.bharatbox", - name: "BharatBox App", + id: "io.passpay", + name: "PassPay Wallet", hasMobileSupport: true, }, { - id: "com.greengloryglobal", - name: "Blockaura", + id: "com.kresus", + name: "Kresus SuperApp", hasMobileSupport: true, }, { - id: "com.x9wallet", - name: "X9Wallet", + id: "com.nufinetes", + name: "Nufinetes", hasMobileSupport: true, }, { - id: "io.miraiapp", - name: "Mirai App", + id: "world.qoin", + name: "Qoin Wallet", hasMobileSupport: true, }, { - id: "io.kigo", - name: "Kigo", + id: "io.copiosa", + name: "Copiosa", hasMobileSupport: true, }, { - id: "com.getcogni", - name: "Cogni ", + id: "io.ancrypto", + name: "Ancrypto", hasMobileSupport: true, }, { - id: "com.fastex.wallet", - name: "Fastex Wallet", + id: "app.keeper-wallet", + name: "Keeper", hasMobileSupport: true, }, { - id: "io.wallacy", - name: "Wallacy", + id: "io.bharatbox", + name: "BharatBox App", hasMobileSupport: true, }, { - id: "org.talkapp", - name: "T+ Wallet ", + id: "xyz.orion", + name: "Orion", hasMobileSupport: true, }, { - id: "com.usecapsule", - name: "Capsule", + id: "com.cryptnox", + name: "Cryptnox Wallet", hasMobileSupport: true, }, { - id: "com.unitywallet", - name: "Unity Wallet", + id: "zone.bitverse", + name: "Bitverse", hasMobileSupport: true, }, { - id: "app.sinum", - name: "Sinum", + id: "cc.dropp", + name: "Dropp", hasMobileSupport: true, }, { - id: "finance.soulswap.app", - name: "SoulSwap", + id: "com.sinohope", + name: "Sinohope", hasMobileSupport: true, }, { - id: "com.shapeshift", - name: "ShapeShift", + id: "ai.hacken", + name: "hAI by Hacken", hasMobileSupport: true, }, { - id: "finance.panaroma", - name: "Panaroma Wallet", + id: "net.spatium", + name: "Spatium", hasMobileSupport: true, }, { - id: "io.neopin", - name: "NEOPIN", + id: "com.bitnovo", + name: "Bitnovo Wallet", hasMobileSupport: true, }, { - id: "com.alicebob", - name: "Alicebob Wallet", + id: "co.swopme", + name: "SWOP", hasMobileSupport: true, }, { - id: "co.cyber.wallet", - name: "CyberWallet", + id: "land.liker", + name: "LikerLand App", hasMobileSupport: true, }, { - id: "com.dextrade", - name: "DexTrade", + id: "io.owallet", + name: "OWallet", hasMobileSupport: true, }, { - id: "com.hashpack.wallet", - name: "HashPack", + id: "com.dolletwallet", + name: "Dollet", hasMobileSupport: true, }, { - id: "org.thepulsewallet", - name: "The Pulse Wallet", + id: "net.shinobi-wallet", + name: "Shinobi-Wallet", hasMobileSupport: true, }, { - id: "id.co.pintu", - name: "Pintu", + id: "com.azcoiner", + name: "AZCoiner", hasMobileSupport: true, }, { - id: "io.bladewallet", - name: "Blade Wallet", + id: "com.pierwallet", + name: "pier", hasMobileSupport: true, }, { - id: "com.pandoshi", - name: "Pandoshi Wallet", + id: "io.talken", + name: "Talken Wallet", hasMobileSupport: true, }, { - id: "money.keychain", - name: "Keychain", + id: "com.passwallet.app", + name: "Pass App: Web3 Smart Wallet", hasMobileSupport: true, }, { - id: "com.mpcvault.broswerplugin", - name: "MPCVault | Team crypto wallet", + id: "com.coinex.wallet", + name: "CoinEx Wallet", hasMobileSupport: true, }, { - id: "io.legacynetwork", - name: "Legacy Wallet", + id: "pub.dg", + name: "DGPub App", hasMobileSupport: true, }, { - id: "io.getclave", - name: "Clave", + id: "app.xverse", + name: "Xverse", hasMobileSupport: true, }, { - id: "me.iopay", - name: "ioPay", + id: "nl.greenhood.wallet", + name: "Greenhood", hasMobileSupport: true, }, { - id: "app.kabila", - name: "Kabila Wallet", + id: "com.flash-wallet", + name: "Flash Wallet", hasMobileSupport: true, }, { - id: "one.mixin.messenger", - name: "Mixin Messenger", + id: "com.vgxfoundation", + name: "VGX Wallet", hasMobileSupport: true, }, { - id: "com.bettatrade", - name: "Bettatrade", + id: "org.arianee", + name: "Arianee Wallet", hasMobileSupport: true, }, { - id: "io.scramberry", - name: "ScramberryWallet", + id: "ai.spotonchain.platform", + name: "Spot On Chain App", hasMobileSupport: true, }, { - id: "io.earthwallet", - name: "Earth Wallet", + id: "com.tiduswallet", + name: "Tidus Wallet ", hasMobileSupport: true, }, { - id: "xyz.nestwallet", - name: "Nest Wallet", + id: "technology.obvious", + name: "Obvious", hasMobileSupport: true, }, { - id: "xyz.echooo", - name: "Echooo Wallet", + id: "com.daffione", + name: "DaffiOne", + hasMobileSupport: true, + }, + { + id: "com.webauth", + name: "WebAuth", + hasMobileSupport: true, + }, + { + id: "app.tofee", + name: "Tofee Wallet Official", hasMobileSupport: true, }, { - id: "net.myrenegade", - name: "Renegade", + id: "io.didwallet", + name: "DIDWallet", hasMobileSupport: true, }, { - id: "io.ready", - name: "Ready", + id: "xyz.bonuz", + name: "Bonuz Social Smart Wallet", hasMobileSupport: true, }, { - id: "ai.hacken", - name: "hAI by Hacken", + id: "social.gm2", + name: "GM² Social", hasMobileSupport: true, }, { - id: "io.plutope", - name: "Plutope", + id: "co.cyber.wallet", + name: "CyberWallet", hasMobileSupport: true, }, { - id: "io.trustasset", - name: "Trust Asset Wallet", + id: "me.astrox", + name: "Me Wallet", hasMobileSupport: true, }, { - id: "app.dfinnwallet", - name: "Dfinn Wallet", + id: "fi.pillar", + name: "Pillar", hasMobileSupport: true, }, { - id: "com.bmawallet", - name: "BMA Wallet", + id: "io.buzz-up", + name: "BUZZUP", hasMobileSupport: true, }, { - id: "net.spatium.wallet", - name: "Spatium", + id: "io.moonstake", + name: "MOONSTAKE", hasMobileSupport: true, }, { - id: "io.transi", - name: "Transi", + id: "io.hippowallet", + name: "Hippo Wallet", hasMobileSupport: true, }, { - id: "com.dolletwallet", - name: "Dollet", + id: "com.amazewallet", + name: "AmazeWallet", hasMobileSupport: true, }, { - id: "app.wombat", - name: "Wombat", + id: "com.kriptonio", + name: "Kriptonio", hasMobileSupport: true, }, { - id: "fi.dropmate", - name: "Dropmate", + id: "io.altme", + name: "Altme", hasMobileSupport: true, }, { - id: "pub.dg", - name: "DGPub App", + id: "io.ukiss", + name: "UKISS Hub", hasMobileSupport: true, }, { - id: "com.icewal", - name: "icewal", + id: "fi.dropmate", + name: "Dropmate", hasMobileSupport: true, }, { - id: "one.metapro.wallet", - name: "metapro wallet", + id: "io.zelus", + name: "Zelus Wallet", hasMobileSupport: true, }, { - id: "xyz.bonuz", - name: "Bonuz Social Smart Wallet", + id: "io.xucre", + name: "Xucre", hasMobileSupport: true, }, { - id: "io.shido", - name: "Shido App", + id: "net.myrenegade", + name: "Renegade", hasMobileSupport: true, }, { - id: "co.lifedefi", - name: "Life DeFi", + id: "net.stasis", + name: "Stasis Wallet", hasMobileSupport: true, }, { - id: "fun.tobi", - name: "Tobi", + id: "io.clingon", + name: "Cling Wallet", hasMobileSupport: true, }, { - id: "inc.tomo", - name: "Tomo Wallet", + id: "com.humbl", + name: "HUMBL WALLET", hasMobileSupport: true, }, { - id: "app.clot", - name: "Clot", + id: "com.peakdefi", + name: "PEAKDEFI", hasMobileSupport: true, }, { - id: "me.komet.app", - name: "Komet", + id: "network.dgg", + name: "DGG Wallet", hasMobileSupport: true, }, { - id: "io.guardiianwallet", - name: "GUARDIIAN Wallet", + id: "finance.panaroma", + name: "Panaroma Wallet", hasMobileSupport: true, }, { - id: "io.wallypto", - name: "Wallypto", + id: "com.icewal", + name: "icewal", hasMobileSupport: true, }, { - id: "com.safemoon", - name: "SafeMoon", + id: "io.streakk", + name: "Streakk Wallet", hasMobileSupport: true, }, { - id: "com.elrond.maiar.wallet", - name: "xPortal", + id: "network.gridlock", + name: "Gridlock Wallet", hasMobileSupport: true, }, { - id: "co.swopme", - name: "SWOP", + id: "network.trustkeys", + name: "TrustKeys Web3 SocialFi", hasMobileSupport: true, }, { - id: "com.bitpay", - name: "BitPay Wallet", + id: "finance.slingshot", + name: "Slingshot Wallet", hasMobileSupport: true, }, { - id: "app.tofee", - name: "Tofee Wallet Official", + id: "com.mpcvault.broswerplugin", + name: "MPCVault | Team crypto wallet", hasMobileSupport: true, }, { - id: "com.zypto", - name: "Zypto", + id: "digital.minerva", + name: "Minerva Wallet", hasMobileSupport: true, }, { - id: "xyz.orion", - name: "Orion", + id: "finance.porta", + name: "PortaWallet", hasMobileSupport: true, }, { - id: "io.uptn.dapp-web", - name: "UPTN", + id: "io.earthwallet", + name: "Earth Wallet", hasMobileSupport: true, }, { - id: "io.compasswallet", - name: "Compass Wallet", + id: "app.clot", + name: "Clot", hasMobileSupport: true, }, { - id: "app.nicegram", - name: "Nicegram Wallet", + id: "com.alicebob", + name: "Alicebob Wallet", hasMobileSupport: true, }, { - id: "finance.openwallet", - name: "Open Wallet", + id: "net.spatium.wallet", + name: "Spatium", hasMobileSupport: true, }, { - id: "com.tastycrypto", - name: "tastycrypto", + id: "id.plumaa", + name: "Plumaa ID", hasMobileSupport: true, }, { - id: "com.ipmb", - name: "IPMB Wallet", + id: "com.apollox", + name: "ApolloX", hasMobileSupport: true, }, { - id: "com.daffione", - name: "DaffiOne", + id: "io.legacynetwork", + name: "Legacy Wallet", hasMobileSupport: true, }, { - id: "io.owallet", - name: "OWallet", + id: "io.ethos", + name: "Ethos Self-Custody Vault", hasMobileSupport: true, }, { - id: "com.beexo", - name: "Beexo", + id: "com.rktechworks", + name: "ID Pocket", hasMobileSupport: true, }, { - id: "com.webauth", - name: "WebAuth", + id: "com.greengloryglobal", + name: "Blockaura", hasMobileSupport: true, }, { - id: "id.plumaa", - name: "Plumaa ID", + id: "co.filwallet", + name: "FILWallet", hasMobileSupport: true, }, { - id: "social.gm2", - name: "GM² Social", + id: "money.snowball", + name: "Snowball", hasMobileSupport: true, }, { - id: "nl.greenhood.wallet", - name: "Greenhood", + id: "com.ennowallet", + name: "Enno Wallet", hasMobileSupport: true, }, { - id: "com.companyname.swaptobe", - name: "TobeWallet", + id: "io.safematrix", + name: "Safematrix", hasMobileSupport: true, }, { - id: "finance.porta", - name: "PortaWallet", + id: "pro.assure", + name: "Assure", hasMobileSupport: true, }, { - id: "org.alephium", - name: "Alephium Wallet", + id: "app.edge", + name: "Edge Wallet", hasMobileSupport: true, }, { - id: "network.over", - name: "OverFlex", + id: "com.neftipedia", + name: "NeftiWallet", hasMobileSupport: true, }, { - id: "io.walletverse", - name: "Walletverse", + id: "io.goldbit", + name: "GoldBit", hasMobileSupport: true, }, { - id: "com.berasig", - name: "BeraSig", + id: "com.coingrig", + name: "Coingrig", hasMobileSupport: true, }, { - id: "org.shefi", - name: "SheFi", + id: "io.xfun", + name: "XFUN Wallet", hasMobileSupport: true, }, { - id: "com.wemixplay", - name: "WEMIX Play", + id: "com.antiersolutions", + name: "Ancrypto Wallet", hasMobileSupport: true, }, { - id: "co.family.wallet", - name: "Family", + id: "com.itoken", + name: "iToken Wallet", hasMobileSupport: true, }, { - id: "io.legionnetwork", - name: "LegionNetwork", + id: "com.cardstack", + name: "Card Wallet", hasMobileSupport: true, }, { - id: "com.bitnovo", - name: "Bitnovo Wallet", + id: "io.slavi", + name: "Slavi Wallet", hasMobileSupport: true, }, { - id: "io.safecryptowallet", - name: "SafeWallet", + id: "tech.defiantapp", + name: "Defiant", hasMobileSupport: true, }, { - id: "ag.jup", - name: "Jupiter", + id: "app.imem", + name: "iMe", hasMobileSupport: true, }, { - id: "io.koalawallet", - name: "Koala Wallet", + id: "io.walletverse", + name: "Walletverse", hasMobileSupport: true, }, { - id: "io.nonbank", - name: "NonBank", + id: "com.berasig", + name: "BeraSig", hasMobileSupport: true, }, { - id: "io.universaleverything", - name: "UniversalProfiles", - hasMobileSupport: true, + id: "app.phantom", + name: "Phantom", + hasMobileSupport: false, }, { id: "com.coinbase.wallet", @@ -1939,11 +2009,6 @@ const ALL_MINIMAL_WALLET_INFOS = ([ name: "MG", hasMobileSupport: false, }, - { - id: "com.blanqlabs.wallet", - name: "Blanq", - hasMobileSupport: false, - }, { id: "tech.levain", name: "Levain", @@ -1964,6 +2029,11 @@ const ALL_MINIMAL_WALLET_INFOS = ([ name: "FinoaConnect", hasMobileSupport: false, }, + { + id: "com.blanqlabs.wallet", + name: "Blanq", + hasMobileSupport: false, + }, { id: "com.walletconnect.com", name: "SampleW", @@ -2000,13 +2070,13 @@ const ALL_MINIMAL_WALLET_INFOS = ([ hasMobileSupport: false, }, { - id: "com.lootrush", - name: "LootRush", + id: "com.wallet.reown", + name: "Leather", hasMobileSupport: false, }, { - id: "app.core.extension", - name: "Core", + id: "com.lootrush", + name: "LootRush", hasMobileSupport: false, }, { diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/ai.pundi/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/ai.pundi/image.ts new file mode 100644 index 00000000000..a7bb5349dd0 --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/ai.pundi/image.ts @@ -0,0 +1,7 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +const image = + "data:image/webp;base64,UklGRg4DAABXRUJQVlA4IAIDAABwEgCdASqAAIAAPm02l0gkIyIhKJeIAIANiWkKFshQpVtIh+d9k/25XeZ8r5VcoR/ln/A9R7Ri9CejSLhnEZ8WP4lMABWv2/LaoI7aoG1V/+ZAoneNl9ceBdC3a/fi0F5JzmX9eCgaG6J2Sp/vMwqxOCG7Nt04C6pLueF+2rbkupgUDY62Wczc5RshM4D2+MbggrusSmAArX7hpAAA/v8inv4Elas3T8YTSIRS9IDQASAOm/vxuFeFuZ6fjZj9WBioBaLBjxF1pcfk5o7w7YMyNbBn0rp/sOqSb/91UTqK5CAfCFetkPeoYCtA/heKnjeKM2xqbZHTJUcnyjBHhEvanBpabQ0L4STWWPDX4z/281vChRp5qOoodAoMiYxXMb56TiosGrGB4udMVfONqWYhGrOGe6rUZDL0Ac+QYUTa+pVgDv/Yru716uUcT6/JMA4TZgnCE6ke4NVBlyjip+JatKS3lEo88z97NmjZymbB/8rj1kmGnld4OHaup0qs7v537/mE3+Lr5ECqTbDuIgmjztQ0+BipjWico8Yo1dpk53etTIcedYFds+uZWZkIndYwn8SEmv6LboyESKpukNo3Qvry/Kmfx2Ynz5GJ9V/yrbWxi0430QgBH9n6iblBCXWzr1/92X1lZ/kqF621E/7543d709G/NLkWcBzw1B64smPLNw0cYNtGlcEe4bDMotYaGHoJ1r6iIx5YD1Ti4YQ9FgK193tG54MPwpoV4cI7IC6E0TScJNeGGdMUjyqzTOalu6ZnoAcwukmNlc5tSlD5PWAcXPMOccff0vPx2wd+ektlxE0v9ZQcCLrkQBlHNcEQFX/cGtqud7QuP63sUjrvebtixGkXcvhM31fLlNi/r6svswDV3g8BXPdWjrnpQd1r5sXM//ekIexoxFsYXkk/7rGXvi37Ef/FeIx5fuVvVCewSpylgW53Txk1tN+1NVrej3EW4Bl7vhxYBNZH2cvA5gzFuNkJUaCi3d0LwQ89HvtN5XLAczkpBw+FGXnAAAAAAA=="; + +export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/io.functionx/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/ai.pundi/index.ts similarity index 82% rename from packages/thirdweb/src/wallets/__generated__/wallet/io.functionx/index.ts rename to packages/thirdweb/src/wallets/__generated__/wallet/ai.pundi/index.ts index 1975ab47dc8..aca83d9bfab 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/io.functionx/index.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/ai.pundi/index.ts @@ -2,10 +2,10 @@ // Do not modify this file manually. export const wallet = { - id: "io.functionx", - name: "f(x)Wallet", - homepage: "https://functionx.io/home", - image_id: "bdd2f39b-98fa-485d-b180-bf4a42fa6100", + id: "ai.pundi", + name: "Pundi Wallet", + homepage: "https://pundi.ai/", + image_id: "f095abd7-575e-4851-cf9c-79c2c4e4cc00", app: { browser: null, ios: "https://apps.apple.com/us/app/f-x-wallet-by-function-x-labs/id1504798360", diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/app.core.extension/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/app.core.extension/image.ts index 8a1043fd50e..4108beab249 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/app.core.extension/image.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/app.core.extension/image.ts @@ -2,6 +2,6 @@ // Do not modify this file manually. const image = - "data:image/webp;base64,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"; + "data:image/webp;base64,UklGRtoDAABXRUJQVlA4IM4DAABQFgCdASqAAIAAPm00lkikIqIhJZLpqIANiWkAFeO9jn9y6Tby9KXpV/zvmB3q/CXJv/et5O5fwt6W6aL5Lfqr2DOkiQpT+UHLhQ2uNqa6dDrf37eiw+hb76NwiaWV7PezWuXpMhVFDB+6s+3yhHRnPUWWVPH81tHnKCe7VTkPMX7wsA749eAtNdNBAiz2fFPyjEV7i2xMO8g0rl/mUMUerAFA3loh3ZcVTqLi5i2PzyVYQKTXTo+n/XNQAP75NsiXgAAAjtQGUkX/xcy7JblB++d/t5INdh8Z/K9EomN+tLuz9WdYu3wn7IWbMlFgr3NnpcXt6817LdCrqOCw1IBbqv3063yNElVMuNfX4GN09pnJ+cdzll+/jgKOcxDsDLisPuYzIV3upsVLU35EuVdauDEaFopdeG63U7DmSx1YXJcaUburFiiKf68UbJM+njZOLHlbUVFE30TlQunNrx+cIe9UktFC6V9Nak9YDmjXKFrGwWGaMSAn+gIEP9VRViURfMbVbjGKiJWneeTT3G6I+V64hvj4X9RQHm/PDphfrFNA3troPbdMGF0UKNCcQEghTvAXxE4fjKIEnShLdfa5bTBEyIw+1QXT09DYT04EOxC0+GjPpRNQE8MWH/jsqhvZ1Q8NQRTGFoOhZKEjPuF40JKEMp6sNelc1iBJVEMend63Mzhp8bGdkX6ILhtGy96RfZuCCfUwTw/oCVeuE73ZPMVwMMk4TggaE7492agLI/LJWGsjCTa5GPLiOhDS3E/wBmMqkFmzsMgfFmk6HZpartEX0thVHnY5oQhKaWMY0wLIUKV81iTi2Zwlp5x+O2sr8orjamRZdVwncqcjmbhyZipnCWnUuq9YmqZGEBLkFkBAZIr3NSzQkfMVnvXx4BmXFfb2YfFjzj+p/tvs3f0V/uyvvuvA2c3+seuXqAL0FGVm96329DtvYFTpPEs3XcSXEO3Mbzqr/Z0Ly29OTmGlbDgR9aCobZyyPX9VxuBtXd2iapHmrNN7RE/XzVOfHG7wREjvCD29sUcdrLakhvSUKFSUnYr9nsnHFuucNkTqcjUOv+ywHEd6oRax18/6VpBi9A6mWfIYs5hm0Sx5p/46rymuy8WXHg9r3pSRByQPyWqthrypY0MuBgv8zq23I7xIxWXO7vULTITkFWpfqdViW++ph8uf3UVeHzMRUPvoN7oNzzubVOPl8Tu1sTX/ZdfaZsIeE4EhaShsdLjUZlkljwXanzO4HP6FbINa21xch9GoAL2QAZNe5AAj8s0V22L/h4U2yyzpbPiAAAAAAA=="; export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/app.core.extension/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/app.core.extension/index.ts index 0dfcf19bb47..c07ab12a991 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/app.core.extension/index.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/app.core.extension/index.ts @@ -6,14 +6,16 @@ export const wallet = { name: "Core", homepage: "https://core.app/?utm_source=referral&utm_medium=website&utm_campaign=walletconnect", - image_id: "core.svg", + image_id: "aec2da5c-8867-4a53-8f3d-4d547a30b400", app: { - browser: null, + browser: + "https://core.app/?utm_source=referral&utm_medium=website&utm_campaign=walletconnect", ios: "https://apps.apple.com/us/app/core-crypto-wallet-nfts/id6443685999", android: "https://play.google.com/store/apps/details?id=com.avaxwallet&hl=en_US&gl=US", mac: null, - windows: null, + windows: + "https://core.app/?utm_source=referral&utm_medium=website&utm_campaign=walletconnect", linux: null, chrome: "https://chrome.google.com/webstore/detail/core-crypto-wallet-nft-ex/agoakfejjabomempkjlepdflaleeobhb", @@ -24,11 +26,12 @@ export const wallet = { }, rdns: "app.core.extension", mobile: { - native: null, - universal: null, + native: "core://", + universal: "https://core.app", }, desktop: { - native: null, - universal: null, + native: "core://", + universal: + "https://core.app/?utm_source=referral&utm_medium=website&utm_campaign=walletconnect", }, } as const; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/app.core/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/app.core/image.ts deleted file mode 100644 index 175abc5ef0d..00000000000 --- a/packages/thirdweb/src/wallets/__generated__/wallet/app.core/image.ts +++ /dev/null @@ -1,7 +0,0 @@ -// This file is auto-generated by the `scripts/wallets/generate.ts` script. -// Do not modify this file manually. - -const image = - "data:image/webp;base64,UklGRoIEAABXRUJQVlA4WAoAAAAQAAAAfwAAfwAAQUxQSLYAAAABcNvaVhw9iRooBQqABnBfHiE6sskduoI1dDY7MHv2otkiYgLwVNXdmgrLtHa1wuvShXbcZhp5O7ahkq9oPxW+i9dPhImFczTige0L697eqVh4RwVIX5h7iWqmNjkVCvewacg13UBuWHfkdudELpe////+//v/HThlcmndkdt1A7lh05BrVCAX4CZqcwXpqXkJqEgsKgCwPa3e4l6YSCoa8QDQfiE0eY0XZRXacZtp5O3QBidxD1ZQOCCmAwAAMBQAnQEqgACAAD5tNpdIpCMiISGaqfiADYlpChaj6O+vX+s9GN5Gfof13uJvqfIDvV2nP7RvBHLf7D3nupGqCGbeN/6S9gz9aet2LgkTfLp+ZWxvjPe6K7KW57y7YfXJtL+RVVR4AEqryCqx7hcheZXyl/YRTYV2/Csw4W1rMhkukQGfNw716PzVNhnfRc9np1YOfwy0LzVd7bpQkutSs2leOJMd1RN8uhAA/v+hDgD/NBGj0LkkOXquLI9tj7A8z3MSW37dY+bdehL//Qx4iZyxaG914pt2y6iJ/TLSnzvwy10971NjhfwO348cWeeNioRYqw8p4l2tbYW/ndjrHZILhZLKiolrmImYOqPWM2qaHJ3m8zXV6Zn6oyj6qrzsIMe/WAnsWf8CNfW1453XWwXXGTQw1plKBjftQyUIlvns2zt1GMs5qSIepuvOC7GugdmLnZn/h8woi3BpY8JweFDqBsRe0aP9MtPKggetOF6Aca6jBbhrpwboeDe98+WuDd/RAQcO5ze0JieXtxn+6Xp2u/AfwVR0NfoebkPWVrSDnTxVveYMr10tmHLVqhxlZzQwFHPo4CepESGZanvUq8lhi3GqyoCeyZa+OetDI90eFjwkijdZiZV738MCEWXcLp3m+6R6qzZIoGO+Or1Xh/xS1b97vjsjYz0iMJpe/N7qdAHsN//o+HBGLrUf2kxs18bozvhiVyIgj2mLeTMN3RdVrdleNPX94/ZgbhYUGzkF6lYhwiv3LWTBk+Ytxd41uHd8S5lTf1FIXtwNtlBqBALfM3DfVDb2rElumvVLu1Q2fXlewEaY1/cZ9gO6oKC/3pusj3YSZ/KcvA4QtkaFUVla9cb6uNmG7KYuudJ+P9yXFC0nyKVX1r4VxzxKFzPw4U8ZJkOVDOe4lOVzsA/ZnNX3zhIKtr779i8d5FLF5QiR/5XubEasAuuxyLtgXcMWMXLsZY081jSnlf82EB/x3+NhyYFEH6FCd/1lP/8zq4hizlN0INx8vU2cHZNoGOIq+7OWxtOGc6Y/Rywbqf+eFkLcG5JntAbQO7CMI4RzM9lhjNJmaBQai79zC0tZ/tyANXpKAullSuUt297HCEqRGz2X4sn24bMfALcrB2g43S+4iTPhHNMhq+oXhdkslwquh2uXISgY64DO7T+koK3cpFxobz/DSKufc72DZWMZd2mhCKm6uvBu+2w/krLPG/pkeRSPuG2OGqhktjXMNmwwC9aAAAAAAA=="; - -export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/app.core/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/app.core/index.ts deleted file mode 100644 index 840f16ef0ab..00000000000 --- a/packages/thirdweb/src/wallets/__generated__/wallet/app.core/index.ts +++ /dev/null @@ -1,35 +0,0 @@ -// This file is auto-generated by the `scripts/wallets/generate.ts` script. -// Do not modify this file manually. - -export const wallet = { - id: "app.core", - name: "Core", - homepage: - "https://core.app/?utm_source=referral&utm_medium=website&utm_campaign=walletconnect", - image_id: "35f9c46e-cc57-4aa7-315d-e6ccb2a1d600", - app: { - browser: - "https://core.app/?utm_source=referral&utm_medium=website&utm_campaign=walletconnect", - ios: "https://apps.apple.com/us/app/core-crypto-wallet-nfts/id6443685999", - android: - "https://play.google.com/store/apps/details?id=com.avaxwallet&hl=en_US&gl=US", - mac: null, - windows: null, - linux: null, - chrome: - "https://chrome.google.com/webstore/detail/core-crypto-wallet-nft-ex/agoakfejjabomempkjlepdflaleeobhb", - firefox: null, - safari: null, - edge: null, - opera: null, - }, - rdns: null, - mobile: { - native: "core://", - universal: "https://core.app", - }, - desktop: { - native: "core://", - universal: "https://core.app", - }, -} as const; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/app.girin/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/app.girin/image.ts new file mode 100644 index 00000000000..a9e2d1f9e36 --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/app.girin/image.ts @@ -0,0 +1,7 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +const image = + "data:image/webp;base64,UklGRjADAABXRUJQVlA4ICQDAACwEwCdASqAAIAAPm02l0ekIyIhKRR4iIANiWMA1i4iP0wHzrO3A8wH6jb4B/XP6r1s3oAeWf7KvlYarmxWugrG9C/iK0lLR4+3nd3d3dCOrufT9IhO3BdPBX8WEj38at+e9P2+4yyHLytL9WHi9XluGhloIBphh0Yxro8W/mFYB2E5bnz7Fx2vJ6R2wEn1SYiuNEEPc3c3IZUdgaHgMksvd3d3d0wAAP75+ualpAAS3cCgVjQy45OQufbG9La1NE0dOMU+64T1rHnX2R/b5MA/e/zq3PBkU79jvZfqIhglo7yOspXgnucUfznRungDCq/RdwLIf+cf4oUjyss+gFPMpxu/MtqFvf/e9wdiwVSZ2MuwjW/Nj+03m8a37Zo/xMVc+eJcDHLiT2Xf1GpjwSa41W6NTJim7Ys1+1PYXlryWsGyAjdJrvwwfzuMA+J/hItMFrzrqmNEJjbFO0OMCbgL3Pi6EPuAHDTLX0UruRuXx0q86ldFMl/muEmMdSYLd+uDlS07HddmnYC5npKHfkyDAQ47kMwFboKKd5tZTIlu6R6VQ5HjQDzR5y9kxQZKb0wIU3kTt/0LMtr2t19Xrzh+GNN3Usg9LpN++Hv29Yy0/lm2kxTyKoS/O7ZBKWwjbeDGakdN/CoU8+2VRdlBjdumMV8fLxVJCdfjJ3WyPWLM8Mv5Um7jG9tGn0kWKQZOgMrDu9tTmFRpHvHqSG5sj8DP0X1uSqW15XPOFRTicIrwMk7bVEhB4Jsx/gjGgTLqtgNkFKNLB1Lxq8HN8Sdo2UCXVXh44kWIh1o+F/k/ieYXzGbBVuwIpF1bLv0Q6VqPvvqYbwBIvdVPL0Z829sdO90V4DLTx7HVg2MsBKFt/w9cOhT0LDxmyPxK79fzISai+xFTUjLtqK7Xpzt0WaLjBf3wKiwE+m/vGqTFNP8D97wq0jRlLl+4N7ezfakIrFSnxZF8a6zqpez2/0qXLeL8lWluvwOBCNbtW/7RzfN/kDNUEi/dJBG2q9r83b7g655IEnbXTECEraS/Btl0UxxRk8AOngCznEqrKcYc7bQpWiM4CYAAAAA="; + +export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/app.girin/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/app.girin/index.ts new file mode 100644 index 00000000000..a04096ecff3 --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/app.girin/index.ts @@ -0,0 +1,31 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +export const wallet = { + id: "app.girin", + name: "Girin Wallet", + homepage: "https://girin.app", + image_id: "4a7f0768-f2b9-48be-f4a1-44c4c158e700", + app: { + browser: null, + ios: "https://apps.apple.com/kr/app/girin-wallet/id6670226485", + android: "https://play.google.com/store/apps/details?id=app.girinwallet", + mac: null, + windows: null, + linux: null, + chrome: null, + firefox: null, + safari: null, + edge: null, + opera: null, + }, + rdns: null, + mobile: { + native: "girinwallet://", + universal: null, + }, + desktop: { + native: "girinwallet://", + universal: null, + }, +} as const; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/app.hbwallet/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/app.hbwallet/image.ts new file mode 100644 index 00000000000..f447203d35a --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/app.hbwallet/image.ts @@ -0,0 +1,7 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +const image = + "data:image/webp;base64,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"; + +export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/app.hbwallet/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/app.hbwallet/index.ts new file mode 100644 index 00000000000..cf5920de462 --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/app.hbwallet/index.ts @@ -0,0 +1,32 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +export const wallet = { + id: "app.hbwallet", + name: "HB WALLET", + homepage: "https://hbwallet.app", + image_id: "f134f8a2-cf58-44dd-7626-dc2cd21a3800", + app: { + browser: null, + ios: "https://apps.apple.com/us/app/ethereum-wallet-hb-wallet/id1273639572", + android: + "https://play.google.com/store/apps/details?id=co.bacoor.android.hbwallet", + mac: null, + windows: null, + linux: null, + chrome: null, + firefox: null, + safari: null, + edge: null, + opera: null, + }, + rdns: null, + mobile: { + native: "hbwallet://", + universal: null, + }, + desktop: { + native: null, + universal: null, + }, +} as const; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/app.phantom/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/app.phantom/image.ts index e338577d0ed..1443e2259a9 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/app.phantom/image.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/app.phantom/image.ts @@ -2,6 +2,6 @@ // Do not modify this file manually. const image = - "data:image/webp;base64,UklGRs4EAABXRUJQVlA4IMIEAAAwGQCdASqAAIAAPm0ylUakIyIhLZjocIANiUAZGaAiSvr+U26j8IYgtOO8U/p1+YDHZPQr6Zf9pnJC0G9m8s+H9yR1bg1LzIsM5bUpTYwT3cAfdU5l/9CRn4xyCZfi3eOFH0fNipKzp/o/3vmzC7yt3/OwsB8VPOcHqn+Gt8YcyhiZFiSxusyipxRReKZlMnAOc4vG1t5vbdosf4lB/0AVdFq0YNXdSU2ss5SfNp3ClBvcnTcavKO3qqighYokVhodRX/w2H83+UP/U3BHXca6U6AA/u+emf/5mj9AvkeJyKGA7SgoNMZbXYf/m3+HIpAkkXxG46bEexQIiN+aOlcFsF9Pq58tUPDsxfoMYB4W2LjFf5BnchiDbiR9542eUFEYI9cFYVwIpdeAwrqVAxrYQ8NuXxX3R+lIdr8UoDFqfG8zdx7IABj000r5NG2iW0EE+ff9TLw4Gaq0CyXfYxhVMpIf8DZhE2fJqFOw378iwkzyjA8ShDJip93Xa3UijUH2aqnGxRWypmPS00vZih6UyYqD+Cw/2oUgT+P5BDviFjEctdmXjD6NJK8FNRyNwUGHgu2lYcIwas7FtcZYCFQjGLw+3BcVyv67Xt7BuNXb8jMBySbneMkexJXwv/RPy2D5fZFPAosUvoF2tnJKLI8vkHuqwd2l8N+I2iHfiywDP4sq731Z+j/1DP0n0fOjb8SbJVRH1/qE/WO8dgctw/kIlfahyG/Hz4gu+iy2FkH8TUdI0Pfn/fu2p/AaGd62SfwesbAgGk/D32aVKVylIfZfPtb9xslQcNWm/lAaQAG0vIJTwlP5H6JzF73Q6kUGLeYlORTIq/35JLNsxx+LwG7YRfIb1pYzA09sizpVCHoSogTiCJmU3aioORAqbgTnr12V8vq+D0FT3KxFNTlvyizv3Ky9FuepDtXuBVIIpwHztk/yAnUXkm3+NTDnd7JlLKAB5q+JL2jBLzcj1rfz48qC58U/jaZ8PmX/wmwKo0bRugkdSf2tETs44Y0+ZkmPyUxpXRumSfRWO/KFKi9DE1imA8qOCTNyJnMPp0hMbYWo2g/ACz6KTPOIvjWg4RkqEUksKx2doENyp9g3EpYWa2qCSiqAaUd9Cahmv69pFRAPClXGawhJN17qdPptyINW05DVg8sxND1rFzt4tCg9ljXny0QAg/MJVIGcSJROrWD2PJX7wR6C6B87Ncn5UptGU1Di28lTTF8ZoxkoHM3N3eEzQEhpkXhZbjvO3bU5IYGfQIyhT8xRu9RAW4O/bVqs1vWCxooJ2z4JXnNiLNTI2j+ii7S9eNZyjngyC0oovNXvCpJjxbNO07vuSL2MYRGc4FKKXsUgnry/Pk0sB6T0D/NsG+EKRs6oTNqE07xIwUJzXo3mxqwMxyhM8wB/RMUJUNjcGV0Tjh9ceW7O4iFi8iN+U+YNeeKjwmwWyeKRUzxqvGiHLwHHs4yvMUNFZKHdsdsY9d/rKg62XR6/CsOYCcqShUqA+ZgOySsusm7tUFDPE4rwH0F6VvxYeBkTT93O/Xf8Ay0t45tyJZ9hzd/UL7hysfSSJRcVKdEWTTswhdLnCyNQGRiYeLwrpW1Jz+lnH13Y4qCYhR7N0siv490KTNSVAAA="; + "data:image/webp;base64,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"; export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/app.phantom/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/app.phantom/index.ts index 5d8e116f310..407bf75dc31 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/app.phantom/index.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/app.phantom/index.ts @@ -5,7 +5,7 @@ export const wallet = { id: "app.phantom", name: "Phantom", homepage: "https://phantom.app/", - image_id: "c38443bb-b3c1-4697-e569-408de3fcc100", + image_id: "b6ec7b81-bb4f-427d-e290-7631e6e50d00", app: { browser: null, ios: "https://apps.apple.com/us/app/phantom-crypto-wallet/id1598432977", @@ -22,11 +22,14 @@ export const wallet = { }, rdns: "app.phantom", mobile: { - native: "phantom://", + native: null, universal: null, }, desktop: { native: null, universal: null, }, + deepLink: { + mobile: "https://phantom.app/ul/browse/", + }, } as const; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/app.status/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/app.status/index.ts index 39c7f1a2230..a9683b18acc 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/app.status/index.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/app.status/index.ts @@ -13,19 +13,20 @@ export const wallet = { mac: "https://status.app/help/getting-started", windows: "https://status.app/help/getting-started", linux: "https://status.app/help/getting-started", - chrome: null, + chrome: + "https://chromewebstore.google.com/detail/kahehnbpamjplefhpkhafinaodkkenpg", firefox: null, safari: null, edge: null, opera: null, }, - rdns: null, + rdns: "app.status", mobile: { native: "status-app://", universal: "https://status.app", }, desktop: { - native: null, + native: "status-app://", universal: null, }, } as const; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/app.subwallet/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/app.subwallet/index.ts index 6028f360cad..a7265afb2f8 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/app.subwallet/index.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/app.subwallet/index.ts @@ -18,7 +18,7 @@ export const wallet = { "https://chrome.google.com/webstore/detail/subwallet-polkadot-wallet/onhogfjeacnfoofkfgppdlbmlmnplgbn", firefox: "https://addons.mozilla.org/en-US/firefox/addon/subwallet/", safari: null, - edge: "https://chrome.google.com/webstore/detail/subwallet-polkadot-wallet/onhogfjeacnfoofkfgppdlbmlmnplgbn", + edge: null, opera: null, }, rdns: "app.subwallet", @@ -27,7 +27,7 @@ export const wallet = { universal: "https://mobile.subwallet.app/", }, desktop: { - native: null, + native: "subwallet://", universal: null, }, } as const; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/app.xverse/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/app.xverse/image.ts new file mode 100644 index 00000000000..878b96fb8c7 --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/app.xverse/image.ts @@ -0,0 +1,7 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +const image = + "data:image/webp;base64,UklGRgYEAABXRUJQVlA4WAoAAAAQAAAAfwAAfwAAQUxQSDsBAAABgJtt25Pqu/7WnHfAJaACwxgwwD+EdD8b4C5Qoh205lSeaFbM2bc9JyImgG6MV4TTn4a7dx1O+46oJuj+eZnbTutj9cZWHy3X5krhTllV+DuMgaXl7sAkc7zDOTEldkuk1Nhh9UqR6xLGdId2qieuifMdYp64FNF3mI3IOVaagpqW2BnJ26FuFk9y5g53LUtE2gTYWCUqWDvkIk9KAM2XE3yHnVdtcHXhgnPdNrj24BPc53QFbhXu/v3/7/+//4fwpitwq8EnuE+3Da4tXHButQ7OTnBwnGQfWqBQXkCzCkTqGNhEI6JsDZiZIyIqNmF5Ep2y0hTUtMTOUMQApUfoYoJD4nG6MqFP4UyNBF0dKXlgGqUI3cgkcwJkbEqMbs9pVgDCF2qW7ltQuO22Plbh2wpXHy3H5nKergUAVlA4IKQCAABQFACdASqAAIAAPm02l0ikIyIhIhgJuIANiWcAd+MwRzfWDrAeIBuAP2ZyQD0AOk7/bDCRv7haN2s3YX9/03b7tcQ5+lQDo3iy7zf3DrFC2VLCs9I//0vqUkHaeork0Mgls+EaWRbqv/TcpMe2i98JwQfz62GARmdnIWMf2BlntVV4YTMqmc4ch4sWv/1+FMbesTghz14UtQ3pbxmRCYc54eIoJPAun3Dp7AAA/vrbx4b8gbmi7pcxN88UlKNwqQBaUb3d6naAUSLmwq4cixbK/z5Wn4raZ40kH/eUihpdoLng7nqUTMT4A6hixBSgi6SU+d+SFsFq5UhalLBZdLzHtkl9iuvD3vVH6dyqjMAcRgKIfYnPjn/FET4pOcyRz3ZT+jhVMN+AG2YQ+y0W9uXxetgk0gx30d1B+IEfUS8BCMarTcqzYa+P+Teyr59/1JXv1+HZ3ERu+eh+/P/AARtCy1YqlHVpa1abcij95xqaDMHIzsJrFYSQtbOHhxLwN0Jc1Gfkc6OtcCmK8bVSebpvKQa50rBZxHtvRwF2zVq+tcmyGlNNDpU6y6Dym5CEkqDI+YkCUuMRjYzxg9pyW7UvC0a5ZCl1E+Cgl3X+Z4FzkjfpLp7FC4HuJQHOPDjNyc/jvzF1uPDywftSC17B6r9gmsteweEFGb8OM9jV6cVDpmRdUfxt2YXhsnLjfRIrA6lN0N/J0N+hhg9BFNHHN6i54O4oHQeYi5wHG1Wr7duY74kHgCOwfpjB2jT9Of13lOtD8MSwF0KcAGc1ZBEX4Wfbr3NqP2d/aZf4uhxM9HCWilKBrPchp5lPLJjcf/3q/jXd0Qzplg3mmZsrnBKk4lxysR92YVb0ewEFEZKErT13/ADQYUVbKxKpOADTVMgtC6FQgAAA"; + +export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/app.xverse/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/app.xverse/index.ts new file mode 100644 index 00000000000..2635cdc4e29 --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/app.xverse/index.ts @@ -0,0 +1,33 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +export const wallet = { + id: "app.xverse", + name: "Xverse", + homepage: "https://www.xverse.app/", + image_id: "785e20ef-c68c-4a85-6cb9-053443871e00", + app: { + browser: null, + ios: "https://apps.apple.com/us/app/xverse-wallet-buy-bitcoin/id1552272513", + android: + "https://play.google.com/store/apps/details?id=com.secretkeylabs.xverse", + mac: null, + windows: null, + linux: null, + chrome: + "https://chromewebstore.google.com/detail/xverse-wallet-buy-bitcoin/idnnbdplmphpflfnlkomgpfbpcgelopg", + firefox: null, + safari: null, + edge: null, + opera: null, + }, + rdns: null, + mobile: { + native: "xverse://", + universal: null, + }, + desktop: { + native: null, + universal: null, + }, +} as const; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/com.binance/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/com.binance.wallet/image.ts similarity index 100% rename from packages/thirdweb/src/wallets/__generated__/wallet/com.binance/image.ts rename to packages/thirdweb/src/wallets/__generated__/wallet/com.binance.wallet/image.ts diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/com.binance/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/com.binance.wallet/index.ts similarity index 92% rename from packages/thirdweb/src/wallets/__generated__/wallet/com.binance/index.ts rename to packages/thirdweb/src/wallets/__generated__/wallet/com.binance.wallet/index.ts index 84ca5d8fde1..1022a38e17a 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/com.binance/index.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/com.binance.wallet/index.ts @@ -2,7 +2,7 @@ // Do not modify this file manually. export const wallet = { - id: "com.binance", + id: "com.binance.wallet", name: "Binance Wallet", homepage: "https://www.binance.com/en/web3wallet", image_id: "3d7eb880-7654-431f-ed84-a25712b45200", @@ -19,7 +19,7 @@ export const wallet = { edge: null, opera: null, }, - rdns: null, + rdns: "com.binance.wallet", mobile: { native: "bnc://app.binance.com/cedefi/", universal: "https://app.binance.com/cedefi", diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/com.bscecowallet/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/com.bscecowallet/image.ts new file mode 100644 index 00000000000..dd3738e0992 --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/com.bscecowallet/image.ts @@ -0,0 +1,7 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +const image = + "data:image/webp;base64,UklGRiIFAABXRUJQVlA4IBYFAAAQHACdASqAAIAAPm0ylkekIqIhJZRq2IANiWIAlldO/615tFL/oH4J/I/lOzl9kX7nz1+oD7t/cA/SXzVfUT5gP2Z/Yr3oPQZ/g/UA/qH+66wD0AP2S9Nr2T/2w/bT2ttVQ8idi/+Tr098+VyZE4jNJBNJ8rv1USY1cauNQUbN/ZdtbzVi2KQUiKFCECiBBRr/8CeQq4BSVV4tDDH0xRHBgFHWN7TU19DtpxqErW4560vEzAbkvM5R5PYiUUY3BiCCT4dKt1bnjDzxIHZbovVwy/XX3Q7MxFuBskyb1ULbGQjYv4KZRsozAAD++gxAOYytqrYfh8to8SMDp79DzTdMcwyX8feY+/LdAq7iHAhLSTR/bt9WEE/33QzgEQ1Ed5cc89pvLf7fD9sdH+QsjFDyfdoS1hxFT34LqEFoY6463shzwP4Ck8cVSrM12aGsW0zko0AyOni5TtKgH/zCMnoGa5QUYPODc1Rboy/TgyAgZZ3YbAUEeY1HKEJf1WUgfFy4WtOtM8qYTUU9czpVqf3yPxghbs7kM7Gxz5TRMY4jA6SFdmKeSJ2jI3R9VDLA0eANtDBNW9itukcoWOXydYazHpyykyQqG0QLI+3OhsYkRicLX+yWcfiQx69qSXU56stXyxFV666tMcRe2ZFxMiWCMgshXxmIweBROxmGgzItuWxsgYFb/+JjsfupgpRHDviIcobPIO6ZyW2N0URJbu33UI3/5V/qHBS8yG+Y5o9pkCEI/Ydkg96QRUqXvsfX+7BqJt2PufjSF/k+oV/XqgjGU7MWx0ov7gmGuFHF+lieKB1aNwSyyiRxgUG9jzbtky73vlIV5qe9hopJ5MSe9qqi0T1HcZarG2jBidYtwkJsTFu8pRFxC5dBRDBTRedxaYCE/3nN2uYcKTHd13vpjZaTAfRpmLci6+p8C74Z8NdSCQs1wtBRanBi1WCE7HQWNNxBi5pAfBeOD8R11kpSu5aOpLjzF+XuJvvh3TqqY94C37kmOuYF7Y7o+fnIff/j2Trkqmuc6s5SpJy+AwA5p9YnwgMEFRDiIUojRjDFt1Mnd9QqyWTZHBFq8XU1jD9CDUwH7R5mftnSyAQfNmnRIbxCPR79RPHcPa4jZBMGKErYFyDGK11Iqahah48+/zH0E8aVfPlsxvVwfRr9eW/NEcncaorzpVNCX2jffYS6tOBbnSyW7C8aXZ97UEE/j9zud4K24uzfp8YqBugSVUIV8bLiNaQQjmADY7N+gvK/QIFPZYe3q36Axf1B3tfjhm/oMiXhLA+gDfyHVqr8WvnbW/Z6F46xCOeNDqveFSVsWdWe9BK/4aGL0Cr3P6XUxVVhJE9p+jSasRFKvkQ/4Mgt/Sw9kFnJ3Ab9iutTdT71O+N4zGusYDrb7mD7jN8heFvKyTuF84x6w8XCi36LVlTSzoBJYsCCur8Rc7TdnWfhDs8epDcCcaItoIWu7OQeMjX29y6te0/nJq6scr/NBW/d5f/uVhFW9Yy6SG89ZbGrKyBUnllq09sabh7M69SGwso55Qy50NGp462RSCpUPfg/j3mUdxLCViO58OPTNHT1p4w3jMfVBir7FEhmUXITi16d1sp0l/yEY3mRpXNwtoxXSZnR9oEf/bSOpPHb/SHHne+A+sT/XZiBqjyibsObIYqvqSYEVT5GXvOO7wgY6CWj66G94LkPvl2/Fcl0wxIVmb8viarxsO1EUTxkrEeumEWPJN8SAAAAAAA="; + +export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/com.bscecowallet/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/com.bscecowallet/index.ts new file mode 100644 index 00000000000..82434a250b8 --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/com.bscecowallet/index.ts @@ -0,0 +1,31 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +export const wallet = { + id: "com.bscecowallet", + name: "BSC Wallet", + homepage: "https://bscecowallet.com", + image_id: "63fe9162-b352-4a2c-1da1-a31d48008e00", + app: { + browser: null, + ios: "https://apps.apple.com/us/app/bsc-wallet-bnb-chain/id6445821381", + android: null, + mac: null, + windows: null, + linux: null, + chrome: null, + firefox: null, + safari: null, + edge: null, + opera: null, + }, + rdns: null, + mobile: { + native: "bscwalletapp://", + universal: null, + }, + desktop: { + native: null, + universal: null, + }, +} as const; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/com.coinex.wallet/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/com.coinex.wallet/image.ts new file mode 100644 index 00000000000..a8a50f3dff8 --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/com.coinex.wallet/image.ts @@ -0,0 +1,7 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +const image = + "data:image/webp;base64,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"; + +export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/com.coinex.wallet/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/com.coinex.wallet/index.ts new file mode 100644 index 00000000000..ee36361a447 --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/com.coinex.wallet/index.ts @@ -0,0 +1,31 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +export const wallet = { + id: "com.coinex.wallet", + name: "CoinEx Wallet", + homepage: "https://wallet.coinex.com/en/", + image_id: "67650667-cc52-4e7f-2d4b-26fcdb160100", + app: { + browser: null, + ios: "https://apps.apple.com/us/app/coinex-wallet-crypto-defi/id1462031389", + android: "https://play.google.com/store/apps/details?id=com.viabtc.wallet", + mac: null, + windows: null, + linux: null, + chrome: null, + firefox: null, + safari: null, + edge: null, + opera: null, + }, + rdns: null, + mobile: { + native: "myApp://https://wallet.coinex.com", + universal: null, + }, + desktop: { + native: null, + universal: null, + }, +} as const; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/com.feralfile.app/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/com.feralfile.app/image.ts deleted file mode 100644 index eee6749b491..00000000000 --- a/packages/thirdweb/src/wallets/__generated__/wallet/com.feralfile.app/image.ts +++ /dev/null @@ -1,7 +0,0 @@ -// This file is auto-generated by the `scripts/wallets/generate.ts` script. -// Do not modify this file manually. - -const image = - "data:image/webp;base64,UklGRrYCAABXRUJQVlA4IKoCAADwFACdASqAAIAAPm0ylEWkI6IXjRR4QAbEtIQ4ABYtPTnQyzYv2Acyetf9kHFQYitjd4BzpNQD8tytu0LX04VupbME4V6o7a4+FOXIBf4KnwUkEYpy/PZKflZfD64ApPaIAjl8GoC/n0cgMUOH2/GrH+AepFqjpxNwRrnVICkN0cud63KqEsYcrQpB91yjgoSUpRQPt/+8bddCL+0PENT/MfjPPdBdBg5MjpZwzQm+AAD+x/wC/Pj7QGpFN8fH2mc4UvP9IMjrIJIee+nP/9HQfe55l//Zp8bf89MZ0Vh/vw4n491Jj4C6IIDJXBDxVaTHGE9IpM7KnpfyJZ7YcDhti1iRopOpKMFSiK5w1jbV0zPhXjR67zwOL1RX//s0+Nv+emM6Kw/enajPHHBsTMzf0coAd0GZmTupsB78f0wZUzPsI2tXH6fs1cti3kpO9vlGpUlxwJ8XEodqPRPjhmuhpM2wlRbA8COi8Fkh70ROCsvo0xF2/0V56TFdlcfp4StXCjXhckzKk3mu1X6zAY6hkk06DU+rd+Y2XwcK5reAw9Bxkjebmk+dnYN80Z2dj6oVdT/ZnDAXxTlCNPdh8TABu5K7RrN/s66cgJnB+A9kAEN9rF7Ccz9uI6Wj/Vpayflp56rX4YtvFLRpCbUU5i1iH5tv4hum9mcMBf958avC3JT0qEpOIMI/EsansnpAyVOpmBdXZcVWimn+Ifb9v1iY27iw/+2s5aHatR3phArkceFm/xXEwzifxvdUtVS9kUBcN02RsQouUsCN8wuW1zRhYPbOT30C9dt7AzU/+tD7rRln32Rl6E1Y2YpjRES3aqngASonb4X4Ddxqunr+QKj3oYmdqHiHJCVQxg9AvqRJE/vUBeKwbDOkJqRjo7EJeov+/xG/xtL4AAAA"; - -export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/com.feralfile.app/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/com.feralfile.app/index.ts deleted file mode 100644 index b1fd10982e4..00000000000 --- a/packages/thirdweb/src/wallets/__generated__/wallet/com.feralfile.app/index.ts +++ /dev/null @@ -1,32 +0,0 @@ -// This file is auto-generated by the `scripts/wallets/generate.ts` script. -// Do not modify this file manually. - -export const wallet = { - id: "com.feralfile.app", - name: "Feral File", - homepage: "https://app.feralfile.com", - image_id: "0fc3d016-d52a-4e84-2bb0-5d0a12964500", - app: { - browser: "https://autonomy.io", - ios: "https://apps.apple.com/us/app/autonomy-app/id1544022728", - android: - "https://play.google.com/store/apps/details?id=com.bitmark.autonomy_client", - mac: null, - windows: null, - linux: null, - chrome: null, - firefox: null, - safari: null, - edge: null, - opera: null, - }, - rdns: null, - mobile: { - native: "autonomy-wc://", - universal: "https://autonomy.io/apps/wc", - }, - desktop: { - native: "autonomy://", - universal: null, - }, -} as const; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/com.flash-wallet/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/com.flash-wallet/image.ts new file mode 100644 index 00000000000..df89f924e30 --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/com.flash-wallet/image.ts @@ -0,0 +1,7 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +const image = + "data:image/webp;base64,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"; + +export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/com.flash-wallet/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/com.flash-wallet/index.ts new file mode 100644 index 00000000000..4fc0468d5dc --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/com.flash-wallet/index.ts @@ -0,0 +1,32 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +export const wallet = { + id: "com.flash-wallet", + name: "Flash Wallet", + homepage: "https://flash-wallet.com/", + image_id: "ded6d2d1-85b0-4eac-5582-3aaeefa8ba00", + app: { + browser: null, + ios: "https://apps.apple.com/pk/app/flash-wallet/id6461013442", + android: + "https://play.google.com/store/apps/details?id=com.flashwallet.production", + mac: null, + windows: null, + linux: null, + chrome: null, + firefox: null, + safari: null, + edge: null, + opera: null, + }, + rdns: null, + mobile: { + native: "flashwallet://", + universal: null, + }, + desktop: { + native: null, + universal: null, + }, +} as const; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/com.kucoin/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/com.kucoin/image.ts new file mode 100644 index 00000000000..7b0ffa095ac --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/com.kucoin/image.ts @@ -0,0 +1,7 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +const image = + "data:image/webp;base64,UklGRk4EAABXRUJQVlA4IEIEAABwGwCdASqAAIAAPm0wkUakIyGhLxXouIANiWIA1i4m/lex69a/Iz2gbd/P/vn0fddf43kVfcA/Q7pieYD7bvZy6gD+V/7vrAPQR8sb9rvgr/bP9c/aAzV6z9tUuw+WKwg/w9Y00AZWeTZuanjMcfvsEL2JxdSTf92izH4nFgY0BPmyhhfnXVV5woE+GuBF8A2nnLRmdv3SolrBTMltC3g0eFgRvA+y+ordJVRG+EqYqgPkhXEj0TnKdbVwdxTp50q6/fUNXVx/M2SeRkmtY1yRBOvXPQ+wLJ3yX5wkJt68kyuUfgAA/hLLfaYjAP8Vv+K3/Fb+KGGoBOTIGl8rrhy0/zEe31SuMDitrIUe7fNLGI4Mc+1CGnxTAlaC7lSoMXABw9+IvYdnbPQSWZ/QpBf++D/2oGi6OznQKtP8QVFNKe7WfgwAyQHEJ1H9Ni42E+ZVWZ2qJ/e+g0QH1WbiBaOQiwdWsLtTCnntfrrEX84T8nyufEhQJ75fxUac469dAJ8pWaW+WHoN2/zTQVI39DG8lVfW1LWHKt4ZXioX9mRK1Y2WY+3eKCS0VSBMZFLreGwrAH/aBvAg1oW6Z1cQoMX5ST2r8fo14b0BQq3wF45pWZxnCPXHp30CasM3Ujk7jAXTwu3Nn+HMsErhHt0cnxuEoYL91KdK3QLCkn01+8CFZaAagneKaL9gvA1gHGVY0X7d4FnBa3hm5H1I4wmPnJ6byOwHOTNMD07b3EpS1Qft3BDnha0qGSs8F5fCxsCqzk1C6nhFrXml1j2XuXX2PVB+3cDvrgvDHEAODCc2HYCalZnSEPNxtmBbO23/r0cRqkc6/Fv2UD7bgpHqPS39NbZSOSGvYU5qaeFLZ0vy4DnZiNCRqki9jYXyzTtzK78n/oC2ks45aMDuKc0Op+w2ID6R2KBQKuz9tPSnfuyPuK+8VzOoOZCc/GviqmEB+bRQ5QCiY/GKzSWukCVWy+8n4RDP52zum3tbBb6tDd/DioaUtYfrKysgG5oMYDlh6mkRflqw9S9r5LnQIf0O75BgrKKMBFAUuCgZzkZgxu0TswZ/u2ON03Z7e2L7kRj6JNniJz3by6BWJ54ZLfVW2oZU/qIwk6wbBMqQuPLxT3j968Gn1R59WTqw2AW4EiY0Tt9e6Xhz7VjahX955MghOu7OWLcuPRbLaxWM1Bq9c+1UpIil8o4PgL3z//8CLoPnvBV//6whNGcGWjoRNsQ9svnFa9qAOknMJtfzwh377cDv7dI+Fd/3gY8JyKrakSYwon7Y8lyvhbe8SymFUaOCUzJA4gpkMOROeNy7tOYRemU6XrVO+IAPlt1JAxzYGhMWCibiikm45aA6Kg0GecLLkKT/S1DUD/n2DmDeI1mkiX7RcxiSAWN67b9cqsXaBzBUyAPmSuheF8Ym9kQk7SRv4vmpu9S/lxwOOk20R+llWb6IXYAAAAAA"; + +export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/com.kucoin/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/com.kucoin/index.ts new file mode 100644 index 00000000000..480bdb77fe4 --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/com.kucoin/index.ts @@ -0,0 +1,31 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +export const wallet = { + id: "com.kucoin", + name: "KuCoin Web3 Wallet", + homepage: "https://www.kucoin.com", + image_id: "70d8a90b-457b-4c04-4bc3-791e97caab00", + app: { + browser: "https://www.kucoin.com", + ios: "https://www.kucoin.com/download", + android: "https://www.kucoin.com/download", + mac: null, + windows: null, + linux: null, + chrome: null, + firefox: null, + safari: null, + edge: null, + opera: null, + }, + rdns: null, + mobile: { + native: "kucoin:///wallet/walletConnect", + universal: null, + }, + desktop: { + native: null, + universal: null, + }, +} as const; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/com.opz/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/com.opz/index.ts index 2a4f581fcff..644bd2f33fe 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/com.opz/index.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/com.opz/index.ts @@ -8,7 +8,7 @@ export const wallet = { image_id: "bb347024-46c1-4be1-dd1f-98e6c51f8600", app: { browser: null, - ios: null, + ios: "https://apps.apple.com/app/opz-crypto-btc-wallet/id6463236757", android: "https://play.google.com/store/apps/details?id=com.opz.dev&pli=1", mac: null, windows: null, diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/com.passwallet.app/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/com.passwallet.app/image.ts new file mode 100644 index 00000000000..61c2f97420f --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/com.passwallet.app/image.ts @@ -0,0 +1,7 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +const image = + "data:image/webp;base64,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"; + +export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/com.passwallet.app/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/com.passwallet.app/index.ts new file mode 100644 index 00000000000..aa56f5ce050 --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/com.passwallet.app/index.ts @@ -0,0 +1,32 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +export const wallet = { + id: "com.passwallet.app", + name: "Pass App: Web3 Smart Wallet", + homepage: "https://pass.app/", + image_id: "fbca9015-a370-4961-d25f-130e302d9600", + app: { + browser: null, + ios: "https://apps.apple.com/il/app/pass-app-web3-smart-wallet/id6670792141", + android: + "https://play.google.com/store/apps/details?id=com.passwallet.app&hl=en", + mac: null, + windows: null, + linux: null, + chrome: null, + firefox: null, + safari: null, + edge: null, + opera: null, + }, + rdns: "com.passwallet.app", + mobile: { + native: "passwallet://", + universal: "https://pass.app/connect", + }, + desktop: { + native: null, + universal: null, + }, +} as const; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/com.shapeshift/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/com.shapeshift/image.ts index aa9b959b526..713ea5792ba 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/com.shapeshift/image.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/com.shapeshift/image.ts @@ -2,6 +2,6 @@ // Do not modify this file manually. const image = - "data:image/webp;base64,UklGRrQFAABXRUJQVlA4IKgFAAAwGgCdASqAAIAAPm00lUgkIqIhJJcaeIANiWcAVLHgf0yL2xaJ/YfCvwreLvbDQE/jv2q/B+UnezwAvxr+U/6T8quBXAB9YP9xxmaSzIB5++et6a9g79bOtiS3VqUiXp9g0PRsFrlpbYuDEm1+/K1m9i1C//zJ8T72f4XKZ0V7lEALebrHWV07vQMhu7dlO6QQndQ4OlN4Gtxkb3J7/zkifNJgYBaFNLwX8v97U7f0HmZzVupAw8rCW6WAamlrfGi7TOfVTGNpJrRl0bg/DAnMeQgSkI6VVxsJIAD++41L/rXn7kYAf0l0uLQAB8/NnxnLrb5+Y3zYF/EIMrHYUvAo8Xj9loIMNOwwU9tHexbAddSs7L6gUv3fMx651G7Pf0P3Ir8OSEkt67k1tWzBY/RCpKUrcx2HT3EmlVCvQUj6FC7b/4CPFM2Y3kFNfMBwiTgOJxG0ifILddaVRAnU+sDDqi32HmRgEs+Ll4VwHqm3gJ72G0g/gsU3v7WNTt3oa5ZbJGYbi5oScR1s9dcZvnS+JKyms38quBNoRAOTYNVRuDR2lmeog5cW/1eI5tnndOEfir+aFDXqGxQJG53iNudLIRvJuFqRr16+KnCitCcjqk4T/mryL7truqah0jyyK9IxESDLPNqp73Ap5BRMYQlvwmEN9DfeGE2zsJh5s0eQkHfrnWBT94wysKys9064CNx+j/mv/rkrZ+SHye1rql24PMGO05b55aY0rC86btAAp1tlgrfIwydbeVMY/BBEZNLgSTZoylM3unJe0x4SLpusoYNfU6y4bG12FTzb4pCm5rxHJktsh4pt2mcagshImf4JMWcqDE4fkdgM1UAw1UZsVWMmDwmTXh+a85V9wlAn4JxuL7c8KXZKfZefrt/PKonqQ1nA+KCyW8Ohvz3LLvYKGkhO7X9s2Bo/zUpYCSUAXHp8Ww0gfLb/zpSVv/3HyTdnYjfTul5ti8YkcfPeeiJ9tbbqgVeD3c0pJAG+EKHQZ+6cnBiDP7dj9+GN6VJ6LdUJb31ELs88G24E11IMfvU7yYtBB8o9i6S/Oir8eymtT5wzxFIZJy/4eMmvm99RlIdrq786BUD5c8kqAVSg1Q0gSvDvdWULhzQoOJPMsQLClMTEmkwMeEib2zLrj+7pAcfoQBNzgm4rCWtkOBNR+MdtnWIUXE1eYkAuctKDOCEkNuwTzrugmXZKRlpYJs9+0nAJTxib23D7dsCz3MENdVXAgQ5PV9eQS96yX8L3gnqf/pUaZVQNJLi1lNkDP8Tuld/sShsSk+GJ9nyeqgro6nsla71JDEM4/h9bBHUGy7MR/rlPikc8g5yH9Rl/uVEVVFbaV93ywNfqkKu6IR4U4QT+QfuGYW2wtOorXZHp3EsadexPF4z4RMXlTbdYJ0KshqlYJcnbfNVQoA5pIS5RxhtDozP6vAhifDeftF+4HVynrnGa6JqkDFv5+4l7K/mCreNQuxDlU3LXsjKhNqGotkOhskkWlHjuK1w/b/N2rfdqt1WjBkD8zbeTephOmVE9wjclVk+5Rq1USmS2JiBwVy6LkKrvT9z7ZH6inIWHXnwaEKtT4CDKcOlHM//RkSiycLyvCPaMj/BJLlJ6D3x+3SU8wdQO1OFzmQ9o9fPUDZch05ro5+tM+bDKum1Xcpbeoce/oct+hyaBKsDE8wvi0m9e8SmIcrqCeSRzYkTFnLRfd/vxOk1qBxXUvDrDgWw+LihGxjciISRLqQyPUMub7DDudjZx8uNWjRH+68KniKnQLmS0zJ37/oTqtPOvdR5g321hQ1vM0kSDWp7cm6NGmpe6CFBwoFrYQNvi2EHdhRjOf0peqwxf6BQAZZscsWesxN98+CwCYOEn0++LIH3uZ0Qk4IreUaeH5MlV2ccVce4oHC9OC9bMswBt6vkH8MPZTxPFO72+QAAAAA=="; + "data:image/webp;base64,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"; export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/com.shapeshift/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/com.shapeshift/index.ts index 752063abbc3..30cb6a8be89 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/com.shapeshift/index.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/com.shapeshift/index.ts @@ -5,7 +5,7 @@ export const wallet = { id: "com.shapeshift", name: "ShapeShift", homepage: "https://shapeshift.com", - image_id: "f8de2385-7d9b-4b31-bfed-5555b14fad00", + image_id: "957c34b2-7210-475a-0734-689dfcabc400", app: { browser: "https://app.shapeshift.com", ios: "https://apps.apple.com/us/app/shapeshift-crypto-platform/id996569075", @@ -22,7 +22,7 @@ export const wallet = { }, rdns: null, mobile: { - native: null, + native: "shapeshift://", universal: "https://shapeshift.app.link/", }, desktop: { diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/com.tangem/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/com.tangem/index.ts index 92bbd694673..9c6b56c0ad4 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/com.tangem/index.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/com.tangem/index.ts @@ -10,7 +10,7 @@ export const wallet = { browser: null, ios: "https://apps.apple.com/uz/app/tangem/id1354868448", android: "https://play.google.com/store/apps/details?id=com.tangem.wallet", - mac: "", + mac: null, windows: null, linux: null, chrome: null, diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/com.tomi/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/com.tomi/image.ts index 51fe68d970d..9e7f0add2e9 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/com.tomi/image.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/com.tomi/image.ts @@ -2,6 +2,6 @@ // Do not modify this file manually. const image = - "data:image/webp;base64,UklGRowFAABXRUJQVlA4IIAFAAAQHgCdASqAAIAAPm0yl0akIyIhK5N5kIANiWIA1BIm/oGtc9T/LL+Ye81Wf7L+Bvx06Zw4vYb+W/qv5M/RD0H+JJ/g/tV7h/mL/W39gOlV9wD+wf3Pre/QX/Yj0xf2++ET9m/2o9oL/75yZ+i3cn/prIxtJjT+7EwY0zc0nyGvTZVfAO1vKjQo/LRZC4RlhVPRBpER14YZjYf4KhZW6FcpDJq9qCkDQtQG2B9eyPn2vCSnM8Pwl4Yg7IXufxDsc6CZP5xiDkPRJf8U/MI40XcW117fsrzBSqu+2tMyftObMRTreJoRttBGPNCTwh9DmyZShAPKVueOBAAA/u92011Hz5z/j4v8fF/j4vjyvfxcjV/O+pgh+FvLlVJETVFGvVlUYGlCYyuC3x+nCNpfcUi6MR0utDRVUoP/fopQ07e71avlXOcCMy201PWy+e/9G7B9yX4X78//LsyVZOEiJkFB1ErBhGo23/xY/Fh/HGlxDv/FT3zKuaRfIiVUV8KWCK+OBEhNbdLgn2RAz9xCGvu8xz98GP41TDeqdbRsTRBtlgf1Wc24PZUjglSbYAc9iS7/nNYWorx0/XIvu/NJDNGa/7j4Zz0tTDaiE5go9BPafWBjtQZJ4xlM/0SVaT40oi69LsxQx2zhTP8WKNLQiqVgHIlBY+fKbvUUwvHiuIrO5tpMoL5VgNNAI/VzwvFVWKba/l/M6HPgBQmT0jqCMaFC9mbUDjYmWRk0Y6MPm0Sacddel/S5zyiwUCIGXstjHGLKDHYYcAwVKMGNhH41/gE0Obim9YDP+bZXFpf/5VvTIqTjJ3f17QL071giBTPT0PPUgfO7Nc/FDI0Dc5B6xrB2FQ9MmNbCfFt5OZalGL+bTJuBIYDa1CQTobdgoQiaKmNN84DC2QSttphtAiqeuvcozJVGRTP0SBEjwZqaAu4n7Fc81Os4ipAxssxNSu4U3rGm3qIwzUAT3RF87j0rSufh0giu+oVFnkN87bVoobxfod9H/lxoJct4fuDxv2qamRuiVuXS9U1us5HYJDiPkwXHbWZXR8DO5Oahx9EI22ysS+BQrXUVR5ynonzsfMX+ln4ObsGJxuaUWvBh3e7SmvfSDP5lRRcbON5Kuov6wyGjAHfMfQgxbpVN3aSbBvmhnr6Ac2LZAQh70kwuV23WLNMa8HdaggZZ6CEJJijTkhOoXfAuU00wHuAP5Fs4QRHni8KAND2CnyphGTbbSZIcnspeM0nDGjis0oAOIm5KR18z1NpoxLSyirjEYrwHg2X9B59HIGOWA+lzTCrdZUWMCwXw9nJksjikIf5V+r5xpPXsjJ/nOf0/zh08c25i0fztHElZmoMIAtLSeVs2P+tV/2ck5JFMzTIal359abfBcfNgskT1suyy3sUP54HyRvp2vWkP53icBLg9vX6Fr62j8k6Ye8Lp1aiVX2f4AxZ0TUoag5rctnhh7LAEvlMEDj19ySyJ7O5T//f/FjzRq1QUW0gaLEakkKJSKCD4kWOCA5+iaVOiGGKyUTsupae2zBqrLEClwx35DRe1giJb6rL3Iipva+ilU4bYvTpVEhK3iDc5lxI5VF0k7nX1k5qB07VLxvbVGvhPqvZjFKfp4V6Oxv8b9daG30Uyl9eYIjSU2ZK/59xo003gcXWPwPnA5qDaoPNA1Y7WOrsvOS06W0UH0BdCx5G+gWyBHMSN6+CsRbpjNnxfGhCBqb91cLZvriC6nZfwMsw+H9z66dJweMkLfumFJTu3tgHUMEPHykUhN5BK53kTG9U2X8fy6Anr785lahyd3lLV2ml9T4Jgr/xFrEEpCP4jdAzhxapH3rQGI59ttZF/OT905SYoonFwdBkdId+rt8fcDCEHpe+/QAAAAAAA"; + "data:image/webp;base64,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"; export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/com.tomi/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/com.tomi/index.ts index e376a2fddd9..52200035ba2 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/com.tomi/index.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/com.tomi/index.ts @@ -5,7 +5,7 @@ export const wallet = { id: "com.tomi", name: "tomi Wallet", homepage: "https://tomi.com/wallet", - image_id: "ebc78bed-8771-4745-0fbd-f846cc107100", + image_id: "e0592a0e-1909-4a73-7955-2dbf9caac200", app: { browser: null, ios: "https://apps.apple.com/us/app/tomipay-digital-payment-system/id1643501440", diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/com.usecapsule/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/com.usecapsule/image.ts deleted file mode 100644 index 11dfbd8be71..00000000000 --- a/packages/thirdweb/src/wallets/__generated__/wallet/com.usecapsule/image.ts +++ /dev/null @@ -1,7 +0,0 @@ -// This file is auto-generated by the `scripts/wallets/generate.ts` script. -// Do not modify this file manually. - -const image = - "data:image/webp;base64,UklGRrYCAABXRUJQVlA4IKoCAABwEQCdASqAAIAAPm02mEikIyKhIxVZ8IANiWkAFeX9j/9V5S49Z+51wNhw1HVVQznx9fTfAFG5QNOFHJHkQ/BIS+UG0jgOB/GYIUFUV3YCzg/TkaxYtSCO9i0X5kpJy2M5rlhvCfU/aqvGi17/FzWYfrdaC6a4hafKom5N/vGjoDEGZ3pJIZSDuBhfCnGYr0kmsGAAAP78XNAFNh3f4p95edTJnOWjFYjtkNV1b6awNwJTsgSGK80b9iHOIFTbuSU5ScByx2lrqIc6eVUcSIVyruqP3R9h+01RFWCFdJw76qmG0a5t9nPQpZT6twMJO/oyCqhl5WHcQZR4MH/+Sgqkr+YXXJEODO7RSW1TexO2rZgVg+0zEi1TFo4fUk3i/uie6YJ39J5z1W3ItneXnugJfsSF5NS0f4CeW9r+3q6ad1P3H1CxsDsAnZfJIQp9vziLvB85slbtxPKxqiUY29tvsLexkTf8y1j7/Q9RoXC64brLPe3GcMC74N/vIHJEUZ71LEqclgK+Tf7xWOJSYBDE+zmTZqWmExrZkGzDcQsTyO+UNNfvZYA4L4nJwAVdzKzgbiD2HHVtsZ4EgX1g4dTKCzZ2rRfZfPIGu+iVwUDG9Hb7W7X6Mn/Bjx2KNcVa50C4w3sOQC7fpUvZ3rAUAMzqCla7vOtnokmkgU6h0PAWJNuYJP0sFr0aEHdBdOMid4dcGCg2ZgcOD/rPdpweuhV6RQlzIDz3vqgPzwr/DdjCg3uRBUcyEo/bMteKWq7tkBubbg8UBabuCesbzfQ+2q49R6EijFJBEICL9DXDT/ajedlhxHnyCs3zs/f58Ed0aFZDCmhkVrH/ToEvHP6GLnj+KZ0Bj4lMvxJ2ZJQGW4O/DH6KlW/dTyqRfVePU2o+475FGe/2eTgAAAAA"; - -export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/com.vgxfoundation/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/com.vgxfoundation/image.ts new file mode 100644 index 00000000000..5d6b0320f68 --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/com.vgxfoundation/image.ts @@ -0,0 +1,7 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +const image = + "data:image/webp;base64,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"; + +export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/com.vgxfoundation/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/com.vgxfoundation/index.ts new file mode 100644 index 00000000000..f81ea9c0464 --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/com.vgxfoundation/index.ts @@ -0,0 +1,31 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +export const wallet = { + id: "com.vgxfoundation", + name: "VGX Wallet", + homepage: "https://vgxfoundation.com/", + image_id: "91035734-c365-4341-6835-c056a22cc200", + app: { + browser: null, + ios: "https://apps.apple.com/us/app/safemoon/id1579735495", + android: null, + mac: null, + windows: null, + linux: null, + chrome: null, + firefox: null, + safari: null, + edge: null, + opera: null, + }, + rdns: null, + mobile: { + native: "safemoon://", + universal: "https://safemoon.com/wc/wc", + }, + desktop: { + native: "safemoon://", + universal: "https://safemoon.com/wc/wc", + }, +} as const; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/com.wallet.reown/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/com.wallet.reown/image.ts new file mode 100644 index 00000000000..5d1948edb5f --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/com.wallet.reown/image.ts @@ -0,0 +1,7 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +const image = + "data:image/webp;base64,UklGRrYDAABXRUJQVlA4IKoDAAAQFACdASqAAIAAPm02lkikIyIhJZRo6IANiWkAE5p8Ker5I1o99FPY3tb7sVc36isy9WQNW8ryDogAJIUhJaFtONdOAHd3DJ7GDhBoVcbv4k1Iqm0NlZcpXHVAeXWUXhc07ZmSkJL9aTyROeses0yaEVOY3k1XV+rGzqybjHE97S+4iqQwhetGh5PBWRu2bE8eRSE5nv4NJkAVRIKJgCZxgIy5CS0LchFwAP77jScKwABL7aQb1BvqA2T8ICQAUa+dJAkbvSPxEHqv1ZjXbC/lAGBk/6d3TuN3SXwFdHNnr3gL+9ori49fdTm/Z63o+N7rQoYwNd+SxjILZygz3Egzvk82K8vAF45ZmbqFr+kx5+bE+iKy1bYANvnUygshI67hmk0INPDaD+ietVpNSSmHYdajh0Gt5SmKW9C3YgtpPpZz96NSdVK8c7r/vm2CKGtSxz7zCV6bR30qNAMEXiIh4ER8qtOrvAjEytZwVWcfuCBcycsaYtpDAhi+9suhrpeB5L0FYI7IM9o2opLn+PtwQLlnnQWGWZbtYcNEsDE3sfC0JjmxrsToX6Xk9DY3wRb6c4vBPiiZCcsknnsjwm40J7HNNWMVDy5HhLUExKbGpr9zBzcrL/I0DANdglNqy7WQuJ0+Ss5YR3WbSei6ILDiwCchSUC3E7jwUytZ+mk47Twm8M6303lmFbNypPlxzJ16usOBpC2PsysdX+oAgOVFoG/qCp/gFCJSN/no/UYth78C2JHAPE0mdBcOA5bCErUrv2Nz/Dvq7C6hNf8c8uGFbw4xo8E8x6sZ5chmCwm+pIn+etOt3UxIzf1/wN/fhf9BMLNlnTCzP5rXue5vemB1wKZHCnZKgabzZ6PBOcbq6nZ32s55RlDplu+9H96WwPRYSYkdPzpBNT/k01+57IgxyUz/SoYZkqPHpTuhY84GbyoMXmH+TUQaYzShVrf8Wtv526vn0LCtmFO4lU0WIVore7gQy7PZGKvFeLJNoGfJ3OHnTgcmd4Z6DKpUoPTGWEyOEhouw3ycb70y/e2fJYkxKR1QCVzROrNDkYe4+4/UaNGrmZxGmJ/QkCJ+fC0KJmm92DKVACfy1Nb/skmXhtHgxYadfZBlD4bnIogG6ov6DyfcGQyN1nuXGj6EkiROG835GTyuLBZm9Ysa39mm0E21cEvCYOyQzoMQT+Ec7NTYIQl4u6YZQnYjNo4t1bP5VisbG4JrUg74dFtB9iOoLT18FINg1obAugAAAA=="; + +export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/com.usecapsule/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/com.wallet.reown/index.ts similarity index 54% rename from packages/thirdweb/src/wallets/__generated__/wallet/com.usecapsule/index.ts rename to packages/thirdweb/src/wallets/__generated__/wallet/com.wallet.reown/index.ts index c59c1df6660..10b91eab8b5 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/com.usecapsule/index.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/com.wallet.reown/index.ts @@ -2,30 +2,31 @@ // Do not modify this file manually. export const wallet = { - id: "com.usecapsule", - name: "Capsule", - homepage: "https://usecapsule.com", - image_id: "8308dacf-028c-4f0a-9636-1ccd95768300", + id: "com.wallet.reown", + name: "Leather", + homepage: "https://leather.io/", + image_id: "0153454e-9313-4441-b6cf-838e3d023000", app: { - browser: "https://walletconnect.usecapsule.com", + browser: null, ios: null, android: null, mac: null, windows: null, linux: null, - chrome: null, + chrome: + "https://chromewebstore.google.com/detail/leather/ldinpeekobnhjjdofggfgjlcehhmanlj", firefox: null, safari: null, edge: null, opera: null, }, - rdns: null, + rdns: "com.wallet.reown", mobile: { native: null, - universal: "https://walletconnect.usecapsule.com/", + universal: null, }, desktop: { native: null, - universal: "https://walletconnect.usecapsule.com/", + universal: null, }, } as const; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/com.wigwam.wallet/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/com.wigwam.wallet/image.ts new file mode 100644 index 00000000000..9c94df990a6 --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/com.wigwam.wallet/image.ts @@ -0,0 +1,7 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +const image = + "data:image/webp;base64,UklGRsgEAABXRUJQVlA4ILwEAABwHQCdASqAAIAAPm0ylUakIyIhLpNZIIANiUAamLNv2P8gO60x34T+q/s3z7fYkk9+NxR+bfIA/gHwA8wDnD//b0Afqr+qvusfjN7gP196j31APQS6ZDIgV5/0+0C/iX1H8lZ6zdivrdsHqBd3vQN/IuNdoAfyH++eg3pb+niKgPPjnjY/0dbQxWpu3G2c+l3YQTJrxuH8jUOjiS4IX8zZzatj7KJSIHdAU0mi0OhghysNNSXR2dMlqT2qloEPQCkT3gFmEpyTwMIqMfqtIZDsNhfquPDIxYlKhu5ASLVNq0QEjJn+eLCjZ9JFOLr/i9Bnw+oQAP7yiF7EkrSRd1eTRQLJ/rJEsAaZtduAPYiTTS+WH//VcKTSIufvfi9W65irlisXCYXgY6zj8OiZCT2fgxZlMaZQBqgMVrx/mHzLJiljAdK2FClaWM7Mo5x86smZQVwAqNz0tmyox7+7i1XnEIss1tDL9Niu6ZUgyCzootrrf911jVfxiLfEPDaAKx2z7PargVjO4S2ckx6UQwxuHocOPAuTpHuH0hXuS7ONqc56dwhfauB4XmHyOS69Z2wTxhu95tmQdyK3/lZ2iBo+qXT45EwgftUUkPDSzsOL5S/3yqBV0yJqwdvAJWUCvWZnsym2uBm37HbtN41Eep7agNoT4aPkQBW++DZGBwaSz2n0b/1saWx3hys8up0ib9awPKZ+qkOj6g0KdMJkQUTZ62YlVbHcjc4ZFMWnq9CZwf+AgIIP64W9Oj2CCz8uguMZbOKmB66078jnOYW5Y6wxIxDZerj4a35dm0GIGhXlQa/vvxLfRNqZmWhDEPv/h3BMm0MyIwBdrs/sq+NxlSjf5izTR+MzGSv04dA1oycOJQLf+kURcMViGOzfRlCyVU7kHOrkhQ1y8ONnlFX0H6arGGZ0xDjMiOeYPspC9QtAFoXjyKpHKdtOxv1wfgY+7zhRBU1Oi3ollX7RWZw1VWeud0/a8n3gi80bi46XP7I9bxu6IIcto1RFssR5nYOUIqhdpiXUreGnj9BuRivevLw4238A64kNTyZUPePX1/mp15gmzeNxSkeFSiXYpSpnoop7nPoChtV8q65iylyZzT9cFfGuHC5aYG7vycm03cWGYR6NEiBB4rI+WMY2NXAtVXrWGHILoiVeLZAtjIbL7nkirbXPMW3BueSKgyAcxF6p8VbpomdHv8Me+yx4rE0ZgLi72rLqwpqvDLex7O/rp+yf8AQC5r/TCPfx+dC/49O4rcV3w+p5F3KRynnShA+KCXSDKpVHiN+cx/NqqVmEFwbU7PsQef6scaqJbq3dGcCG6Ftpmr6a5lgXjF0wYUv7dJpAwjmDqp3WPvbgHQcIF9atyE4IY1YpwYAhsYjNpKgaSjzZQFBBMUEeUIcb3ZlkifVDwHPRSuyppYF8c1YdkCaSlktV/wLy/P3UCETc7+ivox3R8bJydihjFbqF9Y4st3xINz4ckV8Ye41anEqeNfdGa2+ef4saQPV39ERKtWGLo9fzmVD9ff135/g0dnpbLMqprARxxA+qy2vhr747uFLXZqYwZJLnCjMhGi2yzHbUDxjrfMabi0ouoHjqZuF+4bI1eOHyuSmAAAAAAAA="; + +export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/com.wigwam.wallet/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/com.wigwam.wallet/index.ts new file mode 100644 index 00000000000..468d5444c01 --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/com.wigwam.wallet/index.ts @@ -0,0 +1,32 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +export const wallet = { + id: "com.wigwam.wallet", + name: "Wigwam", + homepage: "https://wigwam.app", + image_id: "6200b005-f202-41d5-7bd9-966c970f6700", + app: { + browser: null, + ios: "https://apps.apple.com/app/id6630381643", + android: "https://play.google.com/store/apps/details?id=com.wigwamapp", + mac: null, + windows: null, + linux: null, + chrome: + "https://chromewebstore.google.com/detail/wigwam-%E2%80%94-web3-wallet/lccbohhgfkdikahanoclbdmaolidjdfl", + firefox: null, + safari: null, + edge: null, + opera: null, + }, + rdns: "com.wigwam.wallet", + mobile: { + native: "wigwam://", + universal: "https://wigwam.app/", + }, + desktop: { + native: null, + universal: null, + }, +} as const; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/finance.klever/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/finance.klever/image.ts deleted file mode 100644 index 7cd34e03b16..00000000000 --- a/packages/thirdweb/src/wallets/__generated__/wallet/finance.klever/image.ts +++ /dev/null @@ -1,7 +0,0 @@ -// This file is auto-generated by the `scripts/wallets/generate.ts` script. -// Do not modify this file manually. - -const image = - "data:image/webp;base64,UklGRkICAABXRUJQVlA4IDYCAACQEQCdASqAAIAAPm00lEgkIyIhKJWpMIANiWMAfcjpf8vybfWsPB53vK+wV5gNzM6mnnxfZe+wDMq4B9beL4TNDe/PACdR8AF6wrtaUC9gE0c1Nr0F0JOzxt0cXfvD3/Lq8jLFEGBme6m1R8aYE8zYD/weafUEoFwWhL3xDpQs30jz3tvnczg08EsbFcQCwYIPgRS2QAD+/KgAd1i1lyf8aSuekbHFqpfX3Dm50PQHTuAFuoCpTbpQDiK4EKq2Z2erP6u9m3eJYWfb4VrBnDkHW/8OL4DOCN2Pp2gSHGO2OSSKn0l1xy9zC/wq//VSV4nJJGbti/3tqHd9It0FGi0A/Ngs20JKzA7bWjwy+0JoCH4Ln8rUVw/jMWUjW/JAdN+FCMgxghRDmYF7CLzT0v9ZJXJnReM0KNSZCeZ+Q5NufJ9sK7vNFAJ+Al7Gh/X/YRwkAn2PRDVnwXHsW6+vSZQMdex3WWehWQs6RVHsZrq5ujYyM1JWNk13d6qGr9ZA3ZuJpxy4HoqKYzVwoU/ylS49ns7/1sexGwuOx1L/5Uyw5Uijx0eJyuWWccL/3+qVWeMp+3o+QXwAC7Ycrvm9wud21gEk2qZarpwCEQ96JlQSouML3FnwOI6NcQz/NlmTKU1HTMnRHWQUn7CNkZQmqt+gfO+Hvrf1gyV+XioqjRd/gD2dKnrze5OOYNCxsdcXyvoGbHcEsejM9weIEpP2+YhjPsCcXrZD8fqZUlDC1nHGszwpuAAAAA=="; - -export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/finance.voltage/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/finance.voltage/image.ts index c36383a4236..6ab95766d9e 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/finance.voltage/image.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/finance.voltage/image.ts @@ -2,6 +2,6 @@ // Do not modify this file manually. const image = - "data:image/webp;base64,UklGRoADAABXRUJQVlA4IHQDAADQEwCdASqAAIAAPm02mUgkIyKhJZXY6IANiWMA1qYBQI/on5GfjN0vm+XgT8cMXI/Y+wf0NeJX0lfMpugHS38+k8tjMjR9brEfuZeqbGi+T/6oF4VWWhbjLqYedGWUlizM34nlRHBrqzCtxZn6/zcKIONGEAUDY+M0sU7RDJIp7vn59uqNOQqGN8nUXEmyACawwRFNjllBmSQoGvkJb7SZ2IlocA9QIAD+7icf/3ebNs7Ccf/izKMoAQAAJuKqpdSgxBcGwJXHYgKK/xAasHApq539kGo9etE+TksUrEX7adwqG3W8oHqGjoifn3iOkyWXud/zlQiehHOB2s2zumfmo/0KRwBWkaiqCf2V/+nkMw678K0/ikz9RQgUeX7S54q3KH0a/AaNVCe2spnXQC0Z4X9TY1quZjB2DEHFgOv8QLYsnQx0OQ5PgmTzeK8tmSnhhHMCPX3kkrybGLsKxDTLPLdaZdWZ0lBGA0FF1OZRvfZcA9M1x+H8vaLdmt09eNzZJPA6GsdSwClb0HV/pOqjRoknK3e+jp+T0Y4A2FdkGKVB+KGv5+sSW4wIdmf1hgdx0ThDfHpX5Msk85eFP/Iexl0pPaEKArgH3qRA2KPfYAB6hX+/LfF63baNWVwwJNqE3r5FhtyzyWB2gL+PU1sQy+DYCcIDIXzwdCDvxZ1RKvY/xU/CIKrHw3Bo4zisV2YzYEIW/Px0LiIL0IHileL/NL9CKevGNr0axM8BmlOdaUJELUyUfsYUVZUiuBryOTsKso5xQFduZf38dR1HcAusRWS9svfMIOLJlu/ZLe/OH7/7Qbz0UBgGE+znYa8CuXf3UeWLMqWbIaQbPGLTkX5X4PCjJv6O50ldNu6FRW3adLqGZiOH1kVJV5YTyI7U8xcInoVdIsaPv46FNvZXlXExJc+uwaQOdtwZMX07Bz43/ox3P+ftQDLT6A3j/D4Xbg9loIyErmSUhBAYvNA7QbxyHEynell4+XJq5+zGGbDe/fw1TXcD0kPGixJXQtUWqvF6t6zSvpyTlVMTAvixRVzHKVToT/fDLDrdQ6Imp8aikZcJMym4IPvuc0MUW/ntsSbWRaBIGlG4wzW+/nP3idTz/ebWM8K/tOEMGQt+YbT67mgHrLinRX3WQ2xx70kQDA2E+0KRLbonjWgRh2cuoDWAEyQAAA=="; + "data:image/webp;base64,UklGRp4DAABXRUJQVlA4IJIDAADQFQCdASqAAIAAPm02l0gkIyIhJZXZgIANiUAaoEKf3LXq+tfifz+u0/fzGAvar9h9zPae8wD9S+kb5id0A6XHnzOlmpib5a7YdgMoHgdxl9/oZU0coS5mZmZmDi+Uon//NiTdpVmYZHbbZqai4HdhLCyqfwcA/ej3eqES3OUjkllmGb3su2xESDUGYyvuN7mAFtxPvontQ7vgidmoVmN8l9uszMTYJutlXEIWUzKgl27u2Dw3YAAA/u5eP+8+fc+fc+buH4sxTyhoWfDEMcTmxO29J2+edB5yiyxUF1UscngvEcrDDfdOf+Cr+mYyqKUfojyB/mxam9NY+vFVg1czDpvbRUn1bN711WN3dfv7cdQKF87HC/YE9CUSIBoxcUDdziz/7uFLof+kVSiebhpdglDZMC8elCCMRCwX9Uqa0JNU1+uZ90xae/TuLXkRJpio3xirI+APPbeQkeaVxA+25bktq87wiKFHShn30FIyPNaVfTqoa5KfuZvcvLIsnTPat5aYLJXTwl1/oYfKtEgnEOITowGLFzPrHgvQCVkyRR+r8GBcSt0znkaxAp7ToXR52hU3B4ITYwzELm/GHyZXkqGuyE5BGT135IZcr+rLwJkmBMIG8jEu7wI+9DAQmuwAH90qotVNVe+4n7eKHcseW0fWpxq1vDsvzvd/Wl8dVb0wDHbBk8TeaNT2jEW/3heEoYal39pCca1dvYjCuay2PiWAzLXm5mYySFgYQC+/xFiJCgYHFfs4Eksoypr2TS4fPspwID+Y6qbDNRgaI+h3rHNqk1T/6GR9tX8swKN1mdn5IN+8ImrWuffFmai/VZHbIg96YWUtF9K8eeC2a84lwPdPJin/ywowuSgjvd/5rCG/Eo5kb174iS179Q20NDdv9hx3K1eBs5eojIEnXkaaLNPDjKpW7pJcWSi78mhZQRRIGnmJ3gBN7jvHEgPov8hKtC8Ys+8uJUdgJpgcGDeTd9Z6GyhSCNow87Xr9Fa31kfHp0VJ7VEARKXhiykbVa8RJ1N9MfVrqKzp3b4U/atF+Wm4agxd+3ZTt9sWZPaeaCuRO2MrPvajJKpkOICviRBveVmB9Yk3l4KDLe2kVduR0McTtwjaWeFyakHumZqlYurJOkqZLP6EFWSnvH+U88dyK94rb+X9XigD25HSwrS0Cia0sSaKN//YJHVJzjU9oVbzcN83HkmReoAAgBGSgAAAAA=="; export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/finance.voltage/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/finance.voltage/index.ts index fac4c6eafb0..f1a422e4f49 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/finance.voltage/index.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/finance.voltage/index.ts @@ -3,12 +3,12 @@ export const wallet = { id: "finance.voltage", - name: "Volt: DeFi", - homepage: "https://voltage.finance/app", - image_id: "51d783cb-0686-4ffa-e661-edca0c380000", + name: "Volt Wallet", + homepage: "https://voltage.finance", + image_id: "ffddf01a-337f-45c1-61c9-f6d3dd3d3c00", app: { browser: null, - ios: "https://apps.apple.com/us/app/volt-defi/id6444159237", + ios: "https://apps.apple.com/us/app/volt-wallet/id6444159237", android: "https://play.google.com/store/apps/details?id=finance.voltage.app", mac: null, diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/io.alpha-u.wallet.web/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/io.alpha-u.wallet.web/index.ts index 2a19d46d871..be18db2cf6b 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/io.alpha-u.wallet.web/index.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/io.alpha-u.wallet.web/index.ts @@ -10,7 +10,7 @@ export const wallet = { browser: null, ios: "https://apps.apple.com/jp/app/%CE%B1u-wallet/id6444401106", android: "https://play.google.com/store/apps/details?id=com.kddi.wallet", - mac: "", + mac: null, windows: null, linux: null, chrome: "nothing", diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/io.atomicwallet/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/io.atomicwallet/image.ts new file mode 100644 index 00000000000..340909606a1 --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/io.atomicwallet/image.ts @@ -0,0 +1,7 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +const image = + "data:image/webp;base64,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"; + +export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/io.atomicwallet/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/io.atomicwallet/index.ts new file mode 100644 index 00000000000..4b73d49c61a --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/io.atomicwallet/index.ts @@ -0,0 +1,32 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +export const wallet = { + id: "io.atomicwallet", + name: "Atomic Wallet", + homepage: "https://atomicwallet.io", + image_id: "7eca0311-abf5-4902-43e9-51858403e200", + app: { + browser: "https://atomicwallet.io", + ios: "https://apps.apple.com/us/app/atomic-wallet/id1478257827", + android: "https://play.google.com/store/apps/details?id=io.atomicwallet", + mac: "https://atomicwallet.io/downloads", + windows: "https://atomicwallet.io/downloads", + linux: "https://atomicwallet.io/downloads", + chrome: null, + firefox: null, + safari: null, + edge: null, + opera: null, + }, + rdns: null, + mobile: { + native: "atomicwallet://", + universal: null, + }, + desktop: { + native: "atomicwallet://", + universal: + "https://chromewebstore.google.com/detail/atomic-wallet/gjnckgkfmgmibbkoficdidcljeaaaheg", + }, +} as const; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/io.buzz-up/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/io.buzz-up/image.ts new file mode 100644 index 00000000000..7e2986c78c2 --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/io.buzz-up/image.ts @@ -0,0 +1,7 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +const image = + "data:image/webp;base64,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"; + +export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/io.buzz-up/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/io.buzz-up/index.ts new file mode 100644 index 00000000000..70fd029593a --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/io.buzz-up/index.ts @@ -0,0 +1,31 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +export const wallet = { + id: "io.buzz-up", + name: "BUZZUP", + homepage: "https://buzz-up.io", + image_id: "fb24f0a3-83f5-43e7-2204-25c6348f0000", + app: { + browser: null, + ios: "https://apps.apple.com/app/6479512180", + android: "https://play.google.com/store/apps/details?id=io.chainon.lsyim", + mac: null, + windows: null, + linux: null, + chrome: null, + firefox: null, + safari: null, + edge: null, + opera: null, + }, + rdns: null, + mobile: { + native: "buzzup://", + universal: null, + }, + desktop: { + native: null, + universal: null, + }, +} as const; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/io.compasswallet/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/io.compasswallet/image.ts index 691d2110e37..0e887663c70 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/io.compasswallet/image.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/io.compasswallet/image.ts @@ -2,6 +2,6 @@ // Do not modify this file manually. const image = - "data:image/webp;base64,UklGRpAFAABXRUJQVlA4IIQFAACwGgCdASqAAIAAPm0ylUakIyIhKpSamIANiWMGe9VtCPEMypL34TApe3vY7P+Ur0v9Dwv6E/guDQVR00LyAfV3sGmOQh0W8tp3JlCG0Ak2EmCVxrq6r2rlfy5hulHDVp3bNel/NaGCqjbXykVQ0wvlnDKJ4AwWfyFIEHjHT6vNLX/hVRx4a8zxOE4gS6mdZJ+Ou5HPQagDpA16h29RnsdskKzyv/3AeOEqa3j8WeuvTHtBqvFpPQsA+G0PGuXh2Xf3dLN3L2EiF7A1R+x72iiStVQoNheD8AroxgBCb4AA/vqJ3/t44LCd/9eeaGTmM36eA6IVMYjKod1L5Sa6JiXianLeHUPY87iyz/cFq83c2Ojx77kDtEAA8yI8CRN+0b4gjWRFMPE+77p4SDd7vxcQb+7ogYtU1Wh5uFtyB+kz+RB7rcjnMbxd9P9g6ZsMnMb+Q6zM+lHvOcoWiTAQ7E5Cjy6OObQU0wIJFrbHPDNYn6YgVUlF5dkUqHYxgmobw7ibn+yoAh9gKOjsKh0hyYcJcPw7i183RmlJN1WYYnohgmenncScp9646n8IeNE1iMjbbqfnIj/tjWHIahiaqRy+STDeqBjG1jGB0Y2LHGN3sS9/0eky13EjLY9PWOS+/bcfI+I4bt/ivtD/FLuGmBtLftJSmCj+ef/iZhHY3LOSjizcLclUm2y1t6WduuGLR4tPZhbhTPXIRH89B7thMtADWwsi1ZZ/x7eXyYS8RF7p1Dg1F3dABY3wyPTL+kjwxoXjP6u2vT/ktEGVYKLGB28lNzhsVaAK+57XeSEvtJQg0YVnEV8jcwZbnZg5/47dIjpIWuaigpnSgv527vLESDKNq9zPDBnrUvMpT8XDjbHPe2fi5KUlbiyavcvuA6W5wp3rXJP8/7hE9TRGPfXsmW27+QeBrmuor+6EKZc2lqJcP7zeSDL1URS/MtWkxUutcsDVwlVfuAwh4vfueClfyRUXZehmqTi93cjGkEtjQQ4r1YCh0J8id1QrvpAgX/gw9euI6DmQtWOxrREs1DPYPE2f26HslGngklcWmFlLtSBC7nTOSqAeoYK51uVZZSWbP4UY/VXO1RCigsuTV1te6Yog8jY7gej+YkMAr3ElWuRgIFgynb31z4Ibdy2W2YvJHeW+7pIbH4ZtjbxObu1eKfeltqcgA5WtDFIHO91joka4k8qud42EiujcyfA1a5N/k7mG7FDhJYErBAbztVQ8Wro2TVOxaNIBjAupe1TN0t0pSVymOGliBp1TpBpG0WZF50a8M+LVWxpIS3RdcuQ7b+wSuN6WzG6fyJ5fsnHQdffEOb40E/1vZKBftnhps7olbW1+8Ps/OCZHPnTpvXUdkkiqim9EbVIRKKWeZD3n5zw3BD8RU2bJg0OweZf6p8KPgkgX/XYN2TiUKSNtIvQ3Mcmw9XviD+maH2kKC5Pjr0YnjQMGVEfirBrLCsFR5NPqKCmJxz58YI5M6AyL3Ln/l27gurjlAEx/VbV8sAwAcker5C3sh5jLYYS9ayPTZQk0/AUyxTC96KF8htro0jFcGwPfBcN18vuKmkvJtAzh47fOOTeURUsK0LiXtT9ZdHODOaQ7j1sTsR9SdUqVvEA8ononzrwDEnGHfYBhdwPxLe6d3zlkct0DyyRqe8AUG/wGBkRwyaU2F+tf8CWiUqPoqJyaFlKhycjcGJICJKFV+EEDfT6e7EVPT4Xj+Bv7isZMdDkJ7LBFFE2CZrlYX31ln6zoaFtBk7kLmCOG6dtQ7a0F3bh9/UqBoPXQQCvWZtfBw4KK+PRa5z6/zoHxHtdKMigF6BErLrfyjfSNGLtCs+1ubxFQznjhuOuuBtE2kFh3h8+PuiAT4/0u7wC9jaz5IAFMgAAAAA=="; + "data:image/webp;base64,UklGRogFAABXRUJQVlA4IHwFAAAwGwCdASqAAIAAPm0ylUakIyIhKpSamIANiWMGe9VtCdUMymr34TApe30Y7n+Cry/815Zd7ehP4O8zJUxNC8gf1d7BhjkIdFvLadyZQhtAJNhJglca6r+1YqSFBhsrkuIhDxfkCvvb5bS7eBP5fpn6wWjaHItFyFX2muXyA6E/T8f+wXgDvsXlvmTrUehJE+vtwSodywONUc2DoZfhrZkpnBfSlcY1r/+1u3bB/V31ypGEofdTkRIskDkLu03fZXKzic0I3ZpUGaSzeRMZB+z64vx821WKGxTwqfqsIM2Y/ZCAAP76id/7eOC3x9/Xn7EKb9RSgeXC1h/4FyDgq93ezCryoWPkDh0YJaxiTAe4pVlpWV5sehKUsefOYEVYjJnwXb9c+sil7jE6ZjvtsD3TKOPZCY2U4VytnozeZN//tQDaLkMOo0xrjNS6jrelrV99pZEqPyXqOgnpK6dU8Pu46EHvyuYizmpb8v1LtthNszVbJUC9dK8uYkVXe0SPboBxKFIvkLHx94g3fDwe4NanHGoK0tVA5jlrIr+SPZQh5AviEQooYtb75HGHc6FPN5lANjkXNa2Qzt21HpoaRt11Z9fY00pGFC/U4AsW+W5C8dWk8X2cFK0kR/meUgGrEtnCcrL8Qzbnttl6/Z1RR9y0kbTM/v5wStr/4mUBVUw4eAy1+rx87VEP0dVbAX0wCtf2xkdn4wzXPOia0mN6O2OWdR2/npmPlIi7tmI9Zp7VHm/SYJbtuyDfkS09wYC3eaouoAxlgGvYlTeLQzeExLIcjyACgJB+OklM/SK3C4hO3vku6w/JLFlsqW1JLfmM7eiiP4PO+8plq+UmVzdxatI/O6OqhHSrQ96//VeBC00SCydWx0NmS93OOaMwGsB4zyq17J+f9wiR0OBuo0rlbGesa4HDHEqGf0kt70s+UFyvXSaNwKzy0oevQFqodwf7QJjN4z85ZNKi+JyJv+Q5Ax8QcuVQEliFFTQX77Dc9/RKVcUz81WGort0ix2kHWK1su9l8O1HSya4bMtSObGFbzjcHO5Co1/mfq3Lcn7jfhQFvQf9Cq5uL/4tvUq5wNddABGuQe5ArHSX9wmfTI4ttzZk+PSJ8barn+r54VIfLJRRE7VU0TMYEMdh8Z+yDsnFR/jomTXcsOGVU0qTTgTzPX6YpL1oZQzHW92xcpFMbVogJLPCIpeQqBd8+Rpyz0a5c5RBv9VOtrvSrmshghh4xZR31qzdMfWw/rnJJuCNPM6pN+u+3lA8LOJQqCSgmQibP/mk364p1weJ8bB6+odEiWq/j+RO+84IDbh5ZQ+A8UdvHpn3LVJ65Jw7olb24eT+9NLf2WHWWIx3nArZfSkU081ANJKKgnIXGSE2FE3pI2bkZZ1y2A9TA+vR6GctS7QWwryOTM+LeeaVcgC+Mx96/xnzpUFJTksaCnUPvcw73DT7VeOh4lqr/jhCwTcHJMEbnbJtV7mUGP7b66MnkR0z22Kghlk80waqKuUQq502spqIJem8G7GasA2RrgzKkdo/rgQuU5jWbm45towELDomayHBbi6AIVf65OV2R8A9VRaS+vmMvQfSwXqdLS4SBGdf9rOk3WnIil+2ohNEQ/1idS+HweUwPxLe+d3Tlkcxy5i2SDb6+AvzMh2oyKfzi3l0455iwM2CKtXtGeHe8ZnM1w2wAPaTugWQszEmIzTMKlPdWsewuTQiFB3l0JXqahcIrAom5pq9U+4Qy5XxdvCbOJanhL+53wglA4lhQISn27n+zz/AIUhrmoLQzjBXsxLw//AY+ymYbUO2zTQLBzOMrwLK9yD6YT76ex7emQkeeuCtOHYbifwNe99B0Ty5AZJrm6wUEWGMpX8AIlAAAAA="; export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/io.ethermail/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/io.ethermail/image.ts new file mode 100644 index 00000000000..3dcca3f0e81 --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/io.ethermail/image.ts @@ -0,0 +1,7 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +const image = + "data:image/webp;base64,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"; + +export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/io.ethermail/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/io.ethermail/index.ts new file mode 100644 index 00000000000..1eaba800dd1 --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/io.ethermail/index.ts @@ -0,0 +1,32 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +export const wallet = { + id: "io.ethermail", + name: "EtherMail", + homepage: "https://ethermail.io", + image_id: "7f3205c6-6051-4cdb-8ef8-84334a7c7f00", + app: { + browser: null, + ios: "https://apps.apple.com/us/app/ethermail/id6451305966", + android: + "https://play.google.com/store/apps/details?id=com.ethermail.ethermail_android", + mac: null, + windows: null, + linux: null, + chrome: null, + firefox: null, + safari: null, + edge: null, + opera: null, + }, + rdns: null, + mobile: { + native: "ethermail://", + universal: null, + }, + desktop: { + native: null, + universal: null, + }, +} as const; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/io.fizen/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/io.fizen/image.ts index 5864aae1b43..5514f603907 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/io.fizen/image.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/io.fizen/image.ts @@ -2,6 +2,6 @@ // Do not modify this file manually. const image = - "data:image/webp;base64,UklGRuAEAABXRUJQVlA4INQEAADwHQCdASqAAIAAPm02l0ekIyKhJZRquIANiWIA1Iom/sGyAdu/JX8ZuqA5V7p831bP948gD2AeYB+kv6q9dzzAfrX+t3v4dIB+nf/////aPegB5YH7YfCh+7X7M+13mtnYFXg74Mq7gB3kuFaMl6DnpngJFOs2F3aZZqRvzN1Dop4PRFPCKZwqRlIfq1GJf7v1NaGKM8hJl8fFyFCe8pF0sTmQETLKcq6LBD1gM/eGHH6FwPufUOYDV4KMU/JR0UpmsFbQJkx6G1zBuBrQOiAqzRx2Rx754Y67u9mADqdMZgCP/0jqQjZIPduAR8BONX0Xbu6ZRb4TUAD+9w1v7SzLDEQ3GPW8KDEIYCYzEgzhMZbYGbmc+peaNmsX00M8RQ+gaBx6bFBnJFu7isv29dsrZtBcfIdkQbkEYNT5x1THkhCKIgiUMEsP8NfALDAPSoMx1zZxZ1yCStKWW6xEcvyZDjfmpmEoCpZSIzJaPftjzpMrUPjSlYo95qK/2tXvvEGk3DrbYjnxqpHAphgrtkLYdH1yK09h3jS1nH8UtMlQ8sq9STBbs+0bMhxCxiIPcRvJaxkwid3qm5nFmnlyGR/aNFl9DFoT8LmC4pucqmSqaaRfNK1MMNArdFeZjmE2F1hf9fdLwgWeBhoQvGAT+Tr9pt3O69FJCQOuTUib5/9O0HT7ePQ2AHvzDNk59FOhlWeWLDVUSlIiVmCvFmQU7UUywarCPjVoZ/lFDcCvlm2eDHy0j3m4LIYCN5SoeLe1Kfwk6RBt58bbMP5VXFzaFRx88JtX5z/Amoea8C8NiGozz+ESruyASUIhRS99mjUscbNWm3/zNgrI1d3ZAVUeroZgfUsbfEe3PB2w2eAKEFVdegW5gPpdzRIXh/ddcB3T8dXUfaDmfNqixN+b63ndeBIkXLCJrDkwCGfsAo4FZuPLF2D7XBL4TAc+JDe157lHAcFpICU09I+x8wE4OlfWa/XNL/Jl/jeyu+8ALakEFVyntw1TcssF0463wiqHHVOZFv6plNCh8iG/Si7FNWuMhcVD1u+I4cIcXgkS8tPQ7HuK55bjBLd4KhBpNus8/0GfHTu0606CKUFuey+vxx9YhhfN4fSc+xawpc32/pH9yO/UpgF0d85IUL07cIpKbFQFXnz2L13Hklfi9DYeE/9exKMwn2LNnhoGS67MGX7HW2l+IILbfDnocIDu3HFbaufhLL8RAAc9f78fSLhPO9nfwBhJQmrm9DqGvmq8OYeBc8pB69srch6QfZS6WlFEqdK2wcDK2xTF7b81IZ6Lz/uMvl9eFj2ThBs/5e2FZ5+I4XP4LjDP/0FMMs+y/NfZA92Y7pnicqhaUyIAHV5kOiI8FYyxBJ+bolhgX3BKnsFdIYakiQNVxN9d5U6PvpD43CcaggEjQhmWREEe7OUgh+Zt5SD9XHfGh0kL9Ks0gFE+VU8C7kfaL8gKUOOTfZHeH9jPRg6k+8ncHzSQNa6Cxr2oLx+n4eW6b58HrDX1eAJ0sH8NAyaUrCjL7rIJSkoj5p1osy0K0lpBK+PUlzwYQPovMk6rcPnwUZ56c3EMvj+9Q9wfTLKaPp3YXbqqxTuMHLy6cppRsQ7z/0GyocLimIkkOH5tt9edxNG0Sula+aSvuJxAAAAAAAA="; + "data:image/webp;base64,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"; export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/io.fizen/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/io.fizen/index.ts index 3966c748adb..2774c03e2be 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/io.fizen/index.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/io.fizen/index.ts @@ -5,13 +5,13 @@ export const wallet = { id: "io.fizen", name: "Fizen Wallet", homepage: "https://fizen.io", - image_id: "4beaa3f0-c807-4de0-dae3-c1b677fc9600", + image_id: "1160bfa2-b669-42ba-b224-13edcd40c700", app: { browser: null, ios: "https://apps.apple.com/us/app/fizen-wallet/id1621269508", android: "https://play.google.com/store/apps/details?id=com.fizen.io.wallet", - mac: "", + mac: null, windows: null, linux: null, chrome: null, diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/io.functionx/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/io.functionx/image.ts deleted file mode 100644 index 8c722cd55e0..00000000000 --- a/packages/thirdweb/src/wallets/__generated__/wallet/io.functionx/image.ts +++ /dev/null @@ -1,7 +0,0 @@ -// This file is auto-generated by the `scripts/wallets/generate.ts` script. -// Do not modify this file manually. - -const image = - "data:image/webp;base64,UklGRrQEAABXRUJQVlA4IKgEAAAwFwCdASqAAIAAPm0ylkakIyIhK5b5kIANiWMDsB7SX7iwwMAuc+3CfO8oUt2gy3AhXIjVwd3iYAbVkkyov5C5HqCQtTxi1AJotaxObeYQF/ZvS2TH/Xz8OpfGqvjRbW5sMIFoCSgEk3fnXzv+YudsBBbq6aGK8SatNnj2lVksjjbhP8wbDOft//8V+bObDGmUDromNc+I5ewfzSRqKxn+kuGicLbL7Y1ZW3L0ul8EpZL7ADKjUeI3vZpsDAL30b7RgAD++mtWQ65h8G/CDnVAjU/B7HL96hH/OIZrv2NAdFQrMwF8W7Iw7RaJFgPNn4cL795282xHSRGOcOTJ7MxhqeBE3OHMh38+atEO0MSzT8kgUJiJu8tpPbd6feRYgg25LuZa0rtFWqCaDCtgNcuba2Oj75e0oJxpCClz4AB03Hcu3go4IVZAe/v5LzbkazauOPaiWB6dvcikD1tIKzDjFUiQLjLY8+edE91zShwmPPGAzlNvSArMXN0GSrEEiYQLWYCdT4E0qe9832ayfYudtMi0XsYO3yZaZpnsRgmnOg/857c6ck0klfETMrUmDNcHaweWrMZL4mczsB7ybG/Rv8uUPKVuVhRzccC3Xl7GSGVhlzGxC/Uu+feqVk2NpHEQ0fgCQehGoEcULZZ3lqYzcsPEdMgXWpe9lHQ77D9zeXpmXLyxyfGw9iJ0OmTyrXrSriIYjLfVEdQWjDuDfWkB2FzN5WpQfPulsnYT2bGaMBjScj+fVJeN+ss90VBO+apzxfE1/eQkUtAZbL9ZtQ4ENacxcqhaip5y9Hcd9FUe6M2n0U40iDWD8/0ZVWtl9338GOu4cG0cyGlYHdcOnAj3TV+eyjMhfUsrqt9WsZ8gt8XrynofoDKmtOEX5MA91GeMonfn7PqRG3P6lg/tcupY31xmGoJq+f3r+qh9ub5lGFXJt/Qg3kSDJRGoC5pwytfr4wTatI3fL31If3NCp8GFjKmaeQazfAjJNLItHXBKqrYxHBs/2tHNWqfS5gQANOc650L4jJ9DLLTmyhSYZID8VnCEHQllVFDlM4DZZCq2+yzTTcvsRGHJvTJSb9yfeG7xj2EXbhys9pH1Qy6+7Lhi+WeCb4uUvd019pBusKvd47yFxZ/GDSMpXWtASURifB95OoDH0Qc4PffrrnvP8v4nrCFda3FylKcNh55MEydzRUYZB3KfdyvTuQ+fafBoVrz7/i2yp8gDfRAXlm4O/aZ6u7EGj4KPXBZMWUBEly0cXa+Ji8e1ncYYiZShYsd1DR8ZmbwLxXkcESe10fS4f+QL9YA/1AWkTzdQYC6sZCJ6ot3/suN3QV034t1wOmBJmwPxlys5z6Db6oADX221Hz/Ea0VxXwrWFHafB5sSeDbKT73VN3VAUW58N0rhtwT1FyaNZ5VL2UehEWIQ0vKtSJn2PcFuLfV0gF6BWfCnK9VxlvjQOsHi6qCPgKOYM4sd81N8tLbgknFe+54GxbTo2FryIza48c7hhMGYfMvKLvwuJXFJxMsHXTV6kUfn2qBXyuYECAHD2YndWh/DYJiS1HaukOF5OY211AWalKblnPmXRGgxdcJOAAAA"; - -export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/io.klever/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/io.klever/image.ts new file mode 100644 index 00000000000..ba9e2c2d52b --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/io.klever/image.ts @@ -0,0 +1,7 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +const image = + "data:image/webp;base64,UklGRp4BAABXRUJQVlA4IJIBAAAQDQCdASqAAIAAPm02mEikIyKhJBn5IIANiWVu3Ta5I2AZ2TPOAecqTioYgOi+1Wvl++dFrLMGv+D0UCti9Vr37etwq6pjh+bBjmXpzM6Fr+RUCzh11VwuPDWlT16IT3OMjXFThBDNeqHsVzSsX2q1gAD+/A3X9VHJ0MkXQAnrGYpEzcyx32TrSZs7LDuecOb5v/y87T/Y+Uf+PfTV+e/0x3qP7YNjCzLyB1gSLmAdcffksmgFZc8I0JvAwJRik7dbUzELItmsUNLb885zWgV1wOtP36usuT/krH1QTa5By/sIVep9yObx8sCkvMaYUd+Fxe4g2KH2FRTWMRvjNdVNnqSmek+T9F76lhLwHgUFN6vedqXEwCGkH4ZHMbQ7fB0ukqSdwGXXoD//J9vR9t+s7nWuDH/oilwPz8DQr0DXzDMFUqWIzlMsqjNcsHRnAdcaAfC2tQw1OU+AvtCi50xRIfKqt6kqVXi4lXJh8BDPKQja2YJQ4HDMDHiqbslR3ivnBZL+AZT+Ppx1gNmQx+3AAAA="; + +export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/finance.klever/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/io.klever/index.ts similarity index 61% rename from packages/thirdweb/src/wallets/__generated__/wallet/finance.klever/index.ts rename to packages/thirdweb/src/wallets/__generated__/wallet/io.klever/index.ts index bb73c20b8d4..5bf0b0cf3dc 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/finance.klever/index.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/io.klever/index.ts @@ -2,15 +2,15 @@ // Do not modify this file manually. export const wallet = { - id: "finance.klever", + id: "io.klever", name: "Klever Wallet", - homepage: "https://klever.finance/wallet/", - image_id: "8f5bbad8-6a14-4b2c-5343-cc1fca6e4d00", + homepage: "https://klever.io/", + image_id: "2e181ba3-bf6f-4599-5349-f7409bc62100", app: { browser: null, - ios: "https://apps.apple.com/us/app/id1525584688", + ios: "https://apps.apple.com/us/app/klever-wallet/id1615064243", android: - "https://play.google.com/store/apps/details?id=cash.klever.blockchain.wallet", + "https://play.google.com/store/apps/details?id=finance.klever.bitcoin.wallet", mac: null, windows: null, linux: null, @@ -22,7 +22,7 @@ export const wallet = { }, rdns: null, mobile: { - native: "kleverwallet://", + native: "klever-wallet://dp/walletconnect", universal: "https://klever.page.link", }, desktop: { diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/io.leapwallet/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/io.leapwallet/index.ts index 47d50461cb0..a78debc7fd4 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/io.leapwallet/index.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/io.leapwallet/index.ts @@ -3,7 +3,7 @@ export const wallet = { id: "io.leapwallet", - name: "Leap Cosmos Wallet", + name: "Leap", homepage: "https://leapwallet.io/", image_id: "d64ae9c7-c0be-495d-041e-35c6bb2cc100", app: { diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/io.nash/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/io.nash/image.ts new file mode 100644 index 00000000000..c52166331af --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/io.nash/image.ts @@ -0,0 +1,7 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +const image = + "data:image/webp;base64,UklGRk4EAABXRUJQVlA4IEIEAACQFgCdASqAAIAAPm02mEekIyKhKROY4IANiWUA1uGWvo/y94Xbev3eirbSc6purXrVSBL95rvP9B7IuzHXc3qfvvmRpocefoi6iU+U+1BIyRVWd9poHyLJbdJlsmobg0Q2xL0R32CuB+bvqwR65cQJL+GjRGkTitmERk6hG+PcmyVelFHA26i83To/A5S4m74xWnTeNPan3n5Hs0CmF+QHkkPb5O6wGJPthewEyyKsCov60q081Wd9qCRkagAA/vEpL/4cn1Je1f1r//znr+v/7z/lIAAAMIFVAj/wf6ntlxHm1jIEMrK+KMiGUVL3v/UoW9AVv8f04BZor9XRc1bajaxD0nHvnWJENr5oU98PT6drwpFPz0+DH8TbWsLR3sxRQfKqoD9fPVezrqBcHekltjqFK9EM8E7L1i4lfPZtTVqQos/pKsMuD/tVj+EyIFHuLHMMNGy+sE62KdZIt+kwxWiInwCbExlOmlpisPg6VkHzectVqaTR8NCP7sxzw5DFO3f/iLw26jEWPRS24mJtkqtywe7UPmI4s+7gBpHvIPDM1ZCfhr51j2ztXTj383USJjG6XxNjTn5dUxkU8I+I4xONcEfbkkjr1Cz55tWqQ5sUkQdqbeq6X1chkAhoRPKmmZzoe27TG2rpm+uJvyO7kWY3z8aURbBIKwlJrbeWTYrMYr+JendMILy63rTftF7hUrnz7/0iQ/V/zm+Npad3+ZBcWF0c6pni6DWxa+zHJEZGJSnltXajT8r86WW2M4ENgwDHD+WD/ro/yGmP1+UibbmJdapA1BdtZ+im6hv6PXHRAUoI3PWksQC2cOWXplBQY/Qo98zVTJXbhhauHS04GIL/o0gNy8N/FvMUhCCMtbDhSBX+oDpDUIVoUdlALCuQGCxvPFZ+01p+CsoijzBa+DThF48jYtmMhoN2t5oU9HoHQbjh0NK1mm6w/lK9URzwrJFrbolpo9HLZMtbH71JNDLKCxKA1jTc97e6TWhkJ6mccWPPxL29gQLzDe/jbYn8y7FlGDPPJn4jlkAR79BsvRdnK3dYQZOksTRqv5D6OkeyXepeZwNXbZI/NtfVIVlBwE2H//AvnDEXrZ/NJu8uP9QaLxvYn9oZYLPxXcbIooCt/f9xJN9oiDpVhERfBv4fgN23nBCTvtn17hvvGtY1eU5bK6uCCNL/Vwo20UMqB/RL6R5rnwn0XTT6eTRqpw9N7qg9Q96r3cH5HPndeYc4KwBG0rc5NkpERkpj5XcIW13pw7zbkR40QbOmh5DDPB72c0pBVssrY4nPyJVIY7zNn0KkvzAFLyGLav22NviJtReK6zSBPE3w1Ptwu7ypw2IlCAA1wSAQhik3fX6HXzqw3t27ADvPzW3t2tqYRpEP4CiwhLAXYJmdga5QA0DW+SIsacH0vYOd0RHS+hca5j45QbQZUc5n/J7fLT3O96AAAAAA"; + +export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/io.nash/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/io.nash/index.ts new file mode 100644 index 00000000000..ddadf7320d7 --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/io.nash/index.ts @@ -0,0 +1,31 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +export const wallet = { + id: "io.nash", + name: "Nash", + homepage: "https://nash.io", + image_id: "65c53de2-05fd-4a62-5f9c-979dcb406c00", + app: { + browser: null, + ios: "https://apps.apple.com/nl/app/nash-spend-save-invest/id1475759236", + android: "https://play.google.com/store/apps/details?id=io.nash.app", + mac: null, + windows: null, + linux: null, + chrome: null, + firefox: null, + safari: null, + edge: null, + opera: null, + }, + rdns: null, + mobile: { + native: "nash://", + universal: null, + }, + desktop: { + native: null, + universal: null, + }, +} as const; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/io.nonbank/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/io.nonbank/index.ts index 73d78a45425..ffc8f24b5a8 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/io.nonbank/index.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/io.nonbank/index.ts @@ -22,7 +22,7 @@ export const wallet = { rdns: null, mobile: { native: "nonbank://", - universal: null, + universal: "https://id.nonbank.io/wc", }, desktop: { native: null, diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/io.universaleverything/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/io.universaleverything/index.ts index 83524367e43..49ceeba3453 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/io.universaleverything/index.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/io.universaleverything/index.ts @@ -9,7 +9,8 @@ export const wallet = { app: { browser: null, ios: "https://apps.apple.com/us/app/universalprofiles/id6702018631", - android: null, + android: + "https://play.google.com/store/apps/details?id=io.universaleverything.universalprofiles", mac: null, windows: null, linux: null, diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/io.zelus/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/io.zelus/image.ts index cee162286e1..1e728a8b837 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/io.zelus/image.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/io.zelus/image.ts @@ -2,6 +2,6 @@ // Do not modify this file manually. const image = - "data:image/webp;base64,UklGRrAFAABXRUJQVlA4IKQFAABQHgCdASqAAIAAPm0ylkckIyIhLZJpSIANiWQA1bDkhFfIebHU/8fwCyIrAvqj/L3sAeJX6lvMB+0P7ge8B/nPVR/iPUA/yHUMegj0sH7rfuB7WdNO26Eb7IFXx3mzl3mj+zeaX9f6UOIkyJctcj417dsKoWyUresDD8kt/UJphNluY7Di3ZlClvK7RmGuXZhdQe63/ODQ5ScaQRPJskDnzTbepwl2PVlf1EpXrF12Ccs5HcNc10jfvB51//9mesfSbahocLOxS4Wr5GY5y90dEp//+9z6Knwjkoe25YsPxGYZmjzWtx/tub6+gn/6pxhCBjIR9z+uiMcEYAD++CNvoKJJH7ixuDlJRwlYDxMnpgpCcLQuujB5F+NGnDokFZYpAhvmfLAF8abBScb83ld9FjQABIO+WsiElOB90SWbPmzcEYSHdZkaofT8UpkztSY0TE3O2EH7TiaTeDtWFaSN5c34ZbDMiosF4fzkHlnCMaKZgwuSSU1J8/F223eNMbj7nKWVfKom9BieSXQIJBxJrf4ytl2aMvSbY1nBbKI58okfextTeUaEStLBF3gocB12y5+aKwptlZng/F0C/bHGPQhg7Faroup/COq2lJY46BCqPaFuYf/4mO8bS0JXj1Zj5cv+H1juRGxZA9MErI6bi3d3xHnScegs24YUunFs3nN7t1N3n3yYcBoK2efXmgd5tzwArQrRa5rrOL4XHsCh3ynEY9Y6FIkRzvYoFQQMqDZXBkxF+b4swt2gIm/J6fo9uMCXAE17SSi0nlLZQwTDDezh5GeBMbIB/POHCdxLvojge/WtQ131bEXJrU9nJ6q8s91wQgoaMrToiSdIsPqUDrUMtBQoubYYUlKrjisgNxvV3SnAyZu/JPQ1tuoboKY1/jiMiyVuEnX3gCDN35qIl3KxXXp3T6Zdhnm2CvEiTm/pvBF538fFG+R2k/oVEaFZNUoG6ymeSaPe8If7v7CCFGNlFXy4z6AeaF+vkIMfPaGr2SYPDheUtnK+mKY9GgzHOPGfmOfDaPL5mTbCWfNNg5CuXB19ScPOorxsvILwt+yJIyGBOf9ggj7VHdta1OqZ8d1NLpt1IrI2lKB3ioqLfiWflGoiESxXxnkDAMmZcfIwwyUvnoSmN+XD/1J3XSpOL/EbIEVKtdcRdQE0i76S6n/4O3G5eVPdhd1Ubkqmw5Etqrpwou56naYGvEwh/hgniNieJt9OpFanUY+DVo3Lhe7HcT5sNxrAcGvTDn5oddW/ttTuuAY6/a4kkWB2OEh54WvQyu5D4nXI8NAbBf1T0XmDJUWPGB7ckhTwsQRlqYpLh3ps1OlSBDsKVa9V/KOt/bzBjUPr/bwfL4CnP8glmj8+LG2T4LE8S9dbFeIzIZCeqbxY4iU3boUEgKsehzdOcPQi0pRFs3NT4+7Vs+EKQWBbeiIN8w2T72lSb56NTG8qOyhF0pU61EGCOIDs6YfPY0/zXoOAoqBUtnHCmGjvZygGjZwZQ4fXvInkSVQfFsSzan62a34HIddcJpAn4HzdE5jSNZ7yBFQrM9JKRTtBOk9JAWz2ncVsPwwqQwuwadw8znWpNN90FhYeG9UejholChrf5mrLEKmGLBXw4LwJFnKHbWd+fWFfLcURUfhAs8X4lijJk7g9cp+JzY+jbAA5MQ/XGoj0mPITpkxFk+F/iyRudyoKPSrIjjWI/xGIBsV+8jYQRhPVsewgrqxD4IRAe2MNqEpdczyHXW65pPr5oVNkyTk330iBc+rRl5zrzMMp5xPVDjOTR9Kqrp53uAm508IqBwjLvLpJ85kcmpcIqo+NsKXIPUpgReJ/uqb9lKXwpRGf/rxi9amgreT1UfHjNNMKGSaixue+GzCz6UBxCqG75fQ3rO+EgqzM+Q8H3QKmVDaMrDjNf4WH+3gji4AAAAAA"; + "data:image/webp;base64,UklGRuAFAABXRUJQVlA4INQFAACwHgCdASqAAIAAPm0ylUckIyIhLRMZEIANiWIG+OgBT/cmeXPjvOfrv+A46Y+VhL1XfoP/ReqT+pvWn8wH669Sn/MeoB/gP871i3oAdKr+6/qD/6q8TPTXqEkyeGPeXvCvz5vHWRe9t1U/wliA4QP/VZ4HzgpEasJ03xu1/9uYrZEB+thfcDLvznWF4V7IQEdXCesP9qeDB/LWgxmkLgqJouGQD13R9IuIvaJP/2btxIBe4/umbLMnX/4G/AVT4P1H/+IaaRuoPmjscaXpJFeyc3k6Q0Db8cv//7uJs+172Lhi2aDnEgyQz8liJXpopldH8aTnQ7wvs4rib2+MPAD++CbOex2KeaPr9qyy7mdkvLp+CTLybS2PEmdO+O+B1MW9C7wSIhHloNcIcADKEMAzNeD7r+ceeb6Ugd0Lq5PFl8NIkLE8RAl8uMtl3EHCF/8A31TKY9pjNM6a3bwpEqzPWWYBnFpWvblvadQwCA2UfM7ArS17ciiMOcrpZXsNIhZChCwFMpSVsyuhZ9Uc9ikX+dgw0ZeTwd+fWD0QW7yV2UmgCujCawyrrAJBvI03TGMtweKHu2lnoo7sQN9uUU351ycklLCpLcP/ZLI4VLMyqZATiTGy8a4iKCIs1Tj6nOJvLaXQGXdTxOUNYsjroUADHDgmF7nqDY1XfCwf9dIR5VviB0I+GiAZb8qxD+gd+7WwkW3YfIR30UpfpWs1zQSmsoMS8aVgpGGd/vBcgq3Pi/Yr/M/sZumKgHWdyHcY77Oa6KqH6kVne7mh3bmKkm2KapNFQaX4cCJkaZtWB1qmLJ1qL2rc/EzVyYPmmvNgxB9EhD5lPLFz7MKvNfGW3h+Bu3YzFddEM4brPfLr4w3NB0Ge2vZzAKPz47bwYCKcVM0osRFTjQ94sIkuxhailcylQXVg8R4KKC+LBf35basJHB/MaB3+shjpXEaVHN0RBdOS1nZmwpy5E6o4Ywwq0X+y3W/hqGg86++gmRyV4qSZMkVbCJGpg2kwuQ3x9uElBjQQlMz+NwtPc+Hit4ZPgi5HA0/NjmOaUda2UuToM02qSVCUT9fqBQnLsEA1Rn7MOQIO6l3J6UTavjQxbQYT/AsniXCYVmeZVVI0fveOZ3bd3JusqWLrjvkxgnqict/Gbxn05x1qPe72qNwwYfy5iRBscusiTHdwOv8jMUdrgVE4HaPjwYF/kCl5+X8gJDViOKw/zTtpXF/62c74V3anVGsNfAuvwWbKo1YTlZKcjPnF7UcOe8qZJ2E7Sy3EfuWzU/5V5AqjVZIC/X1Wyt8I7Nn8tx/dgH+cGWrOaGA6obe8Juy7mG+VvNvsqbWZeVsC7AuErDqPYEGcDz7Ch4UnaV9ygf8pmeJ6h8I667vqdeDXZvVwgNVA2ZkY9dSgcjZrFofw7M4zRm5sb+mRLn/Nh1ps4q9rIWWFS+sO+d0he8BzlU6mfIwiPq0HsSpEiDvQQROE9yqMKMueRbrTvpVIPJpy9qRsuSrG8ykk2Vct7EooeOvw6Qd6aBJ70pkuzof8T5zJmsDbzM2k9KUOU2g5EMlEgcHQ3nZ1tC5yGQactOOmwM/rMlOh3ZBAyF4QjMH1loHtCSqSoH9naW5taipvj0ChgW1Vha/F9oqfZVYtcrAGeT6h4cbN9j5MH5MWkCP2xF5TVRjIT6RXoV4vkELNb8QBavTg4HzvJo9zhs0fGW0arYKAKDEcGoxY01nXRP8qQrdiJ1OfLHlGMA2GbVEd7PgE5WjxDnAw04XUFxU/4D1H0+4walvt9o8TS0e1R8GpEJtPMg58ES2CVUTc2vW3Acg0GmdTcY8Ytv/h9Lmd40OVhh9r8k0lViaGfDSuwP+nZ45nLUK+hH7qBQ8uyFovQlr1OhRAMD8B1DeD5C9VWboJHgXcJ9YvofVNULaSI79DR+8MTNKfU/qsulxcwi+59z+QsnxmrWe7ZPsEETVfop9Zks+gaN0C5wuG8wvXWAKsL9pPAAAA"; export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/io.zelus/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/io.zelus/index.ts index f14bf480954..1dafa5299fc 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/io.zelus/index.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/io.zelus/index.ts @@ -3,11 +3,11 @@ export const wallet = { id: "io.zelus", - name: "Zelus", + name: "Zelus Wallet", homepage: "https://zelus.io", - image_id: "aeba2105-6c84-4642-f441-b3f5817ac400", + image_id: "a173eba6-05b4-43f4-0df6-400563637b00", app: { - browser: null, + browser: "https://rollingloud.bridge.zelus.io", ios: "https://apps.apple.com/us/app/zelus/id1588430343", android: "https://play.google.com/store/apps/details?id=com.zelus.wallet", mac: null, diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/jp.co.rakuten-wallet/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/jp.co.rakuten-wallet/image.ts new file mode 100644 index 00000000000..be219524e0b --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/jp.co.rakuten-wallet/image.ts @@ -0,0 +1,7 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +const image = + "data:image/webp;base64,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"; + +export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/jp.co.rakuten-wallet/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/jp.co.rakuten-wallet/index.ts new file mode 100644 index 00000000000..d4e4274c406 --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/jp.co.rakuten-wallet/index.ts @@ -0,0 +1,32 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +export const wallet = { + id: "jp.co.rakuten-wallet", + name: "Rakuten Wallet", + homepage: "https://www.rakuten-wallet.co.jp/web3/", + image_id: "a7b5c4b1-8b55-4b6c-af68-4b2786480600", + app: { + browser: "https://www.rakuten-wallet.co.jp/", + ios: "https://apps.apple.com/jp/app/id6504903632", + android: + "https://play.google.com/store/apps/details?id=jp.co.rakuten.web3wallet.crypto", + mac: null, + windows: null, + linux: null, + chrome: null, + firefox: null, + safari: null, + edge: null, + opera: null, + }, + rdns: null, + mobile: { + native: "rakutenwalletweb3://", + universal: null, + }, + desktop: { + native: null, + universal: null, + }, +} as const; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/network.trustkeys/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/network.trustkeys/index.ts index cc13cb4e660..3410d122108 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/network.trustkeys/index.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/network.trustkeys/index.ts @@ -3,15 +3,15 @@ export const wallet = { id: "network.trustkeys", - name: "TK Finance", - homepage: "https://trustkeys.network/", - image_id: "c4066f68-2247-49bf-ac8a-a677bfa81800", + name: "TrustKeys Web3 SocialFi", + homepage: "https://trustkeys.network", + image_id: "35644c6b-c6f3-4e45-b68b-e888c21afd00", app: { browser: null, - ios: "https://apps.apple.com/vn/app/tk-finance/id1601968967", + ios: "https://apps.apple.com/vn/app/trustkeys-web3-socialfi/id1601968967", android: "https://play.google.com/store/apps/details?id=com.trustkeysnetwork", - mac: null, + mac: "", windows: null, linux: null, chrome: null, @@ -22,8 +22,8 @@ export const wallet = { }, rdns: null, mobile: { - native: "tk://", - universal: "https://trustkeys.network", + native: "TKwc://", + universal: "https://trustkeys.network/", }, desktop: { native: null, diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/org.arianee/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/org.arianee/image.ts index f4c92883de5..5ec89fc3af0 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/org.arianee/image.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/org.arianee/image.ts @@ -2,6 +2,6 @@ // Do not modify this file manually. const image = - "data:image/webp;base64,UklGRpIDAABXRUJQVlA4IIYDAACQFQCdASqAAIAAPm02mEikIyKhJhaooIANiWkKFqPoA/kHaV/cuhP76pGfsN9yzj/+R3rLLP+W4wPph/dvUl/Pv8tx7HgHsAflz1VP7LyAfTHo0jDg6tfL+zilOrXy/sOs7b7KraTVFivaiCcyEceQKHb+R1iGyOs/yHR5lzYyTg5QPg0v9Pxu6JopZk/IW6f79Pf+Hc5XZvXrOYd7jvjJdq1amxpzszMGNFosp1a+X9nFKdLAAP7/mCwAENQhSItk9Bk2pEiXhDBMBVtp8N6UVGsh+iFR2ij0Hl1NpoCl4+tRSeYcxpx//gSqrzImoDLvjOAP/Pn7M3dgf5i3qvDtlVfDI1jfZ6z8BsMyow0kfXO09OzV+Hti0tzTL1rT5q8LQOdqlIOHt+FECKeNPWyW/hc9IXWPd7Q8qVRjTFdTVE7tiXOVV3DbTHBz2fUXxL8msSuV3nt6N04NpJtxU0RTZkxlik4QSeqdkYPBp3zqMsgQmhV4OFgKIFAKyGu/RyNbtlr+aOPvRU4u3jtSqD7ulJLMEKq8ity/mdStOVV/NgxbMmnWH/T6qEIQro5DLOCZUP9RCYUc8+bweJ7I2rb7JYqEpCSCNROh95PA4UQ10SK2PcIc896qQYvCYB3Ux/gss4x9fCVRR+Fr9JdkOMmCZfPQN9zh1nRAH3tw1peoAnz+I1Da9dNb4ijKU5Odh2/3/8xX0dKf5jIXOcmL5ZXSHq4t9FSqfmICG1Z4M84g0X0LPvU8x3FWv9/JLmeg0t4Bd5NfC3lG0LH3Ze58ORQRI/hy05Wr6LkRbqdoKhdah8CHj7D3MtrCaeEm8b3P2kqRtzN0NwxOoR8lU9lSLBV4bLAa/8BsO4cB72RdcYpte76L1DoEj3gQSRLVctHNKbF5gPvxiZDHxRUUCmVujISrn+pIsK8fhp/WrjIPhgVaPnuvkEr5p+VbO5YZ4k1GP8TjWxu5SQxvPfYDX2AJqshZ0s+I81vO2maA+eXwSfLWVzOkwz3bE0wDLJsieEfLMjy+95p9ZKnRZOdWL1BKVaOvp1vQ3SnAv84/qS7zz6U9bPRZiZBCm9jAp3wZH+WMxllgP7+wblPh53VXuzfqrfCXMbA7TM3tmDWP4YQo99L61/YLb6PK2sDDY1X/fbXqTRnSLkNbBa3d9Koenl93r+reo5tfNYOstWsFoCefkbM3vIQAAAAAAA=="; + "data:image/webp;base64,UklGRpIDAABXRUJQVlA4IIYDAADwFACdASqAAIAAPm02mEikIyKhJJcZAIANiWkAFcAdVXo8PKXsrk3Hsf5eaJ3/AY83/TfaBrnf2R5CygB4hP+99qvuY+p/YN/WEWRNQRfHtVr5fvagkb3pEQ0j5H1VKy/XzqFsLfbBwfK1jPkucsnjfv2QOtz3J90OKubvJdXunr9y8TPkyD4IxxI9PmrJGpP7+b3PB+Mf3l+6fCYbw3KHagrTbXYlMy2xE7H752P1AAD+/FzQAAW0BS8u9Fug5efRnPfCNq5BzGTAxRESFXmc1chKmjAd9UejPSY3LHC0GQn18FM3MDJ1QiEfgbAsReZgGgMczk3SscJXHisNB8SpQyxKyj7xWGlpFo16bM7Ot3H9BwufL+p2qyC3YO7YLrdyH5Cgt5uaNp5z9yaZv2UdN3aSRPIf+nK+LMV+xMW5xNjzl/HTlzAnWXqbq/l3RKbRu/ka3ZznY5qngG5GOyiAcX2ByZHxhPhOkZwsR6QxB3KmLNs3HAXd9WhY/C/OcR+fdsXjXiJkmrNCkC5wK5AeV2iPrGaJ4PMzYBRVj2qgmmxg3if36+I6+DtMpnccoTSqXAjK8iB0eHulqFZLV6N14XR5M+wmfMaRop/v5Bp3a8yPSaFQZHQKB302EB5eAAAt9Z/6HePZDdRb4yQzSM0XFXcuMGHvYn2zV4zr1NKv/FG8CKRtjYz2HzyBYusl5zr7+Yoons0cN5twriKMoiIBk6eJjNNTNWgMtAWwphzx3V/8U51gSA/4/0D+neSrS+mkwHmFYeoP00boplrCPykT2FGJVeFV8B7eMjoUUWwyYkLdSltn2qJdzbBr73aM8ke5H/zA1Vfd8azl9Zdm0kwPf/9DTs+0tHWTSxp1TJQ6cF3xC8JIh9P4NXb7ua3RhfGw5wnt1luTn//HyZdBLOBEx4nZmtEuO9UzzCkCfRmklUr2gggQIJFtq9b2NIAUt91nvSsjmi3+NgYWvFGKxQf7H8htOw7KkUKQjNgderv3WjA97x6/h0vg5TfJOkk1M6T8qDikOcUCeZaHQYul3hfOre2PGY8kqFgYgYm0+vrO0PcwBuLngdB4/tApqiQXg5FH/lK5adsmiQw7N6sHJeVz7y99o8l6pMqh+yHb5YWl5+saVR0rz6u/vuXCVnnyVf1EIcB5XuwDWtUrBrKnRI7bkeL/RnvYY1P1vq9693wwICM4oAAAAA=="; export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/org.arianee/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/org.arianee/index.ts index d2bb9c5c7f4..791dce3f80b 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/org.arianee/index.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/org.arianee/index.ts @@ -5,11 +5,12 @@ export const wallet = { id: "org.arianee", name: "Arianee Wallet", homepage: "https://arianee.org", - image_id: "ace938a9-c906-4b9e-f683-b85f1ab72800", + image_id: "13b7fe36-909a-4c83-4f06-5740829a3900", app: { browser: null, ios: "https://apps.apple.com/fr/app/arianee-wallet/id1435782507", - android: "https://play.google.com/store/apps/details?id=com.arianee.wallet", + android: + "https://play.google.com/store/apps/details?id=com.arianee.wallet&hl=ln&gl=US", mac: null, windows: null, linux: null, @@ -22,7 +23,7 @@ export const wallet = { rdns: null, mobile: { native: "com.arianee.wallet://", - universal: "https://arianee.net", + universal: "https://i.arian.ee", }, desktop: { native: null, diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/org.ecoinwallet/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/org.ecoinwallet/image.ts new file mode 100644 index 00000000000..d7f81f7f35f --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/org.ecoinwallet/image.ts @@ -0,0 +1,7 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +const image = + "data:image/webp;base64,UklGRmYCAABXRUJQVlA4IFoCAADQDwCdASqAAIAAPm02lkckI6IhKxXYAIANiWMA1mmTvT/x18Ljh15wVl6+YHF6AhXOcmZAGl9KBpuxzObsKlt8eANnXmMQANOnw4Ha68keOw9EJFtjSkos3V2eE3L+bDNObUVY1IVJS2X5VysA/Afz/I6+z5zajHVH7USKV8TDlaPmCw5OgwAA/vCwN/8bxt3277edyKcJAAB2ALNOhTPndaZ+XeejGWA8QA5/52nFYzkRqeCtD9j78iKHEWDNrjJMHI6RoLlZLZbIyooLn1utsy/K+m0fnJqu++u5I53SQZV7fT0WO7vKRmtJtjovrFPvS8keBKJpWPWMEHgZzLZF5NnShQDCDg3mM9+CbZcLMShi4HHf6ODX5apGbVizmd15U4sm0mI2hBMRAUR2IT9YNCPMgJMAAsfu73IBy9sAEhIWgz+xlhUh5Bj+QMVxRJwBeA0gIbmuIVRpGaPxJobIGghzRJrcdbUowXoAAqdwiwtTRLjun8fmL/X0RwVvanD5u3oibHggrs2uZMPmyq5xV7YT/g9j0LDcuXdWJjneFdCT4v+DtNErxxPigZhxzV9FbSxFd7IF/AKQ4+ZSX6jlkZPb4T+MJPgMAxeEu9Apoj6jXtaGqNgCP7etqd/69OpRff8B2lB6yPqV0h7gsJuKC6oeHxVeuCNZOvNIjs4SIuIEM1VyNCmNfGvHvNJqFiDc+qPHgS+G+7AKMpz3Mi+RiZLHxcWr/D+cNQJ3s7hAm2gFgfqUAVrZeJl/9sQmUM1Exx90K8ZtVmicJebLFmaK/j8M5xGtgAAAAA=="; + +export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/org.ecoinwallet/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/org.ecoinwallet/index.ts new file mode 100644 index 00000000000..28769d4be1e --- /dev/null +++ b/packages/thirdweb/src/wallets/__generated__/wallet/org.ecoinwallet/index.ts @@ -0,0 +1,32 @@ +// This file is auto-generated by the `scripts/wallets/generate.ts` script. +// Do not modify this file manually. + +export const wallet = { + id: "org.ecoinwallet", + name: "ECOIN Wallet", + homepage: "https://ecoinwallet.org/newsite", + image_id: "9639c263-d590-4862-ba9f-d5c7c1878d00", + app: { + browser: null, + ios: null, + android: + "https://play.google.com/store/apps/details?id=org.ecoinwallet&referrer=utm_source%3Dwalletconnect%26utm_medium%3Dreown%26utm_content%3Dlink", + mac: null, + windows: null, + linux: null, + chrome: null, + firefox: null, + safari: null, + edge: null, + opera: null, + }, + rdns: null, + mobile: { + native: "ecoinwallet://", + universal: "https://ecoinwallet.org/link", + }, + desktop: { + native: null, + universal: null, + }, +} as const; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/xyz.ctrl/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/xyz.ctrl/index.ts index 171ad72bd1d..4576de9825a 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/xyz.ctrl/index.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/xyz.ctrl/index.ts @@ -23,7 +23,7 @@ export const wallet = { rdns: "xyz.ctrl", mobile: { native: "ctrl-mobile://", - universal: null, + universal: "https://ctrl.xyz/deeplink/wallet", }, desktop: { native: null, diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/xyz.nestwallet/image.ts b/packages/thirdweb/src/wallets/__generated__/wallet/xyz.nestwallet/image.ts index bfe4bce6425..cb0918eb2c4 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/xyz.nestwallet/image.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/xyz.nestwallet/image.ts @@ -2,6 +2,6 @@ // Do not modify this file manually. const image = - "data:image/webp;base64,UklGRvIKAABXRUJQVlA4WAoAAAAQAAAAfwAAfwAAQUxQSBMEAAABCjrP/jtOrDNIycZ062qt9UgWVNa6MpnOpan8DUDm5nvZMtubYBt6wye4OYFysFxRbc455xyR0TLnBofxzPn3v/M/ETEB8GXTrtQ3U79uXH38dsuR2OLHVzd+nfoqFW0SFDZHksPZ/MwfpXN3nr3b/OxImE1+dudc6feZfDadjDSrLZxIjxeKd8vSbdxdL4ynE2FV6XhmsvhSNp4xmYmH1ROIpiZOOtKrMBOpaEApIXt0cUt6e4tH7XZVWKbrwDXpR97bGYACLBE7/kj6FSYmLN9Fcg+knw1HfNY2dlE6voLmsTY/Dcx/cKTf8WF+wDfB/I1tqUJcPxT0R/fca6nKV9zth5GT21KdMOy5jiO3tVoZIW/Z0++0arlgeynxo1YxjHf65rSaZ41Xhta0qtl4whpclY6ioFfZ8kD/mnS0qqG5v3G7Z7Wj1Q3NiUbZP2rVgxsTKmj1m46GHHlHAKMRI7c1hTziXvdJSaPpdis46xABDrqUe62pRN6dweuazhvsRmB+mxDMGxeyHzSlyNZlRS44pOCCsepATlLLqN2KPXCIgYlZNbUdl/QarqnzEUHoqqV9r6T4QKgG+xpJbFcLjGqa2VSJLhLF0SqpMlFIVQpPSKoRrhA/SZZBhYxDFjL/2zEp6T4RFkBinbBiQgDpl4SxAZr3aMoZYmeBNMNIFklDUgzfJQ3DVrZMGrJ2XtOeS00Th69+I+6PqRJxpV/PEYeNO8SZq8+Iw+O3xDFvEmfKn4kzDoiDJh8gDmVDnOFN4sxjJo6vPiMOG3eIM7+eIw5TJeJK3/xB3G+paeIQzRGXb8qWSUNWDN8lDcMiWSQNSbGzQJphNO8hjSGQfkkYGwCJImHrCQGETxA2uUMAyDhkISP+Hz9JlkGF8ARZCFdAqkwUUqJydJEojlYJjBLFpgrsaySxjeqhAyTtba8BXY8IQqeote04QYZrsmIPHGJgYlZNQE5Sy6jTilxwSMEFY9UBZD+QgqyoPzC/TQjmjQsYvEHIdRau5l+TgZxwNzjrEAEOuoTuk0SYbrg+cpsEHkEDj7wjgCEa2VEgwIQaAvtH5YFFgxOz2lEYNO8WDe9f046yoLlfNN4aXJWOoqBX2fIAMLQmVc0GHu2bVdScgWcTPyoJRnjYLrxTDk/bwtOhI7cVw+gQXh85ua0QGBY+7J57pYzX3C18GTx0fVsJuJEPCr8OzH9wfIcP8wPCx21jF6XjK2geaxP+juQe+MpwBH63ROz4I9/AxITlO8AKdO695gs+0BWAUGS7Pbq45bEtHrVDUKmJpiZOOp6BmUhFA0K54XhmsvjSA4zJTDwsFK0T6fHC+t2ya7hbLIynE2Gh9OZIMp3Nz/xeOnfn2bvNz46E2eRnd86V/pjJZ4eTkWbhdQBWUDgguAYAANAhAJ0BKoAAgAA+bTKTRqQjIaEtF2iggA2JYm1nH9xsOUO1YcgCCF77smOXe7/HT8gOpZ5h7yegB5GyPevv839vPbX8wD9J/9j9oHdh8wH7K+sv0gH62///sJf1A9gDyt/2v+EH9qv2+9n3NbP7t2//32uy3+9rbdfhppn3kh+niwK7Q1v6Nn+7RM/pG8gD2TGMtrwJf/c0/tMfc6Sn3l++EocMwWi4CHzY5cQ36w0Tonba7AUQ2uZcFKOZjF0BhmkgInf2d8xXONnYUcEGbmIYYbXxDOJ8lYiTMFfW+sfESd20oZ+000eLaY5UPCWHHBV8dMTzyvMElibvko3Yty9PFyRmTl2lw5u0A+pRtE3Oegblopa0AAD+/TZySb/72P1LhAVUETqUG9Sv1O/8dGfKhW697Q++0aUeX5pOQs8gcqEMbjiEHNbHAT2C495sK/zCdwmitYfuFBMZLiLQebGLdree3JAWdBmMNrxN6CsAAGJVfb/RCs4RSsbo//PnaO7N1l+dZyPG7ZfSJGw63vKFBBnzYojr1tQ3I+0gzAGJWFgumTPkS79P51a2mu6t+h2tGvJnMivw2rnIt3t/foOQNzVntaWT/9HngF/0lj+XViaEdYhlXp9SEYztoX+9Yq2LfLMkOWB19YMhTDAxuM+3+VoTdHmbfaerqNzksODdWLCdQAsurbAvkzreReqyACwS72IBQY4EfesG0FN46I8HIw8MCovDjsaPry6zAei3/ran935ZkWZ2Ol1GAkkxQBOX0kSSaBxfYhL19LhcgW3Kv+/1ujuTEAxupn/PPR/+JJ6Dc8wTWFKId44yLydaXR37iZPLbIXGjQHsSinYD24/6+xak78lJkax7nwZxhLSGYyo+EuSMwUqFcyTbVU612T0+I7L4Q+l7DNJzqqSIRPgBwDxNnhoAhXupisJHfi+SYB3EgcqAnOFv2VwGIPjePZbiU+qjxBYRwjF56Imkj95tu33cj6IwWdqXq8vm8as6VN2mXSMbjaPgXVkcbFd498OmBk6+11kNIfdkN1oSCpCrgGEm5HTTVBw5Yge9LXsIbKksp6mB+0PFCKmQj9u5gxccmdHJWaxaM1JF6eUiX66TU6utxdfE+GD8jc0+0G4NiufkRX/uyjbG3YtT/esNGn//Dp2AqHMN8g8l2AEL9zRqoEtI9bzoI1VKPuOalN8vE/t0xwXfc9YFzFHhVRLxMkz/FulBoYtnv/ZpFpS0+RU76qsvnhm1Eab0MmdMk7SV50ftdPxpY7gPKZv+pfR2SDIv+inQeTMlAVWIodAxE9w2hlO/lp/9WCTEo0uR8cHxsh/yd1FYnAI2yiTG8cLpgsi2YmlNXE13bYbbEEeupBTAdL2lv7wN31bkdbeNBuclHDBR5ZPv4vgrU5+uckF28DPlnDegBEAcYhTfD3MNNTREdA7v6zz1jeP3g15LGwB3O6DE/RDjFixGCDbtLkHaAMLlLPjM4H758Vz5pAeyzknRC0NkwxM6USHD4JsIB+jCo1v83N5zJPcAcDvIY3dHcGis70jH09kl2uyZU+sJ/+TOVzk4eqxL9uS+a8AmnHDYjcSfsD4kBnetWDh0vSzAG/ozbBBINnVKAXT4v+8TVX2dEOrzy/eR9uggE6N88Oqz+JP1YAMZTdUx7FWrkQycDcIwPwp5MZ0DuvW/1QeAM+XUnAwIp78PHSJW5qHH+1nrJp0O5+qWUZUbOGzO7fLX4NqFbgXzmcyqYZPK1DdFl5CeGFvD1PpYplj/PO/UgYvGvbuc3ui94P9LP6Gwj+NP4zeJzuwmz5o9fwyrx69DGDqG7Wsnbkhra0fZp4+/MK/O6Pgw/TX4oOaNj8Ek19TDSAtPiyPFmOyNrs/VSbBCpPVtUyC/55ZfyHNXIyEijXLmdJY01xaFJWkQDaRPpW+QVuUO+Dyk+fYin+dWBBgY/PRorJEYb/5WCyw8YOP92oFyhgCfI0ht4doyVosVM3ezj82pv1hS1vX7I+9JrxmBlczq8IrlpcqgBBqZEEJbcAWtw7lYaUnqwr8SPyTH95ccQXFdy2pK7a71eeRpKKZy82oY1VTA2AiE0rTNsbcbx4o7dknt3W8QLesPeWhV7av46koACVrMR0dUVCn+mBDEoyLB0VBgg60vX1A6EUs8GWjuCHn4KahpXIRIzrCWyOUYyJxFJRhDzigczlEGIAABINCru3dbjgmdJIjGIp+tbtw2fPgXh9HpNoykV6IUEBQr54MZozAH/0NhQAG1cEcC6rqFtFRPpD9in2Ab8c1MQuM1c18MJZ+4AA="; + "data:image/webp;base64,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"; export default image; diff --git a/packages/thirdweb/src/wallets/__generated__/wallet/xyz.nestwallet/index.ts b/packages/thirdweb/src/wallets/__generated__/wallet/xyz.nestwallet/index.ts index d960b476ebb..b05a2a06753 100644 --- a/packages/thirdweb/src/wallets/__generated__/wallet/xyz.nestwallet/index.ts +++ b/packages/thirdweb/src/wallets/__generated__/wallet/xyz.nestwallet/index.ts @@ -5,7 +5,7 @@ export const wallet = { id: "xyz.nestwallet", name: "Nest Wallet", homepage: "https://nestwallet.xyz", - image_id: "f8240c0b-97dd-4853-6a58-d10dadb2e800", + image_id: "9f471f97-0b62-4af9-6198-fc9c4bd58000", app: { browser: null, ios: "https://apps.apple.com/us/app/nest-wallet/id6451122334",