mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 02:02:18 +00:00
19 lines
339 B
Go
19 lines
339 B
Go
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"`
|
|
}
|