├── .browserslistrc ├── .github ├── .stale.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE │ ├── bug_fix.md │ └── feature.md ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── .mocharc.json ├── .npmignore ├── .nvmrc ├── .prettierignore ├── .prettierrc.yaml ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── babel.config.js ├── demo ├── nextjs-ssr-app │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components │ │ ├── Main.tsx │ │ └── provider.tsx │ ├── next-env.d.ts │ ├── next.config.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── next.svg │ │ └── vercel.svg │ └── tsconfig.json ├── react-app-no-modal │ ├── .gitignore │ ├── README.md │ ├── config-overrides.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── src │ │ ├── App.css │ │ ├── App.test.tsx │ │ ├── App.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ ├── logo.svg │ │ ├── react-app-env.d.ts │ │ ├── reportWebVitals.ts │ │ ├── setupTests.ts │ │ └── web3RPC.ts │ └── tsconfig.json ├── vite-react-app-sfa │ ├── README.md │ ├── eslint.config.mjs │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── images │ │ │ └── github-logo.png │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── src │ │ ├── App.css │ │ ├── App.tsx │ │ ├── components │ │ │ └── Main.tsx │ │ ├── config.ts │ │ ├── index.css │ │ ├── index.tsx │ │ ├── react-app-env.d.ts │ │ └── styles │ │ │ └── Home.module.css │ ├── tsconfig.json │ ├── vite-env.d.ts │ └── vite.config.mts ├── vite-react-app-solana │ ├── README.md │ ├── eslint.config.mjs │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── images │ │ │ └── github-logo.png │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── src │ │ ├── App.css │ │ ├── App.tsx │ │ ├── components │ │ │ └── Main.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ ├── react-app-env.d.ts │ │ └── styles │ │ │ └── Home.module.css │ ├── tsconfig.json │ ├── vite-env.d.ts │ └── vite.config.mts ├── vue-app-new │ ├── .env.sample │ ├── .eslintrc.mjs │ ├── .gitignore │ ├── .prettierrc.yaml │ ├── .vscode │ │ └── extensions.json │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── favicon.ico │ │ └── web3auth.svg │ ├── src │ │ ├── App.vue │ │ ├── MainView.vue │ │ ├── components │ │ │ ├── AppDashboard.vue │ │ │ ├── AppHeader.vue │ │ │ └── AppSettings.vue │ │ ├── config.ts │ │ ├── global.ts │ │ ├── icons │ │ │ └── index.ts │ │ ├── main.ts │ │ ├── plugins │ │ │ └── iconPlugin.ts │ │ ├── services │ │ │ ├── ethHandlers.ts │ │ │ ├── solHandlers.ts │ │ │ └── walletServiceHandlers.ts │ │ ├── store │ │ │ └── form.ts │ │ ├── style.css │ │ ├── translations │ │ │ ├── en.json │ │ │ └── vi.json │ │ ├── utils │ │ │ ├── chainconfig.ts │ │ │ ├── constants.ts │ │ │ └── solana.ts │ │ └── vite-env.d.ts │ ├── tailwind.config.js │ ├── tsconfig.json │ ├── vercel.json │ └── vite.config.mts └── wagmi-react-app │ ├── README.md │ ├── eslint.config.mjs │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── images │ │ └── github-logo.png │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ ├── src │ ├── App.css │ ├── App.tsx │ ├── components │ │ └── Main.tsx │ ├── index.css │ ├── index.tsx │ ├── react-app-env.d.ts │ └── styles │ │ └── Home.module.css │ ├── tsconfig.json │ ├── vite-env.d.ts │ └── vite.config.mts ├── eslint.config.mjs ├── lerna.json ├── locales └── importLocales.mjs ├── package.json ├── packages ├── modal │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── eslint.config.mjs │ ├── package.json │ ├── postcss.config.js │ ├── rollup.config.mjs │ ├── src │ │ ├── config.ts │ │ ├── connectors │ │ │ └── coinbase-connector │ │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── interface.ts │ │ ├── modalManager.ts │ │ ├── providers │ │ │ ├── ethereum-mpc-provider │ │ │ │ └── index.ts │ │ │ └── xrpl-provider │ │ │ │ └── index.ts │ │ ├── react │ │ │ ├── Web3AuthProvider.ts │ │ │ ├── context │ │ │ │ ├── WalletServicesInnerContext.ts │ │ │ │ └── Web3AuthInnerContext.ts │ │ │ ├── hooks │ │ │ │ ├── index.ts │ │ │ │ ├── useChain.ts │ │ │ │ ├── useCheckout.ts │ │ │ │ ├── useEnableMFA.ts │ │ │ │ ├── useFunding.ts │ │ │ │ ├── useIdentityToken.ts │ │ │ │ ├── useManageMFA.ts │ │ │ │ ├── useReceive.ts │ │ │ │ ├── useSwap.ts │ │ │ │ ├── useSwitchChain.ts │ │ │ │ ├── useWalletConnectScanner.ts │ │ │ │ ├── useWalletServicesPlugin.ts │ │ │ │ ├── useWalletUI.ts │ │ │ │ ├── useWeb3Auth.ts │ │ │ │ ├── useWeb3AuthConnect.ts │ │ │ │ ├── useWeb3AuthDisconnect.ts │ │ │ │ ├── useWeb3AuthInner.ts │ │ │ │ └── useWeb3AuthUser.ts │ │ │ ├── index.ts │ │ │ ├── interfaces.ts │ │ │ ├── solana │ │ │ │ ├── hooks │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── useSignAndSendTransaction.ts │ │ │ │ │ ├── useSignMessage.ts │ │ │ │ │ ├── useSignTransaction.ts │ │ │ │ │ └── useSolanaWallet.ts │ │ │ │ └── index.ts │ │ │ └── wagmi │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ └── provider.ts │ │ ├── ui │ │ │ ├── .eslintrc.json │ │ │ ├── components │ │ │ │ ├── BottomSheet │ │ │ │ │ ├── BottomSheet.tsx │ │ │ │ │ ├── BottomSheet.type.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── Button │ │ │ │ │ ├── Button.tsx │ │ │ │ │ ├── Button.type.ts │ │ │ │ │ ├── ButtonSocial │ │ │ │ │ │ ├── ButtonSocial.tsx │ │ │ │ │ │ ├── ButtonSocial.type.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── ButtonWallet │ │ │ │ │ │ ├── ButtonWallet.tsx │ │ │ │ │ │ ├── ButtonWallet.type.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── ConnectWallet │ │ │ │ │ ├── ConnectWallet.tsx │ │ │ │ │ ├── ConnectWallet.type.ts │ │ │ │ │ ├── ConnectWalletChainFilter │ │ │ │ │ │ ├── ConnectWalletChainFilter.tsx │ │ │ │ │ │ ├── ConnectWalletChainFilter.type.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── ConnectWalletChainNamespaceSelect │ │ │ │ │ │ ├── ConnectWalletChainNamespaceSelect.tsx │ │ │ │ │ │ ├── ConnectWalletChainNamespaceSelect.type.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── ConnectWalletHeader │ │ │ │ │ │ ├── ConnectWalletHeader.tsx │ │ │ │ │ │ ├── ConnectWalletHeader.type.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── ConnectWalletList │ │ │ │ │ │ ├── ConnectWalletList.tsx │ │ │ │ │ │ ├── ConnectWalletList.type.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── ConnectWalletQrCode │ │ │ │ │ │ ├── ConnectWalletQrCode.tsx │ │ │ │ │ │ ├── ConnectWalletQrCode.type.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── ConnectWalletSearch │ │ │ │ │ │ ├── ConnectWalletSearch.tsx │ │ │ │ │ │ ├── ConnectWalletSearch.type.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── Embed │ │ │ │ │ ├── Embed.tsx │ │ │ │ │ ├── Embed.type.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── Footer │ │ │ │ │ ├── Footer.tsx │ │ │ │ │ ├── Footer.type.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── Image │ │ │ │ │ ├── Image.tsx │ │ │ │ │ ├── Image.type.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── Loader │ │ │ │ │ ├── Loader.tsx │ │ │ │ │ ├── Loader.type.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── Login │ │ │ │ │ ├── Login.tsx │ │ │ │ │ ├── Login.type.ts │ │ │ │ │ ├── LoginOtp │ │ │ │ │ │ ├── LoginOtp.tsx │ │ │ │ │ │ ├── LoginOtp.type.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── LoginPasswordLess │ │ │ │ │ │ ├── LoginPasswordLess.tsx │ │ │ │ │ │ ├── LoginPasswordLess.type.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── LoginHint │ │ │ │ │ ├── LoginHint.tsx │ │ │ │ │ ├── LoginHint.type.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── Modal │ │ │ │ │ ├── Modal.tsx │ │ │ │ │ ├── Modal.type.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── Otp │ │ │ │ │ ├── Otp.tsx │ │ │ │ │ ├── Otp.type.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── PulseLoader │ │ │ │ │ ├── PulseLoader.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Root │ │ │ │ │ ├── Root.tsx │ │ │ │ │ ├── Root.type.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── SocialLoginList │ │ │ │ │ ├── SocialLoginList.tsx │ │ │ │ │ ├── SocialLoginList.type.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── Toast │ │ │ │ │ ├── Toast.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── Widget │ │ │ │ │ ├── Widget.tsx │ │ │ │ │ ├── Widget.type.ts │ │ │ │ │ └── index.ts │ │ │ ├── config.ts │ │ │ ├── constants.ts │ │ │ ├── context │ │ │ │ ├── AnalyticsContext.tsx │ │ │ │ ├── RootContext.tsx │ │ │ │ └── ThemeContext.tsx │ │ │ ├── css │ │ │ │ └── index.css │ │ │ ├── global.d.ts │ │ │ ├── handlers │ │ │ │ ├── AbstractHandler.ts │ │ │ │ ├── EmailPasswordlessHandler.ts │ │ │ │ ├── SmsPasswordlessHandler.ts │ │ │ │ └── factory.ts │ │ │ ├── helper │ │ │ │ ├── countryData.ts │ │ │ │ └── testAccounts.ts │ │ │ ├── i18n │ │ │ │ ├── dutch.json │ │ │ │ ├── english.json │ │ │ │ ├── french.json │ │ │ │ ├── german.json │ │ │ │ ├── index.ts │ │ │ │ ├── japanese.json │ │ │ │ ├── korean.json │ │ │ │ ├── mandarin.json │ │ │ │ ├── portuguese.json │ │ │ │ ├── spanish.json │ │ │ │ └── turkish.json │ │ │ ├── index.ts │ │ │ ├── interfaces.ts │ │ │ ├── localeImport.ts │ │ │ ├── loginModal.tsx │ │ │ ├── modal │ │ │ │ └── index.html │ │ │ ├── public │ │ │ │ └── index.html │ │ │ └── utils.ts │ │ ├── utils.ts │ │ └── vue │ │ │ ├── WalletServicesInnerProvider.ts │ │ │ ├── Web3AuthProvider.ts │ │ │ ├── composables │ │ │ ├── index.ts │ │ │ ├── useChain.ts │ │ │ ├── useCheckout.ts │ │ │ ├── useEnableMFA.ts │ │ │ ├── useFunding.ts │ │ │ ├── useIdentityToken.ts │ │ │ ├── useManageMFA.ts │ │ │ ├── useReceive.ts │ │ │ ├── useSwap.ts │ │ │ ├── useSwitchChain.ts │ │ │ ├── useWalletConnectScanner.ts │ │ │ ├── useWalletServicesPlugin.ts │ │ │ ├── useWalletUI.ts │ │ │ ├── useWeb3Auth.ts │ │ │ ├── useWeb3AuthConnect.ts │ │ │ ├── useWeb3AuthDisconnect.ts │ │ │ ├── useWeb3AuthInner.ts │ │ │ └── useWeb3AuthUser.ts │ │ │ ├── index.ts │ │ │ ├── interfaces.ts │ │ │ ├── solana │ │ │ ├── composables │ │ │ │ ├── index.ts │ │ │ │ ├── useSignAndSendTransaction.ts │ │ │ │ ├── useSignMessage.ts │ │ │ │ ├── useSignTransaction.ts │ │ │ │ └── useSolanaWallet.ts │ │ │ └── index.ts │ │ │ └── wagmi │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ ├── interface.ts │ │ │ └── provider.ts │ ├── tailwind.config.js │ ├── torus.config.js │ ├── tsconfig.build.json │ ├── tsconfig.json │ └── webpack.config.js └── no-modal │ ├── .gitignore │ ├── package.json │ ├── rollup.config.mjs │ ├── src │ ├── base │ │ ├── analytics.ts │ │ ├── chain │ │ │ └── IChainInterface.ts │ │ ├── composables │ │ │ └── index.ts │ │ ├── connector │ │ │ ├── baseConnector.ts │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ ├── interfaces.ts │ │ │ └── utils.ts │ │ ├── constants.ts │ │ ├── cookie.ts │ │ ├── core │ │ │ └── IWeb3Auth.ts │ │ ├── deserialize.ts │ │ ├── errors │ │ │ └── index.ts │ │ ├── hooks │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── interfaces.ts │ │ ├── loglevel.ts │ │ ├── plugin │ │ │ ├── IPlugin.ts │ │ │ ├── errors.ts │ │ │ └── index.ts │ │ ├── provider │ │ │ └── IProvider.ts │ │ ├── utils.ts │ │ └── wallet │ │ │ └── index.ts │ ├── connectors │ │ ├── auth-connector │ │ │ ├── authConnector.ts │ │ │ ├── index.ts │ │ │ └── interface.ts │ │ ├── base-evm-connector │ │ │ ├── baseEvmConnector.ts │ │ │ └── index.ts │ │ ├── base-solana-connector │ │ │ ├── baseSolanaConnector.ts │ │ │ └── index.ts │ │ ├── coinbase-connector │ │ │ ├── coinbaseConnector.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── injected-evm-connector │ │ │ ├── index.ts │ │ │ └── injectedEvmConnector.ts │ │ ├── injected-solana-connector │ │ │ ├── index.ts │ │ │ ├── utils.ts │ │ │ └── walletStandardConnector.ts │ │ ├── metamask-connector │ │ │ ├── index.ts │ │ │ └── metamaskConnector.ts │ │ ├── utils.ts │ │ └── wallet-connect-v2-connector │ │ │ ├── WalletConnectV2Provider.ts │ │ │ ├── config.ts │ │ │ ├── index.ts │ │ │ ├── interface.ts │ │ │ ├── utils.ts │ │ │ ├── walletConnectV2Connector.ts │ │ │ └── walletConnectV2Utils.ts │ ├── index.ts │ ├── noModal.ts │ ├── plugins │ │ ├── index.ts │ │ ├── nft-checkout-plugin │ │ │ ├── embed.ts │ │ │ ├── enums.ts │ │ │ ├── index.ts │ │ │ ├── plugin.ts │ │ │ └── utils.ts │ │ └── wallet-services-plugin │ │ │ ├── index.ts │ │ │ └── plugin.ts │ ├── providers │ │ ├── account-abstraction-provider │ │ │ ├── index.ts │ │ │ ├── providers │ │ │ │ ├── AccountAbstractionProvider.ts │ │ │ │ ├── index.ts │ │ │ │ ├── smartAccounts │ │ │ │ │ └── index.ts │ │ │ │ └── utils.ts │ │ │ └── rpc │ │ │ │ ├── ethRpcMiddlewares.ts │ │ │ │ └── index.ts │ │ ├── base-provider │ │ │ ├── CommonJRPCProvider.ts │ │ │ ├── baseProvider.ts │ │ │ ├── commonPrivateKeyProvider.ts │ │ │ ├── index.ts │ │ │ ├── interfaces.ts │ │ │ ├── jrpcClient.ts │ │ │ └── utils.ts │ │ ├── ethereum-mpc-provider │ │ │ ├── index.ts │ │ │ ├── providers │ │ │ │ ├── index.ts │ │ │ │ └── signingProviders │ │ │ │ │ ├── EthereumSigningProvider.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── signingUtils.ts │ │ │ └── rpc │ │ │ │ ├── ethRpcMiddlewares.ts │ │ │ │ └── interfaces.ts │ │ ├── ethereum-provider │ │ │ ├── index.ts │ │ │ ├── providers │ │ │ │ ├── converter.ts │ │ │ │ ├── index.ts │ │ │ │ ├── privateKeyProviders │ │ │ │ │ ├── TransactionFormatter │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ ├── formatter.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── interfaces.ts │ │ │ │ │ │ └── utils.ts │ │ │ │ │ └── index.ts │ │ │ │ └── utils.ts │ │ │ └── rpc │ │ │ │ ├── ethRpcMiddlewares.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interfaces.ts │ │ │ │ ├── jrpcClient.ts │ │ │ │ └── walletMidddleware.ts │ │ ├── index.ts │ │ ├── solana-provider │ │ │ ├── index.ts │ │ │ ├── interface.ts │ │ │ ├── providers │ │ │ │ ├── index.ts │ │ │ │ └── injectedProviders │ │ │ │ │ ├── base │ │ │ │ │ ├── baseInjectedProvider.ts │ │ │ │ │ └── providerHandlers.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── utils.ts │ │ │ │ │ └── walletStandardProvider.ts │ │ │ ├── rpc │ │ │ │ ├── JrpcClient.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interfaces.ts │ │ │ │ └── solanaRpcMiddlewares.ts │ │ │ └── solanaWallet.ts │ │ └── xrpl-provider │ │ │ ├── index.ts │ │ │ ├── providers │ │ │ ├── index.ts │ │ │ └── privateKeyProviders │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── xrplPrivateKeyProvider.ts │ │ │ │ └── xrplWalletUtils.ts │ │ │ └── rpc │ │ │ ├── JrpcClient.ts │ │ │ └── xrplRpcMiddlewares.ts │ ├── react │ │ ├── Web3AuthProvider.ts │ │ ├── context │ │ │ ├── WalletServicesInnerContext.ts │ │ │ └── Web3AuthInnerContext.ts │ │ ├── hooks │ │ │ ├── index.ts │ │ │ ├── useChain.ts │ │ │ ├── useCheckout.ts │ │ │ ├── useEnableMFA.ts │ │ │ ├── useFunding.ts │ │ │ ├── useIdentityToken.ts │ │ │ ├── useManageMFA.ts │ │ │ ├── useReceive.ts │ │ │ ├── useSwap.ts │ │ │ ├── useSwitchChain.ts │ │ │ ├── useWalletConnectScanner.ts │ │ │ ├── useWalletServicesPlugin.ts │ │ │ ├── useWalletUI.ts │ │ │ ├── useWeb3Auth.ts │ │ │ ├── useWeb3AuthConnect.ts │ │ │ ├── useWeb3AuthDisconnect.ts │ │ │ ├── useWeb3AuthInner.ts │ │ │ └── useWeb3AuthUser.ts │ │ ├── index.ts │ │ ├── interfaces.ts │ │ ├── solana │ │ │ ├── hooks │ │ │ │ ├── index.ts │ │ │ │ ├── useSignAndSendTransaction.ts │ │ │ │ ├── useSignMessage.ts │ │ │ │ ├── useSignTransaction.ts │ │ │ │ └── useSolanaWallet.ts │ │ │ └── index.ts │ │ └── wagmi │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ ├── interface.ts │ │ │ └── provider.ts │ └── vue │ │ ├── WalletServicesInnerProvider.ts │ │ ├── Web3AuthProvider.ts │ │ ├── composables │ │ ├── index.ts │ │ ├── useChain.ts │ │ ├── useCheckout.ts │ │ ├── useEnableMFA.ts │ │ ├── useFunding.ts │ │ ├── useIdentityToken.ts │ │ ├── useManageMFA.ts │ │ ├── useReceive.ts │ │ ├── useSwap.ts │ │ ├── useSwitchChain.ts │ │ ├── useWalletConnectScanner.ts │ │ ├── useWalletServicesPlugin.ts │ │ ├── useWalletUI.ts │ │ ├── useWeb3Auth.ts │ │ ├── useWeb3AuthConnect.ts │ │ ├── useWeb3AuthDisconnect.ts │ │ ├── useWeb3AuthInner.ts │ │ └── useWeb3AuthUser.ts │ │ ├── context │ │ ├── WalletServicesContext.ts │ │ └── index.ts │ │ ├── index.ts │ │ ├── interfaces.ts │ │ ├── solana │ │ ├── composables │ │ │ ├── index.ts │ │ │ ├── useSignAndSendTransaction.ts │ │ │ ├── useSignMessage.ts │ │ │ ├── useSignTransaction.ts │ │ │ └── useSolanaWallet.ts │ │ └── index.ts │ │ └── wagmi │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── interface.ts │ │ └── provider.ts │ ├── tsconfig.build.json │ ├── tsconfig.json │ └── webpack.config.js ├── scripts ├── create-final-registry.js ├── create-web3-json.js ├── download-img.js ├── wallet-registry-updated.json ├── wallet-registry-wc.json ├── wallet-registry-web3auth-new.json ├── wallet-registry-web3auth-old.json ├── wallet-registry-web3auth-prod.json └── wallet-registry-web3auth.json ├── test └── setup.mjs ├── torus.config.js ├── tsconfig.json └── webpack.config.js /.browserslistrc: -------------------------------------------------------------------------------- 1 | supports bigint 2 | not dead -------------------------------------------------------------------------------- /.github/.stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/.github/.stale.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/bug_fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/.github/PULL_REQUEST_TEMPLATE/bug_fix.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/.github/PULL_REQUEST_TEMPLATE/feature.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/.mocharc.json -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | >=18.x -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/.prettierrc.yaml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/babel.config.js -------------------------------------------------------------------------------- /demo/nextjs-ssr-app/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/nextjs-ssr-app/.eslintrc.json -------------------------------------------------------------------------------- /demo/nextjs-ssr-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/nextjs-ssr-app/.gitignore -------------------------------------------------------------------------------- /demo/nextjs-ssr-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/nextjs-ssr-app/README.md -------------------------------------------------------------------------------- /demo/nextjs-ssr-app/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/nextjs-ssr-app/app/favicon.ico -------------------------------------------------------------------------------- /demo/nextjs-ssr-app/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/nextjs-ssr-app/app/globals.css -------------------------------------------------------------------------------- /demo/nextjs-ssr-app/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/nextjs-ssr-app/app/layout.tsx -------------------------------------------------------------------------------- /demo/nextjs-ssr-app/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/nextjs-ssr-app/app/page.tsx -------------------------------------------------------------------------------- /demo/nextjs-ssr-app/components/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/nextjs-ssr-app/components/Main.tsx -------------------------------------------------------------------------------- /demo/nextjs-ssr-app/components/provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/nextjs-ssr-app/components/provider.tsx -------------------------------------------------------------------------------- /demo/nextjs-ssr-app/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/nextjs-ssr-app/next-env.d.ts -------------------------------------------------------------------------------- /demo/nextjs-ssr-app/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/nextjs-ssr-app/next.config.js -------------------------------------------------------------------------------- /demo/nextjs-ssr-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/nextjs-ssr-app/package-lock.json -------------------------------------------------------------------------------- /demo/nextjs-ssr-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/nextjs-ssr-app/package.json -------------------------------------------------------------------------------- /demo/nextjs-ssr-app/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/nextjs-ssr-app/public/next.svg -------------------------------------------------------------------------------- /demo/nextjs-ssr-app/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/nextjs-ssr-app/public/vercel.svg -------------------------------------------------------------------------------- /demo/nextjs-ssr-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/nextjs-ssr-app/tsconfig.json -------------------------------------------------------------------------------- /demo/react-app-no-modal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/react-app-no-modal/.gitignore -------------------------------------------------------------------------------- /demo/react-app-no-modal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/react-app-no-modal/README.md -------------------------------------------------------------------------------- /demo/react-app-no-modal/config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/react-app-no-modal/config-overrides.js -------------------------------------------------------------------------------- /demo/react-app-no-modal/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/react-app-no-modal/package-lock.json -------------------------------------------------------------------------------- /demo/react-app-no-modal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/react-app-no-modal/package.json -------------------------------------------------------------------------------- /demo/react-app-no-modal/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/react-app-no-modal/public/favicon.ico -------------------------------------------------------------------------------- /demo/react-app-no-modal/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/react-app-no-modal/public/index.html -------------------------------------------------------------------------------- /demo/react-app-no-modal/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/react-app-no-modal/public/logo192.png -------------------------------------------------------------------------------- /demo/react-app-no-modal/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/react-app-no-modal/public/logo512.png -------------------------------------------------------------------------------- /demo/react-app-no-modal/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/react-app-no-modal/public/manifest.json -------------------------------------------------------------------------------- /demo/react-app-no-modal/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/react-app-no-modal/public/robots.txt -------------------------------------------------------------------------------- /demo/react-app-no-modal/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/react-app-no-modal/src/App.css -------------------------------------------------------------------------------- /demo/react-app-no-modal/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/react-app-no-modal/src/App.test.tsx -------------------------------------------------------------------------------- /demo/react-app-no-modal/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/react-app-no-modal/src/App.tsx -------------------------------------------------------------------------------- /demo/react-app-no-modal/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/react-app-no-modal/src/index.css -------------------------------------------------------------------------------- /demo/react-app-no-modal/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/react-app-no-modal/src/index.tsx -------------------------------------------------------------------------------- /demo/react-app-no-modal/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/react-app-no-modal/src/logo.svg -------------------------------------------------------------------------------- /demo/react-app-no-modal/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /demo/react-app-no-modal/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/react-app-no-modal/src/reportWebVitals.ts -------------------------------------------------------------------------------- /demo/react-app-no-modal/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/react-app-no-modal/src/setupTests.ts -------------------------------------------------------------------------------- /demo/react-app-no-modal/src/web3RPC.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/react-app-no-modal/src/web3RPC.ts -------------------------------------------------------------------------------- /demo/react-app-no-modal/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/react-app-no-modal/tsconfig.json -------------------------------------------------------------------------------- /demo/vite-react-app-sfa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-sfa/README.md -------------------------------------------------------------------------------- /demo/vite-react-app-sfa/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-sfa/eslint.config.mjs -------------------------------------------------------------------------------- /demo/vite-react-app-sfa/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-sfa/index.html -------------------------------------------------------------------------------- /demo/vite-react-app-sfa/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-sfa/package-lock.json -------------------------------------------------------------------------------- /demo/vite-react-app-sfa/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-sfa/package.json -------------------------------------------------------------------------------- /demo/vite-react-app-sfa/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-sfa/public/favicon.ico -------------------------------------------------------------------------------- /demo/vite-react-app-sfa/public/images/github-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-sfa/public/images/github-logo.png -------------------------------------------------------------------------------- /demo/vite-react-app-sfa/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-sfa/public/logo192.png -------------------------------------------------------------------------------- /demo/vite-react-app-sfa/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-sfa/public/logo512.png -------------------------------------------------------------------------------- /demo/vite-react-app-sfa/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-sfa/public/manifest.json -------------------------------------------------------------------------------- /demo/vite-react-app-sfa/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-sfa/public/robots.txt -------------------------------------------------------------------------------- /demo/vite-react-app-sfa/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-sfa/src/App.css -------------------------------------------------------------------------------- /demo/vite-react-app-sfa/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-sfa/src/App.tsx -------------------------------------------------------------------------------- /demo/vite-react-app-sfa/src/components/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-sfa/src/components/Main.tsx -------------------------------------------------------------------------------- /demo/vite-react-app-sfa/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-sfa/src/config.ts -------------------------------------------------------------------------------- /demo/vite-react-app-sfa/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-sfa/src/index.css -------------------------------------------------------------------------------- /demo/vite-react-app-sfa/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-sfa/src/index.tsx -------------------------------------------------------------------------------- /demo/vite-react-app-sfa/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /demo/vite-react-app-sfa/src/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-sfa/src/styles/Home.module.css -------------------------------------------------------------------------------- /demo/vite-react-app-sfa/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-sfa/tsconfig.json -------------------------------------------------------------------------------- /demo/vite-react-app-sfa/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// -------------------------------------------------------------------------------- /demo/vite-react-app-sfa/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-sfa/vite.config.mts -------------------------------------------------------------------------------- /demo/vite-react-app-solana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-solana/README.md -------------------------------------------------------------------------------- /demo/vite-react-app-solana/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-solana/eslint.config.mjs -------------------------------------------------------------------------------- /demo/vite-react-app-solana/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-solana/index.html -------------------------------------------------------------------------------- /demo/vite-react-app-solana/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-solana/package-lock.json -------------------------------------------------------------------------------- /demo/vite-react-app-solana/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-solana/package.json -------------------------------------------------------------------------------- /demo/vite-react-app-solana/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-solana/public/favicon.ico -------------------------------------------------------------------------------- /demo/vite-react-app-solana/public/images/github-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-solana/public/images/github-logo.png -------------------------------------------------------------------------------- /demo/vite-react-app-solana/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-solana/public/logo192.png -------------------------------------------------------------------------------- /demo/vite-react-app-solana/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-solana/public/logo512.png -------------------------------------------------------------------------------- /demo/vite-react-app-solana/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-solana/public/manifest.json -------------------------------------------------------------------------------- /demo/vite-react-app-solana/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-solana/public/robots.txt -------------------------------------------------------------------------------- /demo/vite-react-app-solana/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-solana/src/App.css -------------------------------------------------------------------------------- /demo/vite-react-app-solana/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-solana/src/App.tsx -------------------------------------------------------------------------------- /demo/vite-react-app-solana/src/components/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-solana/src/components/Main.tsx -------------------------------------------------------------------------------- /demo/vite-react-app-solana/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-solana/src/index.css -------------------------------------------------------------------------------- /demo/vite-react-app-solana/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-solana/src/index.tsx -------------------------------------------------------------------------------- /demo/vite-react-app-solana/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /demo/vite-react-app-solana/src/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-solana/src/styles/Home.module.css -------------------------------------------------------------------------------- /demo/vite-react-app-solana/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-solana/tsconfig.json -------------------------------------------------------------------------------- /demo/vite-react-app-solana/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// -------------------------------------------------------------------------------- /demo/vite-react-app-solana/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vite-react-app-solana/vite.config.mts -------------------------------------------------------------------------------- /demo/vue-app-new/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/.env.sample -------------------------------------------------------------------------------- /demo/vue-app-new/.eslintrc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/.eslintrc.mjs -------------------------------------------------------------------------------- /demo/vue-app-new/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/.gitignore -------------------------------------------------------------------------------- /demo/vue-app-new/.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/.prettierrc.yaml -------------------------------------------------------------------------------- /demo/vue-app-new/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/.vscode/extensions.json -------------------------------------------------------------------------------- /demo/vue-app-new/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/README.md -------------------------------------------------------------------------------- /demo/vue-app-new/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/index.html -------------------------------------------------------------------------------- /demo/vue-app-new/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/package-lock.json -------------------------------------------------------------------------------- /demo/vue-app-new/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/package.json -------------------------------------------------------------------------------- /demo/vue-app-new/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/postcss.config.js -------------------------------------------------------------------------------- /demo/vue-app-new/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/public/favicon.ico -------------------------------------------------------------------------------- /demo/vue-app-new/public/web3auth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/public/web3auth.svg -------------------------------------------------------------------------------- /demo/vue-app-new/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/src/App.vue -------------------------------------------------------------------------------- /demo/vue-app-new/src/MainView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/src/MainView.vue -------------------------------------------------------------------------------- /demo/vue-app-new/src/components/AppDashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/src/components/AppDashboard.vue -------------------------------------------------------------------------------- /demo/vue-app-new/src/components/AppHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/src/components/AppHeader.vue -------------------------------------------------------------------------------- /demo/vue-app-new/src/components/AppSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/src/components/AppSettings.vue -------------------------------------------------------------------------------- /demo/vue-app-new/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/src/config.ts -------------------------------------------------------------------------------- /demo/vue-app-new/src/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/src/global.ts -------------------------------------------------------------------------------- /demo/vue-app-new/src/icons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/src/icons/index.ts -------------------------------------------------------------------------------- /demo/vue-app-new/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/src/main.ts -------------------------------------------------------------------------------- /demo/vue-app-new/src/plugins/iconPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/src/plugins/iconPlugin.ts -------------------------------------------------------------------------------- /demo/vue-app-new/src/services/ethHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/src/services/ethHandlers.ts -------------------------------------------------------------------------------- /demo/vue-app-new/src/services/solHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/src/services/solHandlers.ts -------------------------------------------------------------------------------- /demo/vue-app-new/src/services/walletServiceHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/src/services/walletServiceHandlers.ts -------------------------------------------------------------------------------- /demo/vue-app-new/src/store/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/src/store/form.ts -------------------------------------------------------------------------------- /demo/vue-app-new/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/src/style.css -------------------------------------------------------------------------------- /demo/vue-app-new/src/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/src/translations/en.json -------------------------------------------------------------------------------- /demo/vue-app-new/src/translations/vi.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /demo/vue-app-new/src/utils/chainconfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/src/utils/chainconfig.ts -------------------------------------------------------------------------------- /demo/vue-app-new/src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/src/utils/constants.ts -------------------------------------------------------------------------------- /demo/vue-app-new/src/utils/solana.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/src/utils/solana.ts -------------------------------------------------------------------------------- /demo/vue-app-new/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /demo/vue-app-new/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/tailwind.config.js -------------------------------------------------------------------------------- /demo/vue-app-new/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/tsconfig.json -------------------------------------------------------------------------------- /demo/vue-app-new/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/vercel.json -------------------------------------------------------------------------------- /demo/vue-app-new/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/vue-app-new/vite.config.mts -------------------------------------------------------------------------------- /demo/wagmi-react-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/wagmi-react-app/README.md -------------------------------------------------------------------------------- /demo/wagmi-react-app/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/wagmi-react-app/eslint.config.mjs -------------------------------------------------------------------------------- /demo/wagmi-react-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/wagmi-react-app/index.html -------------------------------------------------------------------------------- /demo/wagmi-react-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/wagmi-react-app/package-lock.json -------------------------------------------------------------------------------- /demo/wagmi-react-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/wagmi-react-app/package.json -------------------------------------------------------------------------------- /demo/wagmi-react-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/wagmi-react-app/public/favicon.ico -------------------------------------------------------------------------------- /demo/wagmi-react-app/public/images/github-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/wagmi-react-app/public/images/github-logo.png -------------------------------------------------------------------------------- /demo/wagmi-react-app/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/wagmi-react-app/public/logo192.png -------------------------------------------------------------------------------- /demo/wagmi-react-app/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/wagmi-react-app/public/logo512.png -------------------------------------------------------------------------------- /demo/wagmi-react-app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/wagmi-react-app/public/manifest.json -------------------------------------------------------------------------------- /demo/wagmi-react-app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/wagmi-react-app/public/robots.txt -------------------------------------------------------------------------------- /demo/wagmi-react-app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/wagmi-react-app/src/App.css -------------------------------------------------------------------------------- /demo/wagmi-react-app/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/wagmi-react-app/src/App.tsx -------------------------------------------------------------------------------- /demo/wagmi-react-app/src/components/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/wagmi-react-app/src/components/Main.tsx -------------------------------------------------------------------------------- /demo/wagmi-react-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/wagmi-react-app/src/index.css -------------------------------------------------------------------------------- /demo/wagmi-react-app/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/wagmi-react-app/src/index.tsx -------------------------------------------------------------------------------- /demo/wagmi-react-app/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /demo/wagmi-react-app/src/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/wagmi-react-app/src/styles/Home.module.css -------------------------------------------------------------------------------- /demo/wagmi-react-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/wagmi-react-app/tsconfig.json -------------------------------------------------------------------------------- /demo/wagmi-react-app/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// -------------------------------------------------------------------------------- /demo/wagmi-react-app/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/demo/wagmi-react-app/vite.config.mts -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/lerna.json -------------------------------------------------------------------------------- /locales/importLocales.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/locales/importLocales.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/package.json -------------------------------------------------------------------------------- /packages/modal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/.gitignore -------------------------------------------------------------------------------- /packages/modal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/README.md -------------------------------------------------------------------------------- /packages/modal/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/babel.config.js -------------------------------------------------------------------------------- /packages/modal/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/eslint.config.mjs -------------------------------------------------------------------------------- /packages/modal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/package.json -------------------------------------------------------------------------------- /packages/modal/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/postcss.config.js -------------------------------------------------------------------------------- /packages/modal/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/rollup.config.mjs -------------------------------------------------------------------------------- /packages/modal/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/config.ts -------------------------------------------------------------------------------- /packages/modal/src/connectors/coinbase-connector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/connectors/coinbase-connector/index.ts -------------------------------------------------------------------------------- /packages/modal/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/index.ts -------------------------------------------------------------------------------- /packages/modal/src/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/interface.ts -------------------------------------------------------------------------------- /packages/modal/src/modalManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/modalManager.ts -------------------------------------------------------------------------------- /packages/modal/src/providers/ethereum-mpc-provider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/providers/ethereum-mpc-provider/index.ts -------------------------------------------------------------------------------- /packages/modal/src/providers/xrpl-provider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/providers/xrpl-provider/index.ts -------------------------------------------------------------------------------- /packages/modal/src/react/Web3AuthProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/Web3AuthProvider.ts -------------------------------------------------------------------------------- /packages/modal/src/react/context/WalletServicesInnerContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/context/WalletServicesInnerContext.ts -------------------------------------------------------------------------------- /packages/modal/src/react/context/Web3AuthInnerContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/context/Web3AuthInnerContext.ts -------------------------------------------------------------------------------- /packages/modal/src/react/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/hooks/index.ts -------------------------------------------------------------------------------- /packages/modal/src/react/hooks/useChain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/hooks/useChain.ts -------------------------------------------------------------------------------- /packages/modal/src/react/hooks/useCheckout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/hooks/useCheckout.ts -------------------------------------------------------------------------------- /packages/modal/src/react/hooks/useEnableMFA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/hooks/useEnableMFA.ts -------------------------------------------------------------------------------- /packages/modal/src/react/hooks/useFunding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/hooks/useFunding.ts -------------------------------------------------------------------------------- /packages/modal/src/react/hooks/useIdentityToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/hooks/useIdentityToken.ts -------------------------------------------------------------------------------- /packages/modal/src/react/hooks/useManageMFA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/hooks/useManageMFA.ts -------------------------------------------------------------------------------- /packages/modal/src/react/hooks/useReceive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/hooks/useReceive.ts -------------------------------------------------------------------------------- /packages/modal/src/react/hooks/useSwap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/hooks/useSwap.ts -------------------------------------------------------------------------------- /packages/modal/src/react/hooks/useSwitchChain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/hooks/useSwitchChain.ts -------------------------------------------------------------------------------- /packages/modal/src/react/hooks/useWalletConnectScanner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/hooks/useWalletConnectScanner.ts -------------------------------------------------------------------------------- /packages/modal/src/react/hooks/useWalletServicesPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/hooks/useWalletServicesPlugin.ts -------------------------------------------------------------------------------- /packages/modal/src/react/hooks/useWalletUI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/hooks/useWalletUI.ts -------------------------------------------------------------------------------- /packages/modal/src/react/hooks/useWeb3Auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/hooks/useWeb3Auth.ts -------------------------------------------------------------------------------- /packages/modal/src/react/hooks/useWeb3AuthConnect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/hooks/useWeb3AuthConnect.ts -------------------------------------------------------------------------------- /packages/modal/src/react/hooks/useWeb3AuthDisconnect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/hooks/useWeb3AuthDisconnect.ts -------------------------------------------------------------------------------- /packages/modal/src/react/hooks/useWeb3AuthInner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/hooks/useWeb3AuthInner.ts -------------------------------------------------------------------------------- /packages/modal/src/react/hooks/useWeb3AuthUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/hooks/useWeb3AuthUser.ts -------------------------------------------------------------------------------- /packages/modal/src/react/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/index.ts -------------------------------------------------------------------------------- /packages/modal/src/react/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/interfaces.ts -------------------------------------------------------------------------------- /packages/modal/src/react/solana/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/solana/hooks/index.ts -------------------------------------------------------------------------------- /packages/modal/src/react/solana/hooks/useSignAndSendTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/solana/hooks/useSignAndSendTransaction.ts -------------------------------------------------------------------------------- /packages/modal/src/react/solana/hooks/useSignMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/solana/hooks/useSignMessage.ts -------------------------------------------------------------------------------- /packages/modal/src/react/solana/hooks/useSignTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/solana/hooks/useSignTransaction.ts -------------------------------------------------------------------------------- /packages/modal/src/react/solana/hooks/useSolanaWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/solana/hooks/useSolanaWallet.ts -------------------------------------------------------------------------------- /packages/modal/src/react/solana/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./hooks"; 2 | -------------------------------------------------------------------------------- /packages/modal/src/react/wagmi/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/wagmi/constants.ts -------------------------------------------------------------------------------- /packages/modal/src/react/wagmi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/wagmi/index.ts -------------------------------------------------------------------------------- /packages/modal/src/react/wagmi/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/wagmi/interface.ts -------------------------------------------------------------------------------- /packages/modal/src/react/wagmi/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/react/wagmi/provider.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/.eslintrc.json -------------------------------------------------------------------------------- /packages/modal/src/ui/components/BottomSheet/BottomSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/BottomSheet/BottomSheet.tsx -------------------------------------------------------------------------------- /packages/modal/src/ui/components/BottomSheet/BottomSheet.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/BottomSheet/BottomSheet.type.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/BottomSheet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/BottomSheet/index.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Button/Button.tsx -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Button/Button.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Button/Button.type.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Button/ButtonSocial/ButtonSocial.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Button/ButtonSocial/ButtonSocial.tsx -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Button/ButtonSocial/ButtonSocial.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Button/ButtonSocial/ButtonSocial.type.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Button/ButtonSocial/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Button/ButtonSocial/index.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Button/ButtonWallet/ButtonWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Button/ButtonWallet/ButtonWallet.tsx -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Button/ButtonWallet/ButtonWallet.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Button/ButtonWallet/ButtonWallet.type.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Button/ButtonWallet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Button/ButtonWallet/index.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Button/index.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/ConnectWallet/ConnectWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/ConnectWallet/ConnectWallet.tsx -------------------------------------------------------------------------------- /packages/modal/src/ui/components/ConnectWallet/ConnectWallet.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/ConnectWallet/ConnectWallet.type.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/ConnectWallet/ConnectWalletChainFilter/ConnectWalletChainFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/ConnectWallet/ConnectWalletChainFilter/ConnectWalletChainFilter.tsx -------------------------------------------------------------------------------- /packages/modal/src/ui/components/ConnectWallet/ConnectWalletChainFilter/ConnectWalletChainFilter.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/ConnectWallet/ConnectWalletChainFilter/ConnectWalletChainFilter.type.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/ConnectWallet/ConnectWalletChainFilter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/ConnectWallet/ConnectWalletChainFilter/index.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/ConnectWallet/ConnectWalletChainNamespaceSelect/ConnectWalletChainNamespaceSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/ConnectWallet/ConnectWalletChainNamespaceSelect/ConnectWalletChainNamespaceSelect.tsx -------------------------------------------------------------------------------- /packages/modal/src/ui/components/ConnectWallet/ConnectWalletChainNamespaceSelect/ConnectWalletChainNamespaceSelect.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/ConnectWallet/ConnectWalletChainNamespaceSelect/ConnectWalletChainNamespaceSelect.type.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/ConnectWallet/ConnectWalletChainNamespaceSelect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/ConnectWallet/ConnectWalletChainNamespaceSelect/index.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/ConnectWallet/ConnectWalletHeader/ConnectWalletHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/ConnectWallet/ConnectWalletHeader/ConnectWalletHeader.tsx -------------------------------------------------------------------------------- /packages/modal/src/ui/components/ConnectWallet/ConnectWalletHeader/ConnectWalletHeader.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/ConnectWallet/ConnectWalletHeader/ConnectWalletHeader.type.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/ConnectWallet/ConnectWalletHeader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/ConnectWallet/ConnectWalletHeader/index.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/ConnectWallet/ConnectWalletList/ConnectWalletList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/ConnectWallet/ConnectWalletList/ConnectWalletList.tsx -------------------------------------------------------------------------------- /packages/modal/src/ui/components/ConnectWallet/ConnectWalletList/ConnectWalletList.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/ConnectWallet/ConnectWalletList/ConnectWalletList.type.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/ConnectWallet/ConnectWalletList/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/ConnectWallet/ConnectWalletList/index.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/ConnectWallet/ConnectWalletQrCode/ConnectWalletQrCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/ConnectWallet/ConnectWalletQrCode/ConnectWalletQrCode.tsx -------------------------------------------------------------------------------- /packages/modal/src/ui/components/ConnectWallet/ConnectWalletQrCode/ConnectWalletQrCode.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/ConnectWallet/ConnectWalletQrCode/ConnectWalletQrCode.type.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/ConnectWallet/ConnectWalletQrCode/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/ConnectWallet/ConnectWalletQrCode/index.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/ConnectWallet/ConnectWalletSearch/ConnectWalletSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/ConnectWallet/ConnectWalletSearch/ConnectWalletSearch.tsx -------------------------------------------------------------------------------- /packages/modal/src/ui/components/ConnectWallet/ConnectWalletSearch/ConnectWalletSearch.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/ConnectWallet/ConnectWalletSearch/ConnectWalletSearch.type.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/ConnectWallet/ConnectWalletSearch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/ConnectWallet/ConnectWalletSearch/index.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/ConnectWallet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/ConnectWallet/index.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Embed/Embed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Embed/Embed.tsx -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Embed/Embed.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Embed/Embed.type.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Embed/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Embed/index.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Footer/Footer.tsx -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Footer/Footer.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Footer/Footer.type.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Footer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Footer/index.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Image/Image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Image/Image.tsx -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Image/Image.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Image/Image.type.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Image/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Image/index.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Loader/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Loader/Loader.tsx -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Loader/Loader.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Loader/Loader.type.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Loader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Loader/index.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Login/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Login/Login.tsx -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Login/Login.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Login/Login.type.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Login/LoginOtp/LoginOtp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Login/LoginOtp/LoginOtp.tsx -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Login/LoginOtp/LoginOtp.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Login/LoginOtp/LoginOtp.type.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Login/LoginOtp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Login/LoginOtp/index.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Login/LoginPasswordLess/LoginPasswordLess.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Login/LoginPasswordLess/LoginPasswordLess.tsx -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Login/LoginPasswordLess/LoginPasswordLess.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Login/LoginPasswordLess/LoginPasswordLess.type.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Login/LoginPasswordLess/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Login/LoginPasswordLess/index.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Login/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Login/index.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/LoginHint/LoginHint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/LoginHint/LoginHint.tsx -------------------------------------------------------------------------------- /packages/modal/src/ui/components/LoginHint/LoginHint.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/LoginHint/LoginHint.type.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/LoginHint/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/LoginHint/index.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Modal/Modal.tsx -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Modal/Modal.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Modal/Modal.type.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Modal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Modal/index.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Otp/Otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Otp/Otp.tsx -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Otp/Otp.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Otp/Otp.type.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Otp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Otp/index.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/PulseLoader/PulseLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/PulseLoader/PulseLoader.tsx -------------------------------------------------------------------------------- /packages/modal/src/ui/components/PulseLoader/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./PulseLoader"; 2 | -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Root/Root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Root/Root.tsx -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Root/Root.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Root/Root.type.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Root/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Root/index.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/SocialLoginList/SocialLoginList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/SocialLoginList/SocialLoginList.tsx -------------------------------------------------------------------------------- /packages/modal/src/ui/components/SocialLoginList/SocialLoginList.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/SocialLoginList/SocialLoginList.type.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/SocialLoginList/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/SocialLoginList/index.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Toast/Toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Toast/Toast.tsx -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Toast/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./Toast"; 2 | -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Widget/Widget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Widget/Widget.tsx -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Widget/Widget.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/components/Widget/Widget.type.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/components/Widget/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./Widget"; 2 | -------------------------------------------------------------------------------- /packages/modal/src/ui/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/config.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/constants.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/context/AnalyticsContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/context/AnalyticsContext.tsx -------------------------------------------------------------------------------- /packages/modal/src/ui/context/RootContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/context/RootContext.tsx -------------------------------------------------------------------------------- /packages/modal/src/ui/context/ThemeContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/context/ThemeContext.tsx -------------------------------------------------------------------------------- /packages/modal/src/ui/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/css/index.css -------------------------------------------------------------------------------- /packages/modal/src/ui/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/global.d.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/handlers/AbstractHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/handlers/AbstractHandler.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/handlers/EmailPasswordlessHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/handlers/EmailPasswordlessHandler.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/handlers/SmsPasswordlessHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/handlers/SmsPasswordlessHandler.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/handlers/factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/handlers/factory.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/helper/countryData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/helper/countryData.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/helper/testAccounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/helper/testAccounts.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/i18n/dutch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/i18n/dutch.json -------------------------------------------------------------------------------- /packages/modal/src/ui/i18n/english.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/i18n/english.json -------------------------------------------------------------------------------- /packages/modal/src/ui/i18n/french.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/i18n/french.json -------------------------------------------------------------------------------- /packages/modal/src/ui/i18n/german.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/i18n/german.json -------------------------------------------------------------------------------- /packages/modal/src/ui/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/i18n/index.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/i18n/japanese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/i18n/japanese.json -------------------------------------------------------------------------------- /packages/modal/src/ui/i18n/korean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/i18n/korean.json -------------------------------------------------------------------------------- /packages/modal/src/ui/i18n/mandarin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/i18n/mandarin.json -------------------------------------------------------------------------------- /packages/modal/src/ui/i18n/portuguese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/i18n/portuguese.json -------------------------------------------------------------------------------- /packages/modal/src/ui/i18n/spanish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/i18n/spanish.json -------------------------------------------------------------------------------- /packages/modal/src/ui/i18n/turkish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/i18n/turkish.json -------------------------------------------------------------------------------- /packages/modal/src/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/index.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/interfaces.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/localeImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/localeImport.ts -------------------------------------------------------------------------------- /packages/modal/src/ui/loginModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/loginModal.tsx -------------------------------------------------------------------------------- /packages/modal/src/ui/modal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/modal/index.html -------------------------------------------------------------------------------- /packages/modal/src/ui/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/public/index.html -------------------------------------------------------------------------------- /packages/modal/src/ui/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/ui/utils.ts -------------------------------------------------------------------------------- /packages/modal/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/utils.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/WalletServicesInnerProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/WalletServicesInnerProvider.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/Web3AuthProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/Web3AuthProvider.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/composables/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/composables/index.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/composables/useChain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/composables/useChain.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/composables/useCheckout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/composables/useCheckout.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/composables/useEnableMFA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/composables/useEnableMFA.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/composables/useFunding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/composables/useFunding.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/composables/useIdentityToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/composables/useIdentityToken.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/composables/useManageMFA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/composables/useManageMFA.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/composables/useReceive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/composables/useReceive.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/composables/useSwap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/composables/useSwap.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/composables/useSwitchChain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/composables/useSwitchChain.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/composables/useWalletConnectScanner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/composables/useWalletConnectScanner.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/composables/useWalletServicesPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/composables/useWalletServicesPlugin.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/composables/useWalletUI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/composables/useWalletUI.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/composables/useWeb3Auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/composables/useWeb3Auth.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/composables/useWeb3AuthConnect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/composables/useWeb3AuthConnect.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/composables/useWeb3AuthDisconnect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/composables/useWeb3AuthDisconnect.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/composables/useWeb3AuthInner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/composables/useWeb3AuthInner.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/composables/useWeb3AuthUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/composables/useWeb3AuthUser.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/index.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/interfaces.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/solana/composables/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/solana/composables/index.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/solana/composables/useSignAndSendTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/solana/composables/useSignAndSendTransaction.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/solana/composables/useSignMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/solana/composables/useSignMessage.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/solana/composables/useSignTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/solana/composables/useSignTransaction.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/solana/composables/useSolanaWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/solana/composables/useSolanaWallet.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/solana/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./composables"; 2 | -------------------------------------------------------------------------------- /packages/modal/src/vue/wagmi/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/wagmi/constants.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/wagmi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/wagmi/index.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/wagmi/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/wagmi/interface.ts -------------------------------------------------------------------------------- /packages/modal/src/vue/wagmi/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/src/vue/wagmi/provider.ts -------------------------------------------------------------------------------- /packages/modal/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/tailwind.config.js -------------------------------------------------------------------------------- /packages/modal/torus.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | esm: false, 3 | }; 4 | -------------------------------------------------------------------------------- /packages/modal/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/tsconfig.build.json -------------------------------------------------------------------------------- /packages/modal/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/tsconfig.json -------------------------------------------------------------------------------- /packages/modal/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/modal/webpack.config.js -------------------------------------------------------------------------------- /packages/no-modal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/.gitignore -------------------------------------------------------------------------------- /packages/no-modal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/package.json -------------------------------------------------------------------------------- /packages/no-modal/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/rollup.config.mjs -------------------------------------------------------------------------------- /packages/no-modal/src/base/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/base/analytics.ts -------------------------------------------------------------------------------- /packages/no-modal/src/base/chain/IChainInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/base/chain/IChainInterface.ts -------------------------------------------------------------------------------- /packages/no-modal/src/base/composables/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/base/composables/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/base/connector/baseConnector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/base/connector/baseConnector.ts -------------------------------------------------------------------------------- /packages/no-modal/src/base/connector/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/base/connector/constants.ts -------------------------------------------------------------------------------- /packages/no-modal/src/base/connector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/base/connector/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/base/connector/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/base/connector/interfaces.ts -------------------------------------------------------------------------------- /packages/no-modal/src/base/connector/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/base/connector/utils.ts -------------------------------------------------------------------------------- /packages/no-modal/src/base/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/base/constants.ts -------------------------------------------------------------------------------- /packages/no-modal/src/base/cookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/base/cookie.ts -------------------------------------------------------------------------------- /packages/no-modal/src/base/core/IWeb3Auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/base/core/IWeb3Auth.ts -------------------------------------------------------------------------------- /packages/no-modal/src/base/deserialize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/base/deserialize.ts -------------------------------------------------------------------------------- /packages/no-modal/src/base/errors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/base/errors/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/base/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/base/hooks/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/base/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/base/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/base/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/base/interfaces.ts -------------------------------------------------------------------------------- /packages/no-modal/src/base/loglevel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/base/loglevel.ts -------------------------------------------------------------------------------- /packages/no-modal/src/base/plugin/IPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/base/plugin/IPlugin.ts -------------------------------------------------------------------------------- /packages/no-modal/src/base/plugin/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/base/plugin/errors.ts -------------------------------------------------------------------------------- /packages/no-modal/src/base/plugin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/base/plugin/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/base/provider/IProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/base/provider/IProvider.ts -------------------------------------------------------------------------------- /packages/no-modal/src/base/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/base/utils.ts -------------------------------------------------------------------------------- /packages/no-modal/src/base/wallet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/base/wallet/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/connectors/auth-connector/authConnector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/connectors/auth-connector/authConnector.ts -------------------------------------------------------------------------------- /packages/no-modal/src/connectors/auth-connector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/connectors/auth-connector/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/connectors/auth-connector/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/connectors/auth-connector/interface.ts -------------------------------------------------------------------------------- /packages/no-modal/src/connectors/base-evm-connector/baseEvmConnector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/connectors/base-evm-connector/baseEvmConnector.ts -------------------------------------------------------------------------------- /packages/no-modal/src/connectors/base-evm-connector/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./baseEvmConnector"; 2 | -------------------------------------------------------------------------------- /packages/no-modal/src/connectors/base-solana-connector/baseSolanaConnector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/connectors/base-solana-connector/baseSolanaConnector.ts -------------------------------------------------------------------------------- /packages/no-modal/src/connectors/base-solana-connector/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./baseSolanaConnector"; 2 | -------------------------------------------------------------------------------- /packages/no-modal/src/connectors/coinbase-connector/coinbaseConnector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/connectors/coinbase-connector/coinbaseConnector.ts -------------------------------------------------------------------------------- /packages/no-modal/src/connectors/coinbase-connector/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./coinbaseConnector"; 2 | -------------------------------------------------------------------------------- /packages/no-modal/src/connectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/connectors/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/connectors/injected-evm-connector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/connectors/injected-evm-connector/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/connectors/injected-evm-connector/injectedEvmConnector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/connectors/injected-evm-connector/injectedEvmConnector.ts -------------------------------------------------------------------------------- /packages/no-modal/src/connectors/injected-solana-connector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/connectors/injected-solana-connector/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/connectors/injected-solana-connector/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/connectors/injected-solana-connector/utils.ts -------------------------------------------------------------------------------- /packages/no-modal/src/connectors/injected-solana-connector/walletStandardConnector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/connectors/injected-solana-connector/walletStandardConnector.ts -------------------------------------------------------------------------------- /packages/no-modal/src/connectors/metamask-connector/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./metamaskConnector"; 2 | -------------------------------------------------------------------------------- /packages/no-modal/src/connectors/metamask-connector/metamaskConnector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/connectors/metamask-connector/metamaskConnector.ts -------------------------------------------------------------------------------- /packages/no-modal/src/connectors/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/connectors/utils.ts -------------------------------------------------------------------------------- /packages/no-modal/src/connectors/wallet-connect-v2-connector/WalletConnectV2Provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/connectors/wallet-connect-v2-connector/WalletConnectV2Provider.ts -------------------------------------------------------------------------------- /packages/no-modal/src/connectors/wallet-connect-v2-connector/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/connectors/wallet-connect-v2-connector/config.ts -------------------------------------------------------------------------------- /packages/no-modal/src/connectors/wallet-connect-v2-connector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/connectors/wallet-connect-v2-connector/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/connectors/wallet-connect-v2-connector/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/connectors/wallet-connect-v2-connector/interface.ts -------------------------------------------------------------------------------- /packages/no-modal/src/connectors/wallet-connect-v2-connector/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/connectors/wallet-connect-v2-connector/utils.ts -------------------------------------------------------------------------------- /packages/no-modal/src/connectors/wallet-connect-v2-connector/walletConnectV2Connector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/connectors/wallet-connect-v2-connector/walletConnectV2Connector.ts -------------------------------------------------------------------------------- /packages/no-modal/src/connectors/wallet-connect-v2-connector/walletConnectV2Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/connectors/wallet-connect-v2-connector/walletConnectV2Utils.ts -------------------------------------------------------------------------------- /packages/no-modal/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/noModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/noModal.ts -------------------------------------------------------------------------------- /packages/no-modal/src/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/plugins/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/plugins/nft-checkout-plugin/embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/plugins/nft-checkout-plugin/embed.ts -------------------------------------------------------------------------------- /packages/no-modal/src/plugins/nft-checkout-plugin/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/plugins/nft-checkout-plugin/enums.ts -------------------------------------------------------------------------------- /packages/no-modal/src/plugins/nft-checkout-plugin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/plugins/nft-checkout-plugin/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/plugins/nft-checkout-plugin/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/plugins/nft-checkout-plugin/plugin.ts -------------------------------------------------------------------------------- /packages/no-modal/src/plugins/nft-checkout-plugin/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/plugins/nft-checkout-plugin/utils.ts -------------------------------------------------------------------------------- /packages/no-modal/src/plugins/wallet-services-plugin/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./plugin"; 2 | -------------------------------------------------------------------------------- /packages/no-modal/src/plugins/wallet-services-plugin/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/plugins/wallet-services-plugin/plugin.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/account-abstraction-provider/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./providers"; 2 | -------------------------------------------------------------------------------- /packages/no-modal/src/providers/account-abstraction-provider/providers/AccountAbstractionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/account-abstraction-provider/providers/AccountAbstractionProvider.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/account-abstraction-provider/providers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/account-abstraction-provider/providers/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/account-abstraction-provider/providers/smartAccounts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/account-abstraction-provider/providers/smartAccounts/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/account-abstraction-provider/providers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/account-abstraction-provider/providers/utils.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/account-abstraction-provider/rpc/ethRpcMiddlewares.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/account-abstraction-provider/rpc/ethRpcMiddlewares.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/account-abstraction-provider/rpc/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ethRpcMiddlewares"; 2 | -------------------------------------------------------------------------------- /packages/no-modal/src/providers/base-provider/CommonJRPCProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/base-provider/CommonJRPCProvider.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/base-provider/baseProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/base-provider/baseProvider.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/base-provider/commonPrivateKeyProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/base-provider/commonPrivateKeyProvider.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/base-provider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/base-provider/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/base-provider/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/base-provider/interfaces.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/base-provider/jrpcClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/base-provider/jrpcClient.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/base-provider/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/base-provider/utils.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/ethereum-mpc-provider/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./providers"; 2 | -------------------------------------------------------------------------------- /packages/no-modal/src/providers/ethereum-mpc-provider/providers/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./signingProviders"; 2 | -------------------------------------------------------------------------------- /packages/no-modal/src/providers/ethereum-mpc-provider/providers/signingProviders/EthereumSigningProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/ethereum-mpc-provider/providers/signingProviders/EthereumSigningProvider.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/ethereum-mpc-provider/providers/signingProviders/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./EthereumSigningProvider"; 2 | -------------------------------------------------------------------------------- /packages/no-modal/src/providers/ethereum-mpc-provider/providers/signingProviders/signingUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/ethereum-mpc-provider/providers/signingProviders/signingUtils.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/ethereum-mpc-provider/rpc/ethRpcMiddlewares.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/ethereum-mpc-provider/rpc/ethRpcMiddlewares.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/ethereum-mpc-provider/rpc/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/ethereum-mpc-provider/rpc/interfaces.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/ethereum-provider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/ethereum-provider/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/ethereum-provider/providers/converter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/ethereum-provider/providers/converter.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/ethereum-provider/providers/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./privateKeyProviders"; 2 | -------------------------------------------------------------------------------- /packages/no-modal/src/providers/ethereum-provider/providers/privateKeyProviders/TransactionFormatter/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/ethereum-provider/providers/privateKeyProviders/TransactionFormatter/constants.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/ethereum-provider/providers/privateKeyProviders/TransactionFormatter/formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/ethereum-provider/providers/privateKeyProviders/TransactionFormatter/formatter.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/ethereum-provider/providers/privateKeyProviders/TransactionFormatter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/ethereum-provider/providers/privateKeyProviders/TransactionFormatter/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/ethereum-provider/providers/privateKeyProviders/TransactionFormatter/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/ethereum-provider/providers/privateKeyProviders/TransactionFormatter/interfaces.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/ethereum-provider/providers/privateKeyProviders/TransactionFormatter/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/ethereum-provider/providers/privateKeyProviders/TransactionFormatter/utils.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/ethereum-provider/providers/privateKeyProviders/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./TransactionFormatter"; 2 | -------------------------------------------------------------------------------- /packages/no-modal/src/providers/ethereum-provider/providers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/ethereum-provider/providers/utils.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/ethereum-provider/rpc/ethRpcMiddlewares.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/ethereum-provider/rpc/ethRpcMiddlewares.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/ethereum-provider/rpc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/ethereum-provider/rpc/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/ethereum-provider/rpc/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/ethereum-provider/rpc/interfaces.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/ethereum-provider/rpc/jrpcClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/ethereum-provider/rpc/jrpcClient.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/ethereum-provider/rpc/walletMidddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/ethereum-provider/rpc/walletMidddleware.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/solana-provider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/solana-provider/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/solana-provider/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/solana-provider/interface.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/solana-provider/providers/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./injectedProviders"; 2 | -------------------------------------------------------------------------------- /packages/no-modal/src/providers/solana-provider/providers/injectedProviders/base/baseInjectedProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/solana-provider/providers/injectedProviders/base/baseInjectedProvider.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/solana-provider/providers/injectedProviders/base/providerHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/solana-provider/providers/injectedProviders/base/providerHandlers.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/solana-provider/providers/injectedProviders/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/solana-provider/providers/injectedProviders/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/solana-provider/providers/injectedProviders/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/solana-provider/providers/injectedProviders/utils.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/solana-provider/providers/injectedProviders/walletStandardProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/solana-provider/providers/injectedProviders/walletStandardProvider.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/solana-provider/rpc/JrpcClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/solana-provider/rpc/JrpcClient.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/solana-provider/rpc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/solana-provider/rpc/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/solana-provider/rpc/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/solana-provider/rpc/interfaces.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/solana-provider/rpc/solanaRpcMiddlewares.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/solana-provider/rpc/solanaRpcMiddlewares.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/solana-provider/solanaWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/solana-provider/solanaWallet.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/xrpl-provider/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./providers"; 2 | -------------------------------------------------------------------------------- /packages/no-modal/src/providers/xrpl-provider/providers/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./privateKeyProviders"; 2 | -------------------------------------------------------------------------------- /packages/no-modal/src/providers/xrpl-provider/providers/privateKeyProviders/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/xrpl-provider/providers/privateKeyProviders/constants.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/xrpl-provider/providers/privateKeyProviders/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/xrpl-provider/providers/privateKeyProviders/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/xrpl-provider/providers/privateKeyProviders/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/xrpl-provider/providers/privateKeyProviders/interface.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/xrpl-provider/providers/privateKeyProviders/xrplPrivateKeyProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/xrpl-provider/providers/privateKeyProviders/xrplPrivateKeyProvider.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/xrpl-provider/providers/privateKeyProviders/xrplWalletUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/xrpl-provider/providers/privateKeyProviders/xrplWalletUtils.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/xrpl-provider/rpc/JrpcClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/xrpl-provider/rpc/JrpcClient.ts -------------------------------------------------------------------------------- /packages/no-modal/src/providers/xrpl-provider/rpc/xrplRpcMiddlewares.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/providers/xrpl-provider/rpc/xrplRpcMiddlewares.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/Web3AuthProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/Web3AuthProvider.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/context/WalletServicesInnerContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/context/WalletServicesInnerContext.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/context/Web3AuthInnerContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/context/Web3AuthInnerContext.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/hooks/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/hooks/useChain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/hooks/useChain.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/hooks/useCheckout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/hooks/useCheckout.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/hooks/useEnableMFA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/hooks/useEnableMFA.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/hooks/useFunding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/hooks/useFunding.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/hooks/useIdentityToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/hooks/useIdentityToken.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/hooks/useManageMFA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/hooks/useManageMFA.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/hooks/useReceive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/hooks/useReceive.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/hooks/useSwap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/hooks/useSwap.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/hooks/useSwitchChain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/hooks/useSwitchChain.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/hooks/useWalletConnectScanner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/hooks/useWalletConnectScanner.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/hooks/useWalletServicesPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/hooks/useWalletServicesPlugin.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/hooks/useWalletUI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/hooks/useWalletUI.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/hooks/useWeb3Auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/hooks/useWeb3Auth.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/hooks/useWeb3AuthConnect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/hooks/useWeb3AuthConnect.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/hooks/useWeb3AuthDisconnect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/hooks/useWeb3AuthDisconnect.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/hooks/useWeb3AuthInner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/hooks/useWeb3AuthInner.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/hooks/useWeb3AuthUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/hooks/useWeb3AuthUser.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/interfaces.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/solana/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/solana/hooks/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/solana/hooks/useSignAndSendTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/solana/hooks/useSignAndSendTransaction.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/solana/hooks/useSignMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/solana/hooks/useSignMessage.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/solana/hooks/useSignTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/solana/hooks/useSignTransaction.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/solana/hooks/useSolanaWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/solana/hooks/useSolanaWallet.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/solana/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./hooks"; 2 | -------------------------------------------------------------------------------- /packages/no-modal/src/react/wagmi/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/wagmi/constants.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/wagmi/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./provider"; 2 | -------------------------------------------------------------------------------- /packages/no-modal/src/react/wagmi/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/wagmi/interface.ts -------------------------------------------------------------------------------- /packages/no-modal/src/react/wagmi/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/react/wagmi/provider.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/WalletServicesInnerProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/WalletServicesInnerProvider.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/Web3AuthProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/Web3AuthProvider.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/composables/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/composables/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/composables/useChain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/composables/useChain.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/composables/useCheckout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/composables/useCheckout.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/composables/useEnableMFA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/composables/useEnableMFA.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/composables/useFunding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/composables/useFunding.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/composables/useIdentityToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/composables/useIdentityToken.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/composables/useManageMFA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/composables/useManageMFA.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/composables/useReceive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/composables/useReceive.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/composables/useSwap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/composables/useSwap.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/composables/useSwitchChain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/composables/useSwitchChain.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/composables/useWalletConnectScanner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/composables/useWalletConnectScanner.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/composables/useWalletServicesPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/composables/useWalletServicesPlugin.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/composables/useWalletUI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/composables/useWalletUI.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/composables/useWeb3Auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/composables/useWeb3Auth.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/composables/useWeb3AuthConnect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/composables/useWeb3AuthConnect.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/composables/useWeb3AuthDisconnect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/composables/useWeb3AuthDisconnect.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/composables/useWeb3AuthInner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/composables/useWeb3AuthInner.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/composables/useWeb3AuthUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/composables/useWeb3AuthUser.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/context/WalletServicesContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/context/WalletServicesContext.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/context/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./WalletServicesContext"; 2 | -------------------------------------------------------------------------------- /packages/no-modal/src/vue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/interfaces.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/solana/composables/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/solana/composables/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/solana/composables/useSignAndSendTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/solana/composables/useSignAndSendTransaction.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/solana/composables/useSignMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/solana/composables/useSignMessage.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/solana/composables/useSignTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/solana/composables/useSignTransaction.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/solana/composables/useSolanaWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/solana/composables/useSolanaWallet.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/solana/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./composables"; 2 | -------------------------------------------------------------------------------- /packages/no-modal/src/vue/wagmi/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/wagmi/constants.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/wagmi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/wagmi/index.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/wagmi/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/wagmi/interface.ts -------------------------------------------------------------------------------- /packages/no-modal/src/vue/wagmi/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/src/vue/wagmi/provider.ts -------------------------------------------------------------------------------- /packages/no-modal/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/tsconfig.build.json -------------------------------------------------------------------------------- /packages/no-modal/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/tsconfig.json -------------------------------------------------------------------------------- /packages/no-modal/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/packages/no-modal/webpack.config.js -------------------------------------------------------------------------------- /scripts/create-final-registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/scripts/create-final-registry.js -------------------------------------------------------------------------------- /scripts/create-web3-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/scripts/create-web3-json.js -------------------------------------------------------------------------------- /scripts/download-img.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/scripts/download-img.js -------------------------------------------------------------------------------- /scripts/wallet-registry-updated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/scripts/wallet-registry-updated.json -------------------------------------------------------------------------------- /scripts/wallet-registry-wc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/scripts/wallet-registry-wc.json -------------------------------------------------------------------------------- /scripts/wallet-registry-web3auth-new.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/scripts/wallet-registry-web3auth-new.json -------------------------------------------------------------------------------- /scripts/wallet-registry-web3auth-old.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/scripts/wallet-registry-web3auth-old.json -------------------------------------------------------------------------------- /scripts/wallet-registry-web3auth-prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/scripts/wallet-registry-web3auth-prod.json -------------------------------------------------------------------------------- /scripts/wallet-registry-web3auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/scripts/wallet-registry-web3auth.json -------------------------------------------------------------------------------- /test/setup.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/test/setup.mjs -------------------------------------------------------------------------------- /torus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/torus.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web3Auth/web3auth-web/HEAD/webpack.config.js --------------------------------------------------------------------------------