GET
/
makingLPPool
curl --request GET \
  --url https://api.onton.finance/makingLPPool

This endpoint does not require any parameters, simply send a GET request.

Example request:

GET /makingLPPool

Successful response:

{
  "success": true,
  "data": {
    "feeOptions": [
      {
        "value": 0.01,
        "label": "0.01% - Suitable for very stable pairs",
        "choice": "0%"
      },
      {
        "value": 0.05,
        "label": "0.05% - Suitable for stable pairs",
        "choice": "92%"
      },
      {
        "value": 0.3,
        "label": "0.30% - Suitable for most pairs",
        "choice": "8%"
      },
      {
        "value": 1,
        "label": "1.00% - Suitable for exotic pairs",
        "choice": "0%"
      }
    ],
    "defaultFee": 0.3
  }
}

Response field explanation:

  • success: Whether the request is successful
  • data.feeOptions: Optional transaction fee rate configurations
    • value: Fee rate value, such as 0.01 representing 0.01%
    • label: Fee rate description
    • choice: The proportion of users who choose this fee rate
  • data.defaultFee: The default transaction fee rate

By calling the makingLPPool endpoint, you can get the optional transaction fee rate configurations and default fee rate when creating a liquidity pool. The frontend can use this information to render a fee rate selector, making it convenient for users to choose a suitable transaction fee rate.

When creating a liquidity pool, you can pass the user-selected fee rate as a parameter to the createLiquidityPool endpoint, allowing the pool’s transaction fee rate to be set according to the user’s preference.

Response

200

Successfully provided liquidity pool configuration information