feat: 拉取积分质押操作记录的接口

This commit is contained in:
2025-04-08 20:25:23 +08:00
parent 8119bcefdc
commit 85daa4b093
12 changed files with 500 additions and 11 deletions

View File

@@ -140,6 +140,12 @@ func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
Path: "/level",
Handler: stakepoint.GetStakeLevelListHandler(serverCtx),
},
{
// 积分质押日志列表
Method: http.MethodGet,
Path: "/log",
Handler: stakepoint.GetStakeLogListHandler(serverCtx),
},
{
// 质押积分操作
Method: http.MethodPost,