isPoolStable()
This function is in the BancorNetworkInfo.sol contract.
BancorNetworkInfo.sol
function isPoolStable(Token pool) external view returns (bool);
This function is used to determine if it's currently possible to withdraw from a liquidity pool.
When pools experience significant volatility, withdrawals are temporarily disabled. This is typically resolved in a short amount of time.
Name | Type | Description |
---|---|---|
pool | Token |
This function returns true or false to indicate if it's currently possible to withdraw from the given pool.
Variable Type | Returns |
---|---|
boolean | True: Withdrawals are possible.
False: Withdrawals are not currently possible. |
Last modified 1yr ago