Set up Notification of Liquidity Shortage

Notify token owners that the liquidity they contributed is running low.

We can offer a liquidity monitoring mechanism that will notify your system via an HTTP POST method when the liquidity falls below a certain threshold. Feel free to contact us through with your endpoint and threshold settings to set up the notification

The HTTP request sent by the monitoring system will include the following body:

{
    "chainId": 1,
    "threshold": 6000,
    "tokenPrice": 0.132121,  # in USD
    "remainLiquidity": 1023000000,  # with padded zeroes
    "contractAddress": "0x1234....",
    "text": "<WARNING MESSAGE>"
}

Last updated