RISE Logo-Light

Testnet Tokens

ERC20 token addresses on RISE Testnet

ERC20 tokens deployed on RISE Testnet (Chain ID: 11155931).

These tokens have been minted purely for testing purposes. They hold no value.

You can acquire tokens via the faucet on the Testnet Portal.

Token Addresses

Contract Features

All tokens implement:

  • ERC20 standard functionality (transfer, approve, transferFrom)
  • Custom decimals support (6 to 18)
  • Minting capability (restricted to owner)
  • Burning capability (anyone can burn their own tokens)

WETH

The WETH token at 0x4200000000000000000000000000000000000006 is a predeploy contract with additional functionality:

  • Wrap ETH by sending ETH to the contract or calling deposit()
  • Unwrap WETH by calling withdraw(uint)
  • Standard ERC20 interface for wrapped ETH

Example Commands

# Check token balance
cast call <TOKEN_ADDRESS> "balanceOf(address)(uint256)" <YOUR_ADDRESS> --rpc-url https://testnet.riselabs.xyz

# Transfer tokens
cast send <TOKEN_ADDRESS> "transfer(address,uint256)(bool)" <RECIPIENT> <AMOUNT> --private-key $PRIVATE_KEY --rpc-url https://testnet.riselabs.xyz

# Wrap ETH
cast send 0x4200000000000000000000000000000000000006 "deposit()" --value <AMOUNT_WEI> --private-key $PRIVATE_KEY --rpc-url https://testnet.riselabs.xyz

# Unwrap WETH
cast send 0x4200000000000000000000000000000000000006 "withdraw(uint256)" <AMOUNT_WEI> --private-key $PRIVATE_KEY --rpc-url https://testnet.riselabs.xyz