查询mpc协议执行记录
查询mpc协议执行记录
application/json
Request Body
businessExecType integer
业务执行类型(KeyGen 类型请求:1,signTx 类型请求:2,signMessage 类型请求:3,signRawData 类型请求:4)
businessExecStatus integer
业务执行状态 (进行中:0,成功:1,失败:2)
sinoId string
sinoId,不传按照分页查询
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[]
requestId string
用户发起业务自己生成的唯一请求id
sinoId string
sinoId sinohope 根据当前业务生成的唯一id
requestTime string
请求时间,日期时间字符串,格式:yyyy-MM-dd HH:mm:ss
,GMT+8 时区。
param string
向MPC node 发起业务请求时的参数,具体值依据 businessExecType
的不同而不同。KeyGen 时:值为key的密码学类型,ecdsa-secp256k1
或 eddsa-ed25519
;其他类型均为待签名的数据。
businessExecType integer
业务执行类型(KeyGen 类型请求:1,signTx 类型请求:2,signMessage 类型请求:3,signRawData 类型请求:4)
businessExecStatus integer
业务执行状态 (进行中:0,成功:1,失败:2)
isSuccess boolean
是否成功
failedReason string
失败原因
success boolean
{
"code": 200,
"msg": "",
"data": {
"pageIndex": 1,
"pageSize": 10,
"totalSize": 10,
"list": [
{
"requestId": "asdf123123123",
"sinoId": "123123123",
"requestTime": "2023-12-23 13:23:45",
"param": "ecdsa-secp256k1",
"businessExecType": 1,
"businessExecStatus": 1,
"isSuccess": true,
"failedReason": ""
}
]
},
"success": true
}
Loading...