跳到主要内容

使用 RainbowKit

Demo

A demo app for RainbowKit is available here, and source code is available too: Demo Code.

安装

npm install @unipasswallet/rainbowkit-plugin wagmi

参数

  • chains -- Chains supported by app. This is the same parameter as would be passed to other RainbowKit wallets..

  • options.connect -- Connection options for the default networkId, name of the app.

  • options.connect.chainId -- Default chainId.

  • options.connect.returnEmail -- If true, email will return when connect function been called.

  • options.connect.appSettings -- Config appName, appIcon and theme.

  • options.connect.rpcUrls -- Config mainnet and testnet rpc URLs. In the local development environment, you don't need to fill in, this will use our default test URLs, but in the production environment, you need to fill in with your own rpc node url.

用例

    import { configureChains, createClient, WagmiConfig } from "wagmi";
import {
optimismGoerli,
arbitrumGoerli,
goerli,
polygonMumbai,
} from "wagmi/chains";
import { publicProvider } from "wagmi/providers/public";
import { unipassWallet } from "@unipasswallet/rainbowkit-plugin";

const connectors = connectorsForWallets([
{
groupName: "Recommended",
wallets: [
injectedWallet({ chains, shimDisconnect: true }),
metaMaskWallet({ chains, shimDisconnect: true }),
rainbowWallet({ chains }),
unipassWallet({
chains,
connect: {
chainId: polygonMumbai.id,
returnEmail: false,
appSettings: {
appName: "wagmi demo",
appIcon: "your icon url",
},
rpcUrls: {
mainnet: "your eth mainnet rpc url",
polygon: "your polygon mainnet rpc url",
bscMainnet: "your bsc mainnet rpc url",
rangersMainnet: "your rangers mainnet rpc url",
arbitrumMainnet: "your arbitrum mainnet rpc url",

polygonMumbai: "your polygon testnet rpc url",
goerli: "your goerli testnet rpc url",
bscTestnet: "your bsc testnet rpc url",
rangersRobin: "your rangers testnet rpc url",
arbitrumTestnet: "your arbitrum testnet rpc url",
},
},
}),
],
},
]);

const wagmiClient = createClient({
autoConnect: true,
connectors,
provider,
});

验签

服务器端验签可参考:UniPass Verifying Messages