mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-10 07:58:22 -05:00
go run golang.org/x/tools/gopls/internal/analysis/modernize/cmd/modernize@latest -fix -test ./...
19 lines
331 B
Go
19 lines
331 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 any `json:"data"`
|
|
}
|