Quick Reference
🚀 Fuseon Protocol - Live on Plasma Mainnet
Network: Plasma Mainnet (Chain ID: 9745) Status: 🟢 LIVE Deployment Date: September 25, 2025
📋 Contract Addresses (Clickable Links)
Core Contracts
// Core Protocol
FUS_TOKEN = "0xDfAD3B638Fb77cCBd0712516877541CF7FA3341E"
VEFUS = "0x17A0Aa5bA3b51C816737D9C8C435bD6ccfC5fa72"
VOTER = "0x9B035667Eaf203C9a666D7CA2D06F0Cd17FB3eda"
FUS_MINTER = "0xeB169a93747d4718E5153a3C6e3AA3d2030d7b2E"
REWARDS_DISTRIBUTOR = "0xbBD71214B43cD7460fe1e0EB43b4F6F998DA09FF"
// AMM
ROUTER = "0xD0C8d5295D710b37ba9E9d0F31a6E3ECEc1403dC"
PAIR_FACTORY = "0x07A91205ee7d5a5d59B707B89Ef0c3434357e52B"
KODO_LIBRARY = "0xFdebb2982fa0c47957551C263D46cC65C3Be8185"
// Factories
GAUGE_FACTORY = "0xdd6a65021A7FF9E4Cb4911a5B2E1D169f0aFae43"
BRIBE_FACTORY = "0x77BF15423af59D85a762c7bB2F5347af85A8a383"
// Utility
VE_ART_PROXY = "0xa8Fe7Bb82beFc5860282d5d0227df5a2d0E2Ab5D"
// Reference Tokens
WXPL = "0x6100E367285b01F48D07953803A2d8dCA5D19873"
⚡ Network Configuration
MetaMask/Web3 Setup
// Network Configuration
const PLASMA_MAINNET = {
chainId: '0x2611', // 9745 in hex
chainName: 'Plasma Mainnet',
nativeCurrency: {
name: 'XPL',
symbol: 'XPL',
decimals: 18,
},
rpcUrls: ['https://rpc.plasma.to'],
blockExplorerUrls: ['https://plasmascan.to'],
}
Hardhat Configuration
// hardhat.config.js
networks: {
plasmaMainnet: {
url: "https://rpc.plasma.to",
chainId: 9745,
accounts: [process.env.PRIVATE_KEY],
}
}
🔧 Integration Examples
Web3.js
import Web3 from 'web3';
const web3 = new Web3('https://rpc.plasma.to');
const fusContract = new web3.eth.Contract(FUS_ABI, FUS_TOKEN);
// Get FUS balance
const balance = await fusContract.methods.balanceOf(userAddress).call();
Ethers.js
import { ethers } from 'ethers';
const provider = new ethers.providers.JsonRpcProvider('https://rpc.plasma.to');
const fusContract = new ethers.Contract(FUS_TOKEN, FUS_ABI, provider);
// Get total supply
const totalSupply = await fusContract.totalSupply();
// Returns: 150000000000000000000000000 (150M * 10^18)
🎯 Key Features Status
Feature | Status | Description |
---|---|---|
🔄 Token Swaps | 🟢 LIVE | Full AMM functionality |
💧 Liquidity | 🟢 LIVE | Add/remove LP positions |
🌉 Bridge | 🟢 LIVE | BSC ↔ Plasma via Stargate |
🔒 Lock/Vote | 🟡 READY | Available after presale |
🎁 Rewards | 🟡 READY | Available after presale |
💰 Bribes | 🟡 READY | Available after presale |
📱 Frontend Integration
Router Usage
// Swap ETH for FUS
IRouter(ROUTER).swapExactETHForTokens(
amountOutMin,
path,
to,
deadline
);
// Add Liquidity
IRouter(ROUTER).addLiquidity(
tokenA,
tokenB,
amountADesired,
amountBDesired,
amountAMin,
amountBMin,
to,
deadline
);
veFUS Integration (Post-Presale)
// Lock FUS for veFUS
IVeFus(VEFUS).create_lock(amount, lockTime);
// Vote on gauges
IVoter(VOTER).vote(tokenId, pools, weights);
🔍 Verification Links
Click any address below to view on PlasmaScan:
🚀 dApp Links
- Trading Interface: app.fuseon.finance
- Documentation: docs.fuseon.finance
- Bridge: Stargate Finance
🎊 All contracts verified and operational on Plasma Mainnet! 🎊
Need help? Check the full Contract Addresses documentation.