Safe (Gnosis Safe) · Schema

SafeLastStatus

MultisigSmart ContractEthereumWeb3BlockchainDeFiSafeGnosisWallet

Properties

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

JSON Schema

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