Dopex · Schema

TokenDto

ERC20 token details including address, decimals, and symbol

DeFiDecentralized OptionsSSOVOptions ExchangeArbitrumDPXrDPXStakingImplied VolatilityBlack-ScholesOptions PricingCLAMMCryptocurrencyWeb3EVM

Properties

Name Type Description
address string Address of the ERC20 token
decimals string Decimals of the ERC20 token
symbol string Symbol of the ERC20 token
View JSON Schema on GitHub

JSON Schema

TokenDto.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.stryke.xyz/schemas/TokenDto",
  "title": "TokenDto",
  "description": "ERC20 token details including address, decimals, and symbol",
  "type": "object",
  "properties": {
    "address": {
      "type": "string",
      "description": "Address of the ERC20 token"
    },
    "decimals": {
      "type": "string",
      "description": "Decimals of the ERC20 token"
    },
    "symbol": {
      "type": "string",
      "description": "Symbol of the ERC20 token"
    }
  },
  "required": ["address", "decimals", "symbol"]
}