curl --request POST \
--url https://api.hotstuff.trade/info \
--header 'Content-Type: application/json' \
--data '{
"method": "supported_collateral",
"params": {
"symbol": "USDC"
}
}'
[
{
"id": 1,
"symbol": "USDC",
"name": "USDC",
"decimals": 6,
"default_coll_weight": 1,
"price_index": "USDC/USD",
"type": 0,
"bridge_by_chain": [
{
"bridge_chain_type": 0,
"bridge_chain_id": 11155111,
"token_address": "0xc8B651b77Cce49C5e29677Fba4dE2AA415FbBc98",
"bridge_contract_address": "0x1ce44b7cb2CCcd1B4E67FE632aC32b63B9CDDa91",
"enabled": true
}
],
"coll_risk": {
"weight_tiers": [
{
"amount": 9223372036853,
"weight": 1
},
{
"amount": 9223372036854.775,
"weight": 0
}
],
"max_margin_cap": 9223372036854.775,
"stale_price_guard_weight": 1,
"enabled": true
},
"transfer_notional_fee": 1,
"withdrawal_fee": 3,
"added_at_block": 1773677761277
}
]Global
supported_collateral
Send POST request to /info with method: “supported_collateral”
POST
/
info
curl --request POST \
--url https://api.hotstuff.trade/info \
--header 'Content-Type: application/json' \
--data '{
"method": "supported_collateral",
"params": {
"symbol": "USDC"
}
}'
[
{
"id": 1,
"symbol": "USDC",
"name": "USDC",
"decimals": 6,
"default_coll_weight": 1,
"price_index": "USDC/USD",
"type": 0,
"bridge_by_chain": [
{
"bridge_chain_type": 0,
"bridge_chain_id": 11155111,
"token_address": "0xc8B651b77Cce49C5e29677Fba4dE2AA415FbBc98",
"bridge_contract_address": "0x1ce44b7cb2CCcd1B4E67FE632aC32b63B9CDDa91",
"enabled": true
}
],
"coll_risk": {
"weight_tiers": [
{
"amount": 9223372036853,
"weight": 1
},
{
"amount": 9223372036854.775,
"weight": 0
}
],
"max_margin_cap": 9223372036854.775,
"stale_price_guard_weight": 1,
"enabled": true
},
"transfer_notional_fee": 1,
"withdrawal_fee": 3,
"added_at_block": 1773677761277
}
]Retrieve supported collateral configuration, risk parameters, and bridge details for a specific symbol or all symbols.
params.symbol is required. Pass a collateral symbol like USDC, or use all to fetch all supported collateral types.
curl --request POST \
--url https://api.hotstuff.trade/info \
--header 'Content-Type: application/json' \
--data '{
"method": "supported_collateral",
"params": {
"symbol": "USDC"
}
}'
⌘I