Biconomy MEE

Enable gasless transactions with Biconomy Meta-Transactions

Integrate OZZOBiT with Biconomy's Meta-Transaction Enablement Engine (MEE) to enable gasless crypto purchases. Users can buy crypto without needing to hold ETH or native tokens for gas fees.

What is Biconomy MEE?

Biconomy MEE is a relayer infrastructure that enables meta-transactions (gasless transactions) on EVM-compatible blockchains. When combined with OZZOBiT, users can complete on-ramp transactions without needing to pay for gas separately.

How It Works

User Initiates Purchase

User selects to buy cryptocurrency in your application. They don't need any existing crypto or gas tokens.

OZZOBiT Processes Payment

User pays with fiat (card/bank). OZZOBiT processes the payment and prepares the crypto transfer.

Biconomy Relays Transaction

Instead of the user paying gas, Biconomy's relayer network submits the transaction and covers the gas cost. The gas fee is bundled into the fiat price.

Crypto Delivered

Crypto arrives in the user's wallet without them ever needing to handle gas fees.

Integration Setup

StepAction
1Sign up at biconomy.io and create a project
2Get your Biconomy API Key and Dashboard ID
3Contact OZZOBiT support to enable Biconomy MEE integration
4Configure your dApp smart contract for meta-transactions
5Add Biconomy parameters to your widget URL or API calls
6Test on testnet before deploying to mainnet

Widget Configuration

biconomy-widget.jsjavascript
// Widget URL with Biconomy MEE enabled
const params = new URLSearchParams({
  apiKey: 'YOUR_OZZOBiT_API_KEY',
  productsAvailed: 'BUY',
  network: 'ethereum',
  defaultCryptoCurrency: 'USDC',
  walletAddress: '0xUserWalletAddress...',
  
  // Biconomy configuration
  biconomyEnabled: 'true',
  biconomyApiKey: 'YOUR_BICONOMY_API_KEY',
  biconomyDashboardId: 'YOUR_DASHBOARD_ID',
})

const url = `https://OZZOBiT.com/global?${params.toString()}`

// The user experience:
// 1. User clicks "Buy USDC"
// 2. Pays $100 with credit card  
// 3. Receives USDC in wallet (no gas needed!)

API Integration

biconomy-api.jsonjson
// Whitelabel API order creation with Biconomy
POST /api/v2/orders/create
Authorization: Bearer YOUR_ACCESS_TOKEN

{
  "partnerOrderId": "order-123",
  "productsAvailed": "BUY",
  "network": "ethereum",
  "cryptoCurrency": "USDC",
  "fiatCurrency": "USD", 
  "fiatAmount": "100",
  "walletAddress": "0xUserWallet...",
  
  "biconomyConfig": {
    "enabled": true,
    "apiKey": "biconomy-api-key",
    "dashboardId": "dashboard-id",
    "relayerNetwork": "ethereum"
  }
}

// Response includes:
{
  "orderId": "OZZOBiT-order-abc",
  "status": "AWAITING_PAYMENT_FROM_USER",
  "gasless": true,
  "relayerInfo": {
    "provider": "biconomy",
    "estimatedGasSavings": "0.002 ETH"
  }
}
ℹ️
Supported Networks

Biconomy MEE with OZZOBiT currently supports: Ethereum Mainnet, Polygon, BSC, Avalanche, Arbitrum, Optimism, and Base.

Benefits

BenefitDescription
Zero Gas FrictionUsers never need to own or understand gas tokens
Higher ConversionRemove a major barrier for new crypto users
Better UXOne-click purchase without wallet balance checks
Predictable CostsGas is included in the displayed fiat price
Faster OnboardingNew users can transact immediately after sign-up