交易通知
地址有充值,或者主动发起的交易上链后,推送通知。 关于回调规则,可参考 MPC WaaS 快速入门 中的相关说明。
application/json
Request Body
- Array [
- ]
- Array [
- ]
requestType integer required
回调请求类型 (0-提现;1-充值)
requestId string required
请求的唯一id,多次调用不变
requestDetail object required
回调请求的详细信息;格式为序列化的 JSON字符串,当前包含如下参数内容
sinoId string
交易流水号,转账时会返回,充值固定返0
txHash string required
交易hash,链上数据
confirmNumber integer required
确认数,当前固定给0
walletId string
钱包id
chainSymbol string required
链唯一标识
assetId string required
asset唯一标识
txDirection integer required
交易类型:0-提现;1-充值
note string
提现交易创建时填写值,充值交易无
nonce integer
EVM兼容链交易nonce值,交易类型为0(提现)时,返回;当交易类型为1(充值)时,返回为0
from string required
from地址
to string required
to地址
toTag string
提现交易创建时传入值,充值交易为null
amount string required
金额
decimal integer required
精度
fee string required
对于提现交易,构造交易时确定的手续费
feeAsset string required
手续费代币标识
feeAssetDecimal integer required
手续费代币唯精度
usedFee string required
实际使用的手续费
gasPrice string
ethlike会有值,非ethlike给0
gasLimit string
ethlike会有值,非ethlike给0
state integer required
10-交易上链成功;5-主动发起的(合约交互类交易)已上链,但链上执行状态为失败;4-失败(签名被拒绝等原因)
brc20Details object[]
method string
操作类型
ticker string
名称
quantity string
本次操作的数量
inscriptionId string
铭文id
step int
1:commit 2:reveal 3:transfer
from string
from地址
to string
to地址
runeDetails object[]
fromAddress string
toAddress string
runeName string
runeId string
runeSpacedName string
runeSymbol string
runeDivisibility int
extraInfo string
与回调请求相关的其他信息;当前暂无明确信息
Responses
- 200
successful operation
application/json
Schema
Example (from schema)
Schema
code integer
requestId string
请求的唯一id,多次调用不变
message string
错误信息
{
"code": 200,
"requestId": "431431431431431",
"message": ""
}
Loading...