mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-08 23:18:15 -05: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"`
|
|
}
|