跳到主要内容

fee

功能

获取在 everPay 上 指定代币transferwithdrawbundle 手续费。

参数

{{ endpoint }}/fee/{{ tokenTag }}

查询字段

字段是否必需描述
tokenTagYEStoken 的唯一标识,由 Token chainType, symbol, id 通过 - 组合。可通过 info 接口进行查看。

返回字段

字段描述
tokenTagtoken 的唯一标识,由 Token chainType, symbol, id 通过 - 组合。可通过 info 接口进行查看。
burnFeeMapwithdraw 手续费。
transferFeetransfer 手续费。
atomicBundleFeebundle 手续费。

示例

curl --location --request GET 'https://api.everpay.io/fee/ethereum-eth-0x0000000000000000000000000000000000000000'

示例返回

{
"fee":{
"tokenTag":"ethereum-eth-0x0000000000000000000000000000000000000000",
"transferFee":"0",
"bundleFee":"0",
"burnFeeMap":{
"ethereum":"2964000000000000"
}
}
}