RISE Logo-Light

Token Addresses

ERC20 token addresses on RISE Mainnet

Native and wrapped token addresses on RISE Mainnet (Chain ID: 4153).

Token Addresses

NameSymbolDecimalsAddress
Wrapped ETHWETH180x4200000000000000000000000000000000000006

WETH Features

The WETH token at 0x4200000000000000000000000000000000000006 is a predeploy contract with the following 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 WETH balance
cast call 0x4200000000000000000000000000000000000006 "balanceOf(address)(uint256)" <YOUR_ADDRESS> --rpc-url https://rpc.risechain.com/

# Transfer WETH
cast send 0x4200000000000000000000000000000000000006 "transfer(address,uint256)(bool)" <RECIPIENT> <AMOUNT> --private-key $PRIVATE_KEY --rpc-url https://rpc.risechain.com/

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

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