Safe (Gnosis Safe) · Schema

Contract

MultisigSmart ContractEthereumWeb3BlockchainDeFiSafeGnosisWallet

Properties

Name Type Description
address string
name string
displayName string
logoUri string
contractAbi object
trustedForDelegateCall boolean
View JSON Schema on GitHub

JSON Schema

Contract.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.safe.global/schemas/Contract",
  "title": "Contract",
  "type": "object",
  "properties": {
    "address": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "displayName": {
      "type": "string"
    },
    "logoUri": {
      "type": "string",
      "format": "uri"
    },
    "contractAbi": {
      "$ref": "#/components/schemas/ContractAbi"
    },
    "trustedForDelegateCall": {
      "type": "boolean"
    }
  },
  "required": [
    "address",
    "contractAbi",
    "displayName",
    "logoUri",
    "name",
    "trustedForDelegateCall"
  ]
}