Safe (Gnosis Safe) · Schema

SafeInfoResponse

MultisigSmart ContractEthereumWeb3BlockchainDeFiSafeGnosisWallet

Properties

Name Type Description
address string
nonce string
threshold integer
owners array
masterCopy string
modules array
fallbackHandler string
guard string
moduleGuard string
version stringnull
View JSON Schema on GitHub

JSON Schema

SafeInfoResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.safe.global/schemas/SafeInfoResponse",
  "title": "SafeInfoResponse",
  "type": "object",
  "properties": {
    "address": {
      "type": "string"
    },
    "nonce": {
      "type": "string"
    },
    "threshold": {
      "type": "integer"
    },
    "owners": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "masterCopy": {
      "type": "string"
    },
    "modules": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "fallbackHandler": {
      "type": "string"
    },
    "guard": {
      "type": "string"
    },
    "moduleGuard": {
      "type": "string"
    },
    "version": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "required": [
    "address",
    "fallbackHandler",
    "guard",
    "masterCopy",
    "moduleGuard",
    "modules",
    "nonce",
    "owners",
    "threshold",
    "version"
  ]
}