查询链地址
查询链地址
application/json
Request Body
vaultId string required
金库id
walletId string required
钱包id
chainSymbol string required
链名称 简称 链标识
pageIndex pageIndex
当前页码,首页为 1。
pageSize pageSize
每页数据条数(不得小于1,不得大于50;默认 10)
Responses
- 200
successful operation
application/json
Schema
Example (from schema)
Schema
- Array [
- ]
code integer
msg string
data object
pageIndex integer
pageSize integer
totalSize integer
list object[]
id string
地址id
address string
链地址
encoding integer
链地址 地址类型(例:BTC链:Legacy(P2PKH)格式:0,Native SegWit(Bech32)格式:2)
success boolean
{
"code": 200,
"msg": "",
"data": {
"pageIndex": 1,
"pageSize": 10,
"totalSize": 4,
"list": [
{
"id": "11368",
"address": "4b1613e2501b770463a12e397b34d9cac0d9497c",
"encoding": 0
}
]
},
"success": true
}
Loading...