User Guides
v2.0
Wallet Setup
Learn how to set up your MetaMask wallet and connect it to the DriveChains platform.
Overview
This section provides detailed information about wallet setup. Our platform makes it easy to connect your wallet and start using the DriveChains ecosystem with secure, scalable infrastructure.
Note: Make sure you have the latest version of MetaMask installed before proceeding.
Installation Steps
- Download MetaMask from the official website or browser extension store
- Create a new wallet or import an existing one
- Secure your wallet with a strong password and backup phrase
- Add the Polygon network to your MetaMask wallet
- Connect your wallet to the DriveChains platform
Code Example
import { Web3Provider } from '@web3-sdk/core';
// Initialize provider
const provider = new Web3Provider({
network: 'polygon',
apiKey: process.env.WEB3_API_KEY
});
// Connect wallet
const accounts = await provider.connect();
console.log('Connected:', accounts[0]);