MPC Wallets
Thirdweb provides a wallet solution that can accommodate different needs. Their connect wallet UI allows connecting with the common industry wallets (ex: Metamask, Coinbase, WalletConnect) as well as creating an MPC wallet with social logins.
Implementation Example
-
Package Install
Terminal window npm install @thirdweb-dev/reactTerminal window yarn add @thirdweb-dev/react -
Integration
import {ThirdwebProvider,ConnectWallet,metamaskWallet,coinbaseWallet,localWallet,embeddedWallet,} from "@thirdweb-dev/react";export default function App() {return (<ThirdwebProvideractiveChain="nebula"clientId="YOUR_CLIENT_ID"locale={en()}supportedWallets={[metamaskWallet(),coinbaseWallet({ recommended: true }),localWallet(),embeddedWallet({auth: {options: ["facebook", "google"],},}),]}><ConnectWallettheme={"dark"}switchToActiveChain={true}modalSize={"compact"}/></ThirdwebProvider>);}
Additional Thirdweb Documentation
Click here for the official documentation.
Pluggable wallet infrastructure for Web3 wallets and applications. It streamlines the onboarding of both mainstream and crypto native users in under a minute by providing experiences that they're most comfortable with. Web3Auth's MPC-based wallet management infrastructure provides secure, non-custodial wallet management, where users maintain control of their cryptographic key pair. The login service only accesses a single share, preventing the provider from retrieving the user's wallet independently.
Implementation Example
-
Package Install
Terminal window npm install --save @web3auth/modal -
Client ID
Get your client ID under https://dashboard.web3auth.io/
-
Integration
import { Web3Auth } from "@web3auth/modal";import Web3 from "web3";const web3auth = new Web3Auth({clientId: "BPi5PB_UiIZ-cPz1GtV5i1I2iOSOHuimiXBI0e-Oe_u6X3oVAbCiAZOTEBtTXw4tsluTITPqA8zMsfxIKMjiqNQ", // get it from Web3Auth Dashboardweb3AuthNetwork: "sapphire_mainnet",chainConfig: {chainNamespace: "eip155",chainId: "0x50877ed6",rpcTarget: "you_skale_chain_rpc",// Avoid using public rpcTarget in production.// Use services like Infura, Quicknode etcdisplayName: "skale chain name",blockExplorer: "your_skale_chain_explorer",ticker: "sFUEL",tickerName: "sFUEL",},});await web3auth.initModal();const web3authProvider = await web3auth.connect();const web3 = new Web3(web3authProvider);
Additional Web3Auth Documentation
Click here for the official documentation.
Moon simplifies onboarding to Web3 apps by allowing users to authenticate with their existing social accounts (Google, Twitter, Instagram, etc.), making it accessible to those new to blockchain technology. Experienced users have the option to use their existing EVM wallets for authentication. Additionally, mobile users can benefit from Passkey, a highly secure, hardware-based authentication method.
Additional Moon Documentation
Click here for the official documentation.