BEXCHAIN Logo bexchain Explorer (ID: 140586)

Coin: BEX | Supply: 10,000,000 BEX | Blocks: 83,264

...

Token Details

USDT (wUSDT) BEX20 Native Source Verified Verified

wUSDT

Contract Address: 0xbc6593358feea849a059fe2c8bcb48d138abee50

Name: USDT

Symbol: wUSDT

Decimals: 18

Total Supply: 70874.9003515625

Website: https://bexchain.com

About: BEXChain Whitepaper v1.0 (Draft) Date: March 6, 2026 Status: Public draft 1. Executive Summary BEXChain is a blockchain ecosystem with its native coin BEX as the primary currency for in-game transactions, third-party applications, service payments, and DeFi utilities within the BEX ecosystem. This whitepaper defines the economic foundation, token distribution, utility model, and initial technical parameters of the network. 2. Vision and Goals BEXChain's goal is to build an integrated digital ecosystem where: Users can earn BEX through mining activities and ecosystem participation. Third-party game/app developers can adopt BEX as a means of payment. BEX's core products are interconnected through wallets, DEXs, and API/RPC services. Long-term vision: BEX becomes the primary medium of exchange across products within the BEXChain ecosystem. 3. Ecosystem Products Focused utility products and channels: Mining Bot Telegram: onboarding and mining rewards based on community activity. BEX Miner Android: mobile interface for mining activities and reward monitoring. BEX DEX: asset exchange/swapping within the ecosystem. BEX Wallet Multichain: BEX asset and cross-chain asset management. Third-party integrations: external games and applications that accept BEX as currency. 4. Technical Foundation BEXChain uses a custom EVM-compatible architecture approach to ensure compatibility with EVM integration patterns and tooling. Current technical parameters: Chain Name: bexchain Chain ID: 140586 Native Coin: BEX Decimals: 18 RPC URL (production): https://rpc.bexchain.com API Base URL (production): https://api.bexchain.com/api Explorer UI (production): https://scan.bexchain.com Public integration endpoints: JSON-RPC: https://rpc.bexchain.com Chain info API: https://api.bexchain.com/api/chain_info Gas fee API: https://api.bexchain.com/api/gas_fees (currently disabled on public endpoint) Metadata chainlist: Network ID: 140586 EVM Fe

Verified Source Code

Compiler: v0.8.20+commit.a1b79de6 | Contract: BEX20Reference

// BEXCHAIN BEX20 reference for token:  (), decimals=18
// Deploy from Remix to get matching EVM bytecode, or import ABI via explorer API.

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

/**
 * Reference BEX20 token layout for BEXCHAIN native tokens deployed via the explorer.
 * Use this file in Remix to interact with your token address (read balances via explorer/RPC).
 * For full on-chain bytecode match verification, deploy this contract from Remix first.
 */
contract BEX20Reference {
    string public name;
    string public symbol;
    uint8 public decimals;
    uint256 public totalSupply;
    address public owner;

    mapping(address => uint256) public balanceOf;
    mapping(address => mapping(address => uint256)) public allowance;

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);

    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _decimals,
        uint256 _initialSupply,
        address _owner
    ) {
        name = _name;
        symbol = _symbol;
        decimals = _decimals;
        owner = _owner;
        totalSupply = _initialSupply;
        balanceOf[_owner] = _initialSupply;
        emit Transfer(address(0), _owner, _initialSupply);
    }

    function transfer(address to, uint256 amount) external returns (bool) {
        _transfer(msg.sender, to, amount);
        return true;
    }

    function approve(address spender, uint256 amount) external returns (bool) {
        allowance[msg.sender][spender] = amount;
        emit Approval(msg.sender, spender, amount);
        return true;
    }

    function transferFrom(address from, address to, uint256 amount) external returns (bool) {
        uint256 allowed = allowance[from][msg.sender];
        require(allowed >= amount, "allowance");
        allowance[from][msg.sender] = allowed - amount;
        _transfer(from, to, amount);
        return true;
    }

    function _transfer(address from, address to, uint256 amount) internal {
        require(to != address(0), "zero");
        require(balanceOf[from] >= amount, "balance");
        balanceOf[from] -= amount;
        balanceOf[to] += amount;
        emit Transfer(from, to, amount);
    }
}

Remix & ABI

Remix API: https://defi.bexchain.com/explorer/api — Chain ID 140586

Top Holders

Rank Address Balance
1 0x73b2302d0d5c346f8372d6dd81f105ad303fc37c 70526.0221615304 wUSDT
2 0xCC11114BDAda3F82a01e314a5d9d62D55aDD981a 348.87819003210274 wUSDT