Wallet Aggregators
RainbowKit is a React library that makes it easy to add wallet connection. In addition to managing wallet connections and disconnections, RainbowKit supports a wide range of wallets, allows swapping connection chains, and offers many other features.
Implementation Example
-
Package Install
Terminal window npm init @rainbow-me/rainbowkit@latestTerminal window yarn add @rainbow-me/rainbowkit -
Integration
import {RainbowKitProvider,getDefaultConfig,getDefaultWallets,} from '@rainbow-me/rainbowkit';import { QueryClient, QueryClientProvider } from "@tanstack/react-query";import { createConfig, WagmiConfig } from 'wagmi';import { publicProvider } from 'wagmi/providers/public';import {skaleCalypsoTestnet,skaleEuropaTestnet,skaleNebulaTestnet,skaleTitanTestnet,Chain } from "wagmi/chains";import { useState } from 'react';import "@rainbow-me/rainbowkit/styles.css";const queryClient = new QueryClient();export default function Web3WalletContainer({children,projectId}: {children?: JSX.Element | JSX.Element[];projectId: string;}) {const [{ config, chains }] = useState(() => {const chains: readonly [Chain, ...Chain[]] = [skaleCalypsoTestnet,skaleEuropaTestnet,skaleNebulaTestnet,skaleTitanTestnet,]const config = getDefaultConfig({appName: 'your app name',projectId,chains,ssr: true,});return {config,chains}});if (!config || !chains) return null;return (<><WagmiConfigconfig={config}><QueryClientProvider client={queryClient}><RainbowKitProviderappInfo={{appName: "your app name",}}>{children}</RainbowKitProvider></QueryClientProvider></WagmiConfig></>);}
Additional RainbowKit Documentation
Click here for the official documentation.
The Wallet Connect is an open source protocol to link dApps to mobile wallets using deep linking, and allows you to integrate your dApp with SKALE.
Implementation Example
-
Package Install
Terminal window npm install --save web3 @walletconnect/web3-providerTerminal window yarn add --save web3 @walletconnect/web3-provider -
Integration
import WalletConnectProvider from "@walletconnect/web3-provider";import Web3 from 'web3';// Your setup informationconst endpoint = 'your_skale_network_rpc'; // your SKALE Chain endpointconst ethereumEndpoint = 'https://your.ethereum.endpoint' // your Ethereum endpointconst skaleChainId = 123456 // chainId of your SKALE Chainconst provider = new WalletConnectProvider({rpc: {skaleChainId: endpoint,4: ethereumEndpoint}});await provider.enable();const web3 = new Web3(provider);
Additional Wallet Connect Documentation
Click here for the official documentation.
ConnectKit is a react component library designed for integrating a wallet with dApps. It supports a wide range of popular connectors and blockchains, ensuring a smooth and visually appealing user experience.
Implementation Example
-
Package Install
Terminal window npm install connectkit wagmi viem@2.x @tanstack/react-queryTerminal window yarn add connectkit wagmi viem@2.x @tanstack/react-query -
Integration
import { WagmiProvider , createConfig, http } from "wagmi";import { skaleNebulaTestnet , skaleCalypsoTestnet , skaleTitanTestnet , skaleEuropaTestnet } from "wagmi/chains";import { QueryClient , QueryClientProvider } from "@tanstack/react-query";import { ConnectKitProvider , getDefaultConfig } from "connectkit";import { ConnectKitButton } from "connectkit";const config = createConfig(getDefaultConfig({// Your dApps chainschains: [skaleNebulaTestnet],transports: {// RPC URL for each chain[skaleNebulaTestnet.id]: http(`https://testnet.skalenodes.com/v1/lanky-ill-funny-testnet`,),},// Required API KeyswalletConnectProjectId: "Get yours here: https://cloud.walletconnect.com/sign-in",// Required App InfoappName: "ConnectKit"}),);const queryClient = new QueryClient();export const Web3Provider = ({ children }) => {return (<WagmiProvider config={config}><QueryClientProvider client={queryClient}><ConnectKitProvider>{children}<ConnectKitButton/></ConnectKitProvider></QueryClientProvider></WagmiProvider>);};
Additional ConnectKit Documentation
Click here for the official documentation.
Dynamic provides login flows tailored for crypto-native users, straightforward onboarding processes for all other users, and a comprehensive suite of developer tools extending beyond authentication.
Dynamic offers various types of wallets for users, including:
- Embedded Wallets: non-custodial wallets with social login;
- Crypto-native Wallets: well known non-custodial industry wallets like Metamask;
- Account abstraction Wallets: dynamic integrates with multiple account abstraction providers;
Implementation Example
-
Package Install
Terminal window npm install @dynamic-labs/sdk-react-coreTerminal window yarn add @dynamic-labs/sdk-react-c -
Integration
import { DynamicContextProvider,DynamicWidget } from '@dynamic-labs/sdk-react-core';//Set your SKALE chain hereconst evmNetworks = [{blockExplorerUrls: ['https://lanky-ill-funny-testnet.explorer.testnet.skalenodes.com/'],chainId: 37084624,chainName: '[S] Nebula Gaming Hub',iconUrls: ['https://raw.githubusercontent.com/skalenetwork/skale-network/master/metadata/mainnet/icons/green-giddy-denebola.svg'],name: 'Nebula',nativeCurrency: {decimals: 18,name: 'sFUEL',symbol: 'sFUEL',},networkId: 37084624,rpcUrls: ['https://testnet.skalenodes.com/v1/lanky-ill-funny-testnet'],vanityName: 'Nebula Testnet',}];function App() {return (<DynamicContextProvidersettings={{environmentId: "Get your environment ID here https://app.dynamic.xyz/",overrides: { evmNetworks },}}><DynamicWidget /></DynamicContextProvider>);}export default App;
Additional Dynamic Documentation
Click here for the official documentation.