forked from Consensys/teku
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Builder API] Update for Electra spec
- Loading branch information
1 parent
dfd7f9d
commit 67e30df
Showing
16 changed files
with
306 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
58 changes: 58 additions & 0 deletions
58
...h/pegasys/teku/spec/datastructures/builder/versions/electra/BuilderBidBuilderElectra.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/* | ||
* Copyright Consensys Software Inc., 2023 | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on | ||
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations under the License. | ||
*/ | ||
|
||
package tech.pegasys.teku.spec.datastructures.builder.versions.electra; | ||
|
||
import static com.google.common.base.Preconditions.checkNotNull; | ||
|
||
import tech.pegasys.teku.infrastructure.ssz.primitive.SszUInt256; | ||
import tech.pegasys.teku.spec.datastructures.builder.BuilderBid; | ||
import tech.pegasys.teku.spec.datastructures.builder.BuilderBidBuilder; | ||
import tech.pegasys.teku.spec.datastructures.builder.versions.deneb.BuilderBidBuilderDeneb; | ||
import tech.pegasys.teku.spec.datastructures.execution.versions.electra.ExecutionRequests; | ||
import tech.pegasys.teku.spec.datastructures.type.SszPublicKey; | ||
|
||
public class BuilderBidBuilderElectra extends BuilderBidBuilderDeneb { | ||
|
||
private BuilderBidSchemaElectra schema; | ||
|
||
protected ExecutionRequests executionRequests; | ||
|
||
public BuilderBidBuilderElectra schema(final BuilderBidSchemaElectra schema) { | ||
this.schema = schema; | ||
return this; | ||
} | ||
|
||
@Override | ||
public BuilderBidBuilder executionRequests(final ExecutionRequests executionRequests) { | ||
this.executionRequests = executionRequests; | ||
return this; | ||
} | ||
|
||
@Override | ||
public BuilderBid build() { | ||
return new BuilderBidElectraImpl( | ||
schema, | ||
header, | ||
blobKzgCommitments, | ||
executionRequests, | ||
SszUInt256.of(value), | ||
new SszPublicKey(publicKey)); | ||
} | ||
|
||
@Override | ||
protected void validate() { | ||
super.validate(); | ||
checkNotNull(blobKzgCommitments, "blobKzgCommitments must be specified"); | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
...ava/tech/pegasys/teku/spec/datastructures/builder/versions/electra/BuilderBidElectra.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package tech.pegasys.teku.spec.datastructures.builder.versions.electra; | ||
|
||
import java.util.Optional; | ||
import tech.pegasys.teku.spec.datastructures.builder.versions.deneb.BuilderBidDeneb; | ||
import tech.pegasys.teku.spec.datastructures.execution.versions.electra.ExecutionRequests; | ||
|
||
public interface BuilderBidElectra extends BuilderBidDeneb { | ||
|
||
ExecutionRequests getExecutionRequests(); | ||
|
||
@Override | ||
default Optional<ExecutionRequests> getOptionalExecutionRequests() { | ||
return Optional.of(getExecutionRequests()); | ||
} | ||
} |
Oops, something went wrong.