// Copyright (c) 2020-2023 The Decred developers // Use of this source code is governed by an ISC // license that can be found in the LICENSE file. package webapi import ( "time" "github.com/decred/vspd/internal/version" "github.com/decred/vspd/types/v2" "github.com/gin-gonic/gin" ) // vspInfo is the handler for "GET /api/v3/vspinfo". func (w *WebAPI) vspInfo(c *gin.Context) { cachedStats := w.cache.getData() w.sendJSONResponse(types.VspInfoResponse{ APIVersions: []int64{3}, Timestamp: time.Now().Unix(), PubKey: w.signPubKey, FeePercentage: w.cfg.VSPFee, Network: w.cfg.Network.Name, VspClosed: w.cfg.VspClosed, VspClosedMsg: w.cfg.VspClosedMsg, VspdVersion: version.String(), Voting: cachedStats.Voting, Voted: cachedStats.Voted, TotalVotingWallets: cachedStats.TotalVotingWallets, VotingWalletsOnline: cachedStats.VotingWalletsOnline, Revoked: cachedStats.Expired + cachedStats.Missed, Expired: cachedStats.Expired, Missed: cachedStats.Missed, BlockHeight: cachedStats.BlockHeight, NetworkProportion: cachedStats.NetworkProportion, }, c) }