# SDK Methods ETH

# Ethereum Address

Returns the authenticated user's Ethereum address. If they're not authenticated it will return null.

address(): Promise<string | null>

    # Ethereum Balance

    Returns the authenticated user's Ethereum balance. This will be formatted in ETH for you. You can obviously use the JSON-RPC call to get the balance; this is just an exposed explicit call.

    balance(): Promise<string>
    

      # Ethereum fiat price

      Returns the fiat price that ETH is currently valued at, in the user's selected currency.

      fiatPrice(): Promise<number>