max_taker_vol

max_taker_vol coin

The max_taker_vol method returns the maximum available volume for buy/sell methods for selected coin. This takes the dex fee and blockchain miner fees into account. The result should be used as is for sell method or divided by price for buy method.

Arguments

StructureTypeDescription
coinstringthe name of the coin to retrieve the max available taker volume

Response

StructureTypeDescription
resultfractionthe max available taker volume, represented as a standard FractionalValue object.

📌 Examples

Command

POST max_taker_vol
{
  "method": "max_taker_vol",
  "coin": "DOC",
  "userpass": "RPC_UserP@SSW0RD",
  "mm2": 1
}
Show Response

Response

{
  "result": {
    "denom": "38900000000",
    "numer": "309786160299"
  }
}