Skip to main content

Supported Tokens

Dogenado supports multiple tokens with various pool denominations.

Token Overview

TokenSymbolDecimalsType
USD CoinUSDC6Stablecoin
TetherUSDT6Stablecoin
USD1USD118Stablecoin
Wrapped DOGEWDOGE18Wrapped Native
Wrapped EtherWETH18Wrapped ETH
Liquid BitcoinLBTC8Wrapped BTC

Pool Denominations

Stablecoins

Ideal for everyday transactions and privacy:

TokenPools
USDC1, 10, 100, 1,000
USDT1, 10, 100, 1,000
USD11, 10, 100, 1,000

Wrapped DOGE

Privacy for DOGE holders:

PoolUSD Equivalent*
100 WDOGE~$10
1,000 WDOGE~$100
10,000 WDOGE~$1,000
100,000 WDOGE~$10,000

*Approximate, based on current prices

Wrapped ETH

Privacy for ETH on DogeOS:

PoolUSD Equivalent*
0.01 WETH~$25
0.1 WETH~$250
1 WETH~$2,500
10 WETH~$25,000

Liquid Bitcoin

Privacy for BTC holders:

PoolUSD Equivalent*
0.001 LBTC~$40
0.01 LBTC~$400
0.1 LBTC~$4,000
1 LBTC~$40,000

Choosing a Pool

Factors to Consider

  1. Anonymity Set Size

    • Popular pools have more deposits
    • More deposits = better privacy
  2. Your Amount

    • Choose the largest pool that fits your needs
    • Larger pools often have bigger anonymity sets
  3. Waiting Time

    • Busy pools accumulate deposits faster
    • Less waiting = quicker privacy

Recommendations

Use CaseRecommended Pool
Small transfers10-100 USDC
Medium transfers100-1000 USDC
Large transfers1000+ USDC or WETH pools
BTC privacy0.1 LBTC

Getting Tokens

On DogeOS Testnet

For testnet, you can get tokens from:

  • DogeOS Testnet Faucet
  • Testnet token bridges

Token Bridges

FromToBridge
EthereumDogeOSOfficial Bridge
BSCDogeOSOfficial Bridge

Token Standards

All tokens on Dogenado are ERC-20 compatible:

interface IERC20 {
function transfer(address to, uint256 amount) external returns (bool);
function approve(address spender, uint256 amount) external returns (bool);
function transferFrom(address from, address to, uint256 amount) external returns (bool);
function balanceOf(address account) external view returns (uint256);
function allowance(address owner, address spender) external view returns (uint256);
}

Adding New Tokens

The community may propose new tokens via governance (future feature).

Requirements for new tokens:

  • ERC-20 compliant
  • Sufficient liquidity
  • Community demand
  • Security audit

See also: Contract Addresses