Safe (Gnosis Safe) · Schema

Erc20Info

MultisigSmart ContractEthereumWeb3BlockchainDeFiSafeGnosisWallet

Properties

Name Type Description
name string
symbol string
decimals integer
logoUri string
View JSON Schema on GitHub

JSON Schema

Erc20Info.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.safe.global/schemas/Erc20Info",
  "title": "Erc20Info",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "symbol": {
      "type": "string"
    },
    "decimals": {
      "type": "integer"
    },
    "logoUri": {
      "type": "string"
    }
  },
  "required": [
    "decimals",
    "logoUri",
    "name",
    "symbol"
  ]
}