Safe (Gnosis Safe) · Schema

SafeBalanceResponse

MultisigSmart ContractEthereumWeb3BlockchainDeFiSafeGnosisWallet

Properties

Name Type Description
tokenAddress string
token object
balance string
View JSON Schema on GitHub

JSON Schema

SafeBalanceResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.safe.global/schemas/SafeBalanceResponse",
  "title": "SafeBalanceResponse",
  "type": "object",
  "properties": {
    "tokenAddress": {
      "type": "string"
    },
    "token": {
      "$ref": "#/components/schemas/Erc20Info"
    },
    "balance": {
      "type": "string"
    }
  },
  "required": [
    "balance",
    "token",
    "tokenAddress"
  ]
}