mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-15 00:48:01 -05:00
12 lines
309 B
Go
12 lines
309 B
Go
package config
|
|
|
|
// L1Config loads l1eth configuration items.
|
|
type L1Config struct {
|
|
// l1 eth node url.
|
|
Endpoint string `json:"endpoint"`
|
|
// The start height to sync event from layer 1
|
|
StartHeight uint64 `json:"start_height"`
|
|
// The relayer config
|
|
RelayerConfig *RelayerConfig `json:"relayer_config"`
|
|
}
|