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.
-
Open MetaMask and select "Add Network" or use the settings menu.
-
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
- Switch to Polygon Mainnet.
-
Visit dzit.1bz.biz or the 1BZ dashboard.
-
Click "Connect Wallet" and select WalletConnect.
-
Scan the QR code with your mobile wallet app (e.g., Trust Wallet).
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
- Go to QuickSwap.
- Connect your wallet.
- 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!');
// web3.js example - Stake 100 1BZ
const Web3 = require('web3');
const web3 = new Web3('https://polygon-rpc.com');
const account = web3.eth.accounts.privateKeyToAccount('YOUR_PRIVATE_KEY');
web3.eth.accounts.wallet.add(account);
const daoContract = new web3.eth.Contract(
[{ name: 'stake', inputs: [{ type: 'uint256', name: 'amount' }] }], // Replace with ABI
'0xb625a70f874429dc94060673577cd98ba11941ac'
);
const tx = await daoContract.methods.stake(web3.utils.toWei('100', 'ether')).send({ from: account.address });
console.log('Staked!');
Access the DZIT Portal
-
Visit the DZIT Portal.
-
Connect your staked wallet to view gas credits allocated from your 1BZ stake.
-
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
- Connect wallet.
- Select proposal.
- Vote proportional to staked 1BZ (e.g., "For" or "Against").
Next Steps
Explore Token Model
Dive into 1BZ, DZIT, BZeUSD, and E2P details.
Smart Contracts
Review full contract registry and ABIs.
DAO Governance
Advanced voting and treasury management.
Changelog
Stay updated with platform releases.
Check the Help Center or join community discussions.
Last updated today