Query MPC protocol execution records
Query MPC protocol execution records
Request Body
Business execution type (KeyGen type request:1, signTx type request:2, signMessage type request:3, signRawData) Type of request:4)
Business execution status (in progress:0, success:1, failure:2)
If sinoId is not provided, the query will be based on pagination
Current page number, the first page is 1.
Number of data items per page (not less than 1, not more than 50; default is 10)
- 200
successful operation
Schema
- Array [
- ]
data object
list object[]
The unique request id generated by the user initiating the business.
The unique id generated by Sinohope based on the current business.
Request time, date and time string, format:yyyy-MM-dd HH:mm:ss, GMT + 8 time zone.
Parameter when initiating a business request to an MPC node, the specific value varies depending on the businessExecType. KeyGen:The value is the cryptographic type of the key, ecdsa-secp256k1 or eddsa-ed25519; other types are data to be signed.
Business execution type (KeyGen type request:1, signTx type request:2, signMessage type request:3, signRawData type request:4)
The status of the business execution (in progress:0, success:1, failure:2)
Indicates whether the operation was successful
Reason for failure
{
"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
}