Skip to main content
GET
/
api
/
v1
/
config
Fetch chain, contract, token, route, and destination config.
curl --request GET \
  --url https://shlp-web-production.up.railway.app/api/v1/config
{
  "success": true,
  "data": {
    "apiVersion": "v1",
    "product": {
      "slug": "shlp",
      "name": "Signalite sHLP",
      "description": "<string>"
    },
    "chain": {
      "id": 999,
      "name": "Hyperliquid",
      "rpcUrl": "https://rpc.hyperliquid.xyz/evm",
      "explorerUrl": "https://hypurrscan.io"
    },
    "contracts": {
      "vault": "0x44bb3Beb0C5Fc6cb8fDe29B9D617ff9b2685062a",
      "usdc": "0xb88339CB7199b77E23DB6E890353E22632Ba630f",
      "hlpVault": "0xdfc24b077bc1425AD1DEA75bCB6f8158E10Df303",
      "strategyKeeper": "0x72eA0422845B176186EaEE03Fb96709a330d2526",
      "navSource": "0x063c5B699f4449A40FcdB15A3638fd70fbc1beA4"
    },
    "tokens": {
      "asset": {
        "symbol": "<string>",
        "decimals": 123,
        "address": "<string>"
      },
      "share": {
        "symbol": "<string>",
        "decimals": 123,
        "address": "<string>"
      }
    },
    "deposit": {
      "nativeChainId": 999,
      "supportedRoutes": [
        {
          "chainId": 123,
          "chainName": "<string>",
          "enabled": true,
          "sdkSupported": true,
          "actionEndpoint": "<string>",
          "requiresReadiness": true,
          "readinessEndpoint": "<string>",
          "readinessFlag": "deposits",
          "asset": "<string>"
        }
      ],
      "minimumDeposit": {
        "raw": "1000000",
        "decimals": 6,
        "formatted": "1.000000"
      },
      "recommendedOperationalMinimum": {
        "raw": "1000000",
        "decimals": 6,
        "formatted": "1.000000"
      }
    },
    "withdraw": {
      "nativeSettlementChainId": 999,
      "supportedDestinations": [
        {
          "chainId": 123,
          "chainName": "<string>",
          "usdcAddress": "<string>",
          "chainIcon": "<string>",
          "enabled": true
        }
      ]
    }
  },
  "meta": {
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Response

OK

success
boolean
required
data
object
required
meta
object
required