查询钱包对账余额
查询钱包对账余额
application/json
Request Body
type integer required
统计类型 0代表组织,1代表金库,2代表钱包,3代表资产
vaultId string
金库id
walletId string
钱包id
assetId string
钱包id
date string required
日期 2023-08-11
Responses
- 200
successful operation
*/*
Schema
Example (from schema)
Schema
code integer
msg string
data object
assetSymbol string
token
assetName string
token全称
chainSymbol string required
链名称 简称 链标识
assetId string required
币名称 简称 币标识
freeBalance string
金额
比如1个eth,精度18位, 这里就是 10^18 Wei, 1,000,000,000,000,000,000
blockedBalance string
KYT冻结金额
pendingBalance string
在途交易金额
decimal integer required
币种精度
confirmingThreshold integer
安全确认次数
success boolean
requestId string
{
"code": 0,
"msg": "string",
"data": {
"assetSymbol": "eth",
"assetName": "eth",
"chainSymbol": "ETH",
"assetId": "ETH_ETH",
"freeBalance": "102211",
"blockedBalance": "1",
"pendingBalance": "1",
"decimal": 8,
"confirmingThreshold": 20
},
"success": true,
"requestId": "string"
}
Loading...