根据地址修复质押接口

This commit is contained in:
lianghuanjie
2025-01-13 17:45:25 +08:00
parent 16f75d222c
commit b5e98afecf
7 changed files with 182 additions and 0 deletions

View File

@@ -25,6 +25,10 @@ service novatask {
@doc "修正 NFT 质押者"
@handler FixNftStaker
get /fix_nft_staker
@doc "根据地址修复质押"
@handler StakeByAddress
post /stake_by_address (StakeByAddressReq)
}
type EmailReward {
@@ -38,3 +42,7 @@ type StakeSettleReq {
Date string `form:"date"`
}
type StakeByAddressReq {
Address []string `json:"address"`
}