Safe (Gnosis Safe) · Schema

EthereumTxWithTransfersResponse

MultisigSmart ContractEthereumWeb3BlockchainDeFiSAFeGnosisWallets

Properties

Name Type Description
executionDate string
to stringnull
data string
txHash string
blockNumber integernull
transfers array
txType string
from string
View JSON Schema on GitHub

JSON Schema

EthereumTxWithTransfersResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.safe.global/schemas/EthereumTxWithTransfersResponse",
  "title": "EthereumTxWithTransfersResponse",
  "type": "object",
  "properties": {
    "executionDate": {
      "type": "string",
      "format": "date-time"
    },
    "to": {
      "type": [
        "string",
        "null"
      ]
    },
    "data": {
      "type": "string"
    },
    "txHash": {
      "type": "string"
    },
    "blockNumber": {
      "type": [
        "integer",
        "null"
      ],
      "readOnly": true
    },
    "transfers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TransferWithTokenInfoResponse"
      }
    },
    "txType": {
      "type": "string",
      "readOnly": true
    },
    "from": {
      "type": "string"
    }
  },
  "required": [
    "blockNumber",
    "data",
    "executionDate",
    "from",
    "to",
    "transfers",
    "txHash",
    "txType"
  ]
}