Skip to main content

Assets

An asset is a representation of value on a blockchain network. Common types of assets include (fungible) tokens and NFTs (non-fungible tokens).

The Platform API supports two assets on the Base Sepolia network:

Because the Base Sepolia network is a testnet, none of the tokens on this network actually confers any value—they are provided for testing purposes.

Asset IDs

Throughout the Platform APIs and SDK, assets are referred to via their asset IDs.

In Ruby, asset IDs are symbols that resemble tickers:

  • ETH's asset ID is :eth
  • USDC's asset ID is :usdc
  • WETH's asset ID is :weth

Denominations of ETH

ETH provides 18 places of decimal precision. The smallest amount of sendable ETH is 10-18, also known as a Wei.

Commonly used denominations of ETH:

DenominationAmount in WeiDescription
Wei1 WeiSmallest denomination of ETH
Gwei109 WeiDenomination of ETH commonly used for gas (i.e., transaction fee) calculations
Ether / ETH1018 WeiLargest denomination of ETH, commonly used for trading

The SDK supports transfers in denominations of Wei, Gwei, and ETH.

SDK Documentation

Refer to the Asset class SDK docs for a full list of supported methods.

Was this helpful?