use of tech.pegasys.teku.spec.schemas.SchemaDefinitionsPhase0 in project teku by ConsenSys.
the class SpecVersion method createPhase0.
static SpecVersion createPhase0(final SpecConfig specConfig) {
final SchemaDefinitions schemaDefinitions = new SchemaDefinitionsPhase0(specConfig);
final SpecLogic specLogic = SpecLogicPhase0.create(specConfig, schemaDefinitions);
return new SpecVersion(SpecMilestone.PHASE0, specConfig, schemaDefinitions, specLogic);
}
Aggregations