Safe (Gnosis Safe) · Schema

TokenInfoResponse

MultisigSmart ContractEthereumWeb3BlockchainDeFiSafeGnosisWallet

Properties

Name Type Description
type string
address string
name string
symbol string
decimals integer
logoUri string
trusted boolean
View JSON Schema on GitHub

JSON Schema

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