查询链地址
查询链地址
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
链地址
hdPath string
地址对应的path
encoding integer
链地址 地址类型(1:LEGACY,2:SEGWIT_NATIVE,3:SEGWIT_NESTED,4:TAPROOT 不填默认为1:LEGACY)
pubkey string
公钥
success boolean
{
"code": 200,
"msg": "",
"data": {
"pageIndex": 1,
"pageSize": 10,
"totalSize": 4,
"list": [
{
"id": "11368",
"address": "0x4b1613e2501b770463a12e397b34d9cac0d9497c",
"hdPath": "m/1/1/60/0",
"encoding": 0,
"pubkey": "021855d461cf75ac6579d32a2af92d0dc26f0f0736ac766f8ad7894407ab360ffb"
}
]
},
"success": true
}
Loading...