v1

latestOpenAPI 3.1.02026-07-26460218.4 KB
Vaults

Get Asset Config

This is a POST request, submitting data to an API via the request body. This request submits JSON data, and the data is reflected in the response.

A successful POST request typically returns a 200 OK or 201 Created response code.

get/vaults/config

Response

OK

codestring
zonesstring[]
updatedAtstring
createdAtstring
isUTXOBasedboolean
descriptionstring
idstring
namestring
defaultNetworkstring

Example response

[
  {
    "code": "USDC",
    "resources": [
      {
        "type": "file_url",
        "content": "https://f.hubspotusercontent30.net/hubfs/9304636/PDF/centre-whitepaper.pdf",
        "id": "WHITEPAPER"
      }
    ],
    "zones": [
      "stablecoins"
    ],
    "updatedAt": "2024-12-06T07:13:13.561Z",
    "networks": {
      "XLM": {
        "nativeAsset": "XLM",
        "chainCurrencyId": "USDC",
        "addressRegex": "^G[A-Z2-7]{55}$",
        "requiresMemo": true,
        "activities": [
          "SEND"
        ],
        "explorerUrl": "https://blockchair.com/stellar/transaction/__TX_HASH__",
        "name": "Stellar",
        "enabled": true,
        "network": "XLM"
      },
      "SOL": {
        "nativeAsset": "SOL",
        "chainCurrencyId": "USDC",
        "addressRegex": "^[1-9A-HJ-NP-Za-km-z]{32,44}$",
        "activities": [
          "SEND"
        ],
        "explorerUrl": "https://explorer.solana.com/tx/__TX_HASH__",
        "name": "Solana",
        "enabled": true,
        "network": "SOL"
      },
      "CELO": {
        "nativeAsset": "CELO",
        "chainCurrencyId": "USDC",
        "addressRegex": "^(0x)[0-9A-Fa-f]{40}$",
        "activities": [
          "SEND"
        ],
        "explorerUrl": "https://celoscan.io/tx/__TX_HASH__",
        "name": "Celo",
        "enabled": true,
        "network": "CELO"
      },
      "ERC20": {
        "nativeAsset": "ETH",
        "chainCurrencyId": "USDC",
        "addressRegex": "^(0x)[0-9A-Fa-f]{40}$",
        "activities": [
          "SEND"
        ],
        "explorerUrl": "https://etherscan.io/tx/__TX_HASH__",
        "name": "Ethereum",
        "enabled": true,
        "network": "ERC20"
      },
      "BASE": {
        "nativeAsset": "OP",
        "chainCurrencyId": "USDC",
        "addressRegex": "^(0x)[0-9A-Fa-f]{40}$",
        "activities": [
          "SEND"
        ],
        "explorerUrl": "https://basescan.org/tx/__TX_HASH__",
        "name": "Base",
        "enabled": true,
        "network": "BASE"
      }
    },
    "createdAt": "2024-12-06T07:13:13.561Z",
    "description": "USDC is a stablecoin, pegged 1:1 to the US$. Created by Circle & Coinbase, each USDC unit in circulation is backed by $1 held in reserve, consisting of a mix of cash and short-term U.S. Treasury bonds.<br /><br />Join the USDC ecosystem and enjoy the benefits of stability and peace of mind as you make digital transactions with confidence! 🛡️",
    "id": "usd-coin",
    "name": "USD Coin",
    "defaultNetwork": "ERC20"
  }
]