Skip to main content
POST
https://api.hotstuff.trade
/
info
curl --request POST \
  --url https://api.hotstuff.trade/info \
  --header 'Content-Type: application/json' \
  --data '{
    "method": "supportedCollateral"
}'
[
    {
        "id": 1,
        "symbol": "USDC",
        "name": "USDC",
        "decimals": 6,
        "default_coll_weight": 1,
        "price_index": "USDC/USD",
        "type": 0,
        "bridge_by_chain": [
            {
                "bridgeChainType": 0,
                "bridgeChainId": 11155111,
                "tokenAddress": "0xc8B651b77Cce49C5e29677Fba4dE2AA415FbBc98",
                "bridgeContractAddress": "0x1ce44b7cb2CCcd1B4E67FE632aC32b63B9CDDa91",
                "enabled": true
            }
        ],
        "coll_risk": {
            "weight_tiers": [
                {
                    "amount": 200000,
                    "weight": 0.95
                },
                {
                    "amount": 500000,
                    "weight": 0.94
                },
                {
                    "amount": 1000000,
                    "weight": 0.9
                },
                {
                    "amount": 2500000,
                    "weight": 0.85
                },
                {
                    "amount": 5000000,
                    "weight": 0.8
                },
                {
                    "amount": 10000000,
                    "weight": 0.7
                },
                {
                    "amount": 9223372036854.775806,
                    "weight": 0
                }
            ],
            "max_margin_cap": 9223372036854.775806,
            "stale_price_guard_weight": 0.8,
            "enabled": true
        },
        "withdrawal_fee": 0,
        "added_at_block": 1764944493182
    },
    {
        "id": 2,
        "symbol": "USDT",
        "name": "USDT",
        "decimals": 6,
        "default_coll_weight": 0.98,
        "price_index": "USDT/USDC",
        "type": 0,
        "bridge_by_chain": [
            {
                "bridgeChainType": 0,
                "bridgeChainId": 11155111,
                "tokenAddress": "0xCB606FaFa1E2b53f046bECC051007B303F61AEf3",
                "bridgeContractAddress": "0x1ce44b7cb2CCcd1B4E67FE632aC32b63B9CDDa91",
                "enabled": true
            }
        ],
        "coll_risk": {
            "weight_tiers": [
                {
                    "amount": 9223372036853,
                    "weight": 1
                },
                {
                    "amount": 9223372036854.775806,
                    "weight": 0
                }
            ],
            "max_margin_cap": 9223372036854.775806,
            "stale_price_guard_weight": 1,
            "enabled": false
        },
        "withdrawal_fee": 0,
        "added_at_block": 1764944514421
    }
]
Retrieve information about all supported collateral types including their configuration, risk parameters, and bridge details.
curl --request POST \
  --url https://api.hotstuff.trade/info \
  --header 'Content-Type: application/json' \
  --data '{
    "method": "supportedCollateral"
}'
[
    {
        "id": 1,
        "symbol": "USDC",
        "name": "USDC",
        "decimals": 6,
        "default_coll_weight": 1,
        "price_index": "USDC/USD",
        "type": 0,
        "bridge_by_chain": [
            {
                "bridgeChainType": 0,
                "bridgeChainId": 11155111,
                "tokenAddress": "0xc8B651b77Cce49C5e29677Fba4dE2AA415FbBc98",
                "bridgeContractAddress": "0x1ce44b7cb2CCcd1B4E67FE632aC32b63B9CDDa91",
                "enabled": true
            }
        ],
        "coll_risk": {
            "weight_tiers": [
                {
                    "amount": 200000,
                    "weight": 0.95
                },
                {
                    "amount": 500000,
                    "weight": 0.94
                },
                {
                    "amount": 1000000,
                    "weight": 0.9
                },
                {
                    "amount": 2500000,
                    "weight": 0.85
                },
                {
                    "amount": 5000000,
                    "weight": 0.8
                },
                {
                    "amount": 10000000,
                    "weight": 0.7
                },
                {
                    "amount": 9223372036854.775806,
                    "weight": 0
                }
            ],
            "max_margin_cap": 9223372036854.775806,
            "stale_price_guard_weight": 0.8,
            "enabled": true
        },
        "withdrawal_fee": 0,
        "added_at_block": 1764944493182
    },
    {
        "id": 2,
        "symbol": "USDT",
        "name": "USDT",
        "decimals": 6,
        "default_coll_weight": 0.98,
        "price_index": "USDT/USDC",
        "type": 0,
        "bridge_by_chain": [
            {
                "bridgeChainType": 0,
                "bridgeChainId": 11155111,
                "tokenAddress": "0xCB606FaFa1E2b53f046bECC051007B303F61AEf3",
                "bridgeContractAddress": "0x1ce44b7cb2CCcd1B4E67FE632aC32b63B9CDDa91",
                "enabled": true
            }
        ],
        "coll_risk": {
            "weight_tiers": [
                {
                    "amount": 9223372036853,
                    "weight": 1
                },
                {
                    "amount": 9223372036854.775806,
                    "weight": 0
                }
            ],
            "max_margin_cap": 9223372036854.775806,
            "stale_price_guard_weight": 1,
            "enabled": false
        },
        "withdrawal_fee": 0,
        "added_at_block": 1764944514421
    }
]

Request Body

method
string
default:"supportedCollateral"
required
Must be “supportedCollateral” for this endpoint