# max_maker_vol

The max_maker_vol method returns the maximum volume of a coin which can be used to create a maker order (taking into account estimated fees). If the coin is not activated, a NoSuchCoin error will be returned.

# Arguments

Parameter Type Description
coin string The ticker of the coin you want to query.

# Response

Parameter Type Description
coin string The ticker of the coin you queried.
volume object An object cointaining the tradable maker volume in decimal, fraction and rational formats.
volume.decimal numeric string The tradable maker volume in decimal format (opens new window).
volume.rational rational object The tradable maker volume in rational format.
volume.fraction fraction object The tradable maker volume in fraction format (opens new window).
balance object An object cointaining the locked amount in decimal, fraction and rational formats.
balance.decimal numeric string The coin balance in decimal format (opens new window).
balance.rational rational object The coin balance in rational format.
balance.fraction fraction object The coin balance in fraction format (opens new window).
locked_by_swaps object An object cointaining the volume of a coin's balance which is locked by swaps in progress in decimal, fraction and rational formats.
locked_by_swaps.decimal numeric string The locked by swaps amount in decimal format (opens new window).
locked_by_swaps.rational rational object The locked by swaps amount in rational format.
locked_by_swaps.fraction fraction object The locked by swaps amount in fraction format (opens new window).

# 📌 Examples

# Command

curl --url "http://127.0.0.1:7783" --data "{
  \"userpass\": \"YOUR_RPCPASSWORD\",
  \"mmrpc\": \"2.0\",
  \"method\": \"max_maker_vol\",
  \"params\": {
    \"coin\": \"RICK\"
  }
}"