22 lines
454 B
Go
22 lines
454 B
Go
package webapi
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/decred/vspd/version"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// vspInfo is the handler for "GET /api/v3/vspinfo".
|
|
func vspInfo(c *gin.Context) {
|
|
sendJSONResponse(vspInfoResponse{
|
|
APIVersions: []int64{3},
|
|
Timestamp: time.Now().Unix(),
|
|
PubKey: signPubKey,
|
|
FeePercentage: cfg.VSPFee,
|
|
Network: cfg.NetParams.Name,
|
|
VspClosed: cfg.VspClosed,
|
|
VspdVersion: version.String(),
|
|
}, c)
|
|
}
|