根据移除比例获取流动性信息
开发中POST
/brc20swap/get_liquid_info请求参数
Body 参数application/json
address
string
必需
lp_precent
integer
小数 百分比 整数
from_tick
string
当前都是btc
to_tick
string
必需
from_coin_type
string
必需
to_coin_type
string
必需
示例
{
"address": "string",
"lp_precent": 0,
"from_tick": "string",
"to_tick": "string",
"from_coin_type": "string",
"to_coin_type": "string"
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
msg
string
必需
data
object
必需
from_amount
string
必需
to_amount
string
必需
mutisign_fee_proportion
string
必需
千分之三返回0.003
示例
{
"code": 0,
"msg": "string",
"data": {
"from_amount": "string",
"to_amount": "string",
"mutisign_fee_proportion": "string"
}
}
修改于 2 个月前