전송 수수료 조회
GET https://{dashboard-domain}/v1.0/db/transfer/coin/fee
Query Parameters
Name
Type
Description
coin_symbol*
string
코인 symbol (ETH | NEWTON | KLAY..)
coin_id*
int64
전송할 코인 ID
{
"return": 0,
"message": "success",
"value": {
"base_coin_id": 1,
"base_coin_symbol": "ETH",
"coin_id": 3,
"coin_symbol": "NEWTON",
"transaction_fee": 0.0036,
"gas_price": 3.6e-8
}
}curl --location --request GET 'https://{dashboard-domain}/v1.0/db/transfer/coin/fee?coin_symbol=NEWTON'key
data type
desc.
base_coin_id
int64
베이스 코인 id
base_coin_symbol
string
베이스 코인 symbol (ETH | KLAY..)
coin_id
int64
코인 id
coin_symbol
string
코인 symbol
transaction_fee
float64
전송에 소모되는 수수료(베이스 코인 수수료)
gas_price
float64
가스비
return
message
desc.
0
success
성공
500
internal server error
내부 서버 에러
36006
not exist coin fee
해당 symbol의 수수료는 존재하지 않는다.
Last updated