2024-07-10 09:06:46 +00:00
|
|
|
// premerge1 is from a Clique-based pre-Merge chain with a single genesis allocation.
|
2024-07-08 06:35:28 +00:00
|
|
|
package premerge1
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/cerc-io/eth-testing/chains"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
ChainData, err = chains.GetFixture("premerge1")
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|