prysm-pulse/api/server/structs/endpoints_config.go

19 lines
339 B
Go
Raw Normal View History

package structs
type GetDepositContractResponse struct {
Data *DepositContractData `json:"data"`
}
type DepositContractData struct {
ChainId string `json:"chain_id"`
Address string `json:"address"`
}
type GetForkScheduleResponse struct {
Data []*Fork `json:"data"`
}
type GetSpecResponse struct {
Data interface{} `json:"data"`
}