Options

Get Network Options

post

This endpoint returns the version information and allowed network-specific types for a NetworkIdentifier. Any NetworkIdentifier returned by /network/list should be accessible here. Because options are retrievable in the context of a NetworkIdentifier, it is possible to define unique options for each network.

Body

A NetworkRequest is utilized to retrieve some data specific exclusively to a NetworkIdentifier.

metadataobjectOptional
Responses
200
Expected response to a valid request
application/json
post
POST /network/options HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 197

{
  "network_identifier": {
    "blockchain": "bitcoin",
    "network": "mainnet",
    "sub_network_identifier": {
      "network": "shard 1",
      "metadata": {
        "producer": "0x52bc44d5378309ee2abf1539bf71de1b7d7be3b5"
      }
    }
  },
  "metadata": {}
}
{
  "version": {
    "rosetta_version": "1.2.5",
    "node_version": "1.0.2",
    "middleware_version": "0.2.7",
    "metadata": {}
  },
  "allow": {
    "operation_statuses": [
      {
        "status": "SUCCESS",
        "successful": true
      }
    ],
    "operation_types": [
      "TRANSFER"
    ],
    "errors": [
      {
        "code": 12,
        "message": "Invalid account format",
        "description": "This error is returned when the requested AccountIdentifier is improperly formatted.",
        "retriable": true,
        "details": {
          "address": "0x1dcc4de8dec75d7aab85b567b6",
          "error": "not base64"
        }
      }
    ],
    "historical_balance_lookup": true,
    "timestamp_start_index": 1,
    "call_methods": [
      "eth_call"
    ],
    "balance_exemptions": [
      {
        "sub_account_address": "staking",
        "currency": {
          "symbol": "BTC",
          "decimals": 8,
          "metadata": {
            "Issuer": "Satoshi"
          }
        },
        "exemption_type": "greater_or_equal"
      }
    ],
    "mempool_coins": true,
    "block_hash_case": "case_sensitive",
    "transaction_hash_case": "case_sensitive"
  }
}

Revision created

GitBook: No commit message