Getting StartedQuickstart
Getting Started

Getting Started with 1BZ Platform

Step-by-step guide to set up your wallet, acquire initial tokens, and perform your first interaction with the platform.

Prerequisites

Ensure you have:

  • A Polygon-compatible wallet like MetaMask or WalletConnect
  • Some MATIC for gas fees (bridge from Ethereum if needed)
  • Basic familiarity with decentralized exchanges (DEXes) like QuickSwap on Polygon

Connect Your Wallet to Polygon

Connect a Polygon-compatible wallet to interact with the 1BZ platform. Polygon mainnet uses Chain ID 137.

  1. Open MetaMask and select "Add Network" or use the settings menu.

  2. Add the Polygon network with these details:

Network Name: Polygon Mainnet
RPC URL: https://polygon-rpc.com
Chain ID: 137
Symbol: MATIC
Block Explorer: https://polygonscan.com
  1. Switch to Polygon Mainnet.

Fund your wallet with at least 0.1 MATIC for initial transactions.

Acquire 1BZ Tokens

Purchase 1BZ on a Polygon DEX like QuickSwap.

Bridge MATIC to Polygon

If starting from Ethereum, use the Polygon Bridge to transfer MATIC.

Swap on QuickSwap

  1. Go to QuickSwap.
  2. Connect your wallet.
  3. Swap MATIC for 1BZ using contract address: 0xb468ccF5e28600da712C452e66816D3Bad5abfFD.

Stake 1BZ for Governance Power

Staking 1BZ grants governance voting power. Use the DAO contract: 0xb625a70f874429dc94060673577cd98ba11941ac.

// ethers.js example - Stake 100 1BZ
import { ethers } from 'ethers';

const provider = new ethers.JsonRpcProvider('https://polygon-rpc.com');
const wallet = new ethers.Wallet('YOUR_PRIVATE_KEY', provider);

const daoContract = new ethers.Contract(
  '0xb625a70f874429dc94060673577cd98ba11941ac',
  ['function stake(uint256 amount)'], // Replace with actual ABI
  wallet
);

const tx = await daoContract.stake(ethers.parseEther('100'));
await tx.wait();
console.log('Staked!');

Access the DZIT Portal

  1. Visit the DZIT Portal.

  2. Connect your staked wallet to view gas credits allocated from your 1BZ stake.

  3. DZIT credits power bot workflows and generate anchored transaction hashes.

Your first DZIT allocation appears based on stake size. Use it for platform operations.

Make Your First Governance Vote

Participate in DAO proposals.

Find Proposals

Visit the governance interface linked from 1bz.biz.

Vote

  1. Connect wallet.
  2. Select proposal.
  3. Vote proportional to staked 1BZ (e.g., "For" or "Against").

Next Steps

Check the Help Center or join community discussions.

Was this page helpful?
Built with Documentation.AI

Last updated today