Deribit · Schema

Deposit

DerivativesCryptocurrencyBitcoinEthereumOptionsFuturesPerpetualsTradingMarket DataBlock TradingWebSocketFinancial

Properties

Name Type Description
currency object
address object
amount object
state object
transaction_id object
source_address object
received_timestamp object
updated_timestamp object
note string
clearance_state object
refund_transaction_id object
View JSON Schema on GitHub

JSON Schema

deposit.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/deribit/json-schema/deposit.json",
  "title": "Deposit",
  "properties": {
    "currency": {
      "$ref": "#/components/schemas/currency"
    },
    "address": {
      "$ref": "#/components/schemas/currency_address"
    },
    "amount": {
      "$ref": "#/components/schemas/currency_amount"
    },
    "state": {
      "$ref": "#/components/schemas/deposit_state"
    },
    "transaction_id": {
      "$ref": "#/components/schemas/currency_transaction_id"
    },
    "source_address": {
      "$ref": "#/components/schemas/currency_address"
    },
    "received_timestamp": {
      "$ref": "#/components/schemas/timestamp"
    },
    "updated_timestamp": {
      "$ref": "#/components/schemas/timestamp"
    },
    "note": {
      "type": "string"
    },
    "clearance_state": {
      "$ref": "#/components/schemas/clearance_state"
    },
    "refund_transaction_id": {
      "$ref": "#/components/schemas/currency_transaction_id"
    }
  },
  "required": [
    "currency",
    "address",
    "amount",
    "state",
    "transaction_id",
    "received_timestamp",
    "updated_timestamp"
  ],
  "type": "object"
}