Safe (Gnosis Safe) · Schema
SafeCreationInfoResponse
MultisigSmart ContractEthereumWeb3BlockchainDeFiSafeGnosisWallet
Properties
| Name | Type | Description |
|---|---|---|
| created | string | |
| creator | string | |
| transactionHash | string | |
| factoryAddress | string | |
| masterCopy | stringnull | |
| setupData | stringnull | |
| saltNonce | stringnull | |
| dataDecoded | object | |
| userOperation | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api.safe.global/schemas/SafeCreationInfoResponse",
"title": "SafeCreationInfoResponse",
"type": "object",
"properties": {
"created": {
"type": "string",
"format": "date-time"
},
"creator": {
"type": "string"
},
"transactionHash": {
"type": "string"
},
"factoryAddress": {
"type": "string"
},
"masterCopy": {
"type": [
"string",
"null"
]
},
"setupData": {
"type": [
"string",
"null"
]
},
"saltNonce": {
"type": [
"string",
"null"
]
},
"dataDecoded": {
"type": "object",
"additionalProperties": {},
"readOnly": true
},
"userOperation": {
"oneOf": [
{
"$ref": "#/components/schemas/UserOperationWithSafeOperationResponse"
},
{
"type": "null"
}
]
}
},
"required": [
"created",
"creator",
"dataDecoded",
"factoryAddress",
"masterCopy",
"saltNonce",
"setupData",
"transactionHash",
"userOperation"
]
}