Onboard

Wallet Linking for Better Wallet Management

Link Multiple Wallets to bring your players' assets together

Nobody has just one wallet anymore

Make life easier for your users, by letting them link wallets together and stop shuffling assets back and forth

Not connected

6 lines collapsed
7 const { setOpenConnectModal } = useOpenConnectModal();
8 const { wallets, linkedWallets } = useKitWallets();
9 const onClickConnect = () => {
10 setOpenConnectModal(true);
11 };
52 lines collapsed
64 <WalletConnectionDetail address={address} />
65 <button
66 className="mb-4 px-4 py-2 bg-blue-500 text-white rounded hover:bg-blue-600"
67 onClick={onClickConnect}
68 >
69 {connectedWallets.length === 1
70 ? "Connect another wallet"
71 : `Manage connected wallets (${connectedWallets.length})`}
72 </button>

Clone a boilerplate starter kit or explore our guides to learn more

  • boilerplatewallet-linking-boilerplate