1. Wallets
  2. Coinbase

Wallets

Coinbase

Wallet module for connecting Coinbase Wallet SDK to web3-onboard. Check out the Coinbase Wallet Developer Docs for more information.

Install

Options

        type CoinbaseWalletOptions = {
	darkMode: boolean; // default = false
};

      

Usage

        import Onboard from '@web3-onboard/core';
import coinbaseWalletModule from '@web3-onboard/coinbase';

// initialize the module with options
const coinbaseWalletSdk = coinbaseWalletModule({ darkMode: true });

// can also initialize with no options...
// const coinbaseWalletSdk = coinbaseWalletSdk()

const onboard = Onboard({
	// ... other Onboard options
	wallets: [
		coinbaseWalletSdk
		//... other wallets
	]
});

const connectedWallets = await onboard.connectWallet();
console.log(connectedWallets);

      

Build Environments

For build env configurations and setups please see the Build Env section here