-
Notifications
You must be signed in to change notification settings - Fork 299
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implemented engine_forkchoiceUpdatedV4 (#8748)
- Loading branch information
1 parent
9398cce
commit aa23460
Showing
13 changed files
with
543 additions
and
4 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
81 changes: 81 additions & 0 deletions
81
...in/java/tech/pegasys/teku/ethereum/executionclient/methods/EngineForkChoiceUpdatedV4.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,81 @@ | ||
/* | ||
* 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.ethereum.executionclient.methods; | ||
|
||
import java.util.Optional; | ||
import org.apache.logging.log4j.LogManager; | ||
import org.apache.logging.log4j.Logger; | ||
import tech.pegasys.teku.ethereum.executionclient.ExecutionEngineClient; | ||
import tech.pegasys.teku.ethereum.executionclient.response.ResponseUnwrapper; | ||
import tech.pegasys.teku.ethereum.executionclient.schema.ForkChoiceStateV1; | ||
import tech.pegasys.teku.ethereum.executionclient.schema.ForkChoiceUpdatedResult; | ||
import tech.pegasys.teku.ethereum.executionclient.schema.PayloadAttributesV4; | ||
import tech.pegasys.teku.infrastructure.async.SafeFuture; | ||
import tech.pegasys.teku.spec.executionlayer.ForkChoiceState; | ||
import tech.pegasys.teku.spec.executionlayer.PayloadBuildingAttributes; | ||
|
||
public class EngineForkChoiceUpdatedV4 | ||
extends AbstractEngineJsonRpcMethod< | ||
tech.pegasys.teku.spec.executionlayer.ForkChoiceUpdatedResult> { | ||
|
||
private static final Logger LOG = LogManager.getLogger(); | ||
|
||
public EngineForkChoiceUpdatedV4(final ExecutionEngineClient executionEngineClient) { | ||
super(executionEngineClient); | ||
} | ||
|
||
@Override | ||
public String getName() { | ||
return EngineApiMethod.ENGINE_FORK_CHOICE_UPDATED.getName(); | ||
} | ||
|
||
@Override | ||
public int getVersion() { | ||
return 4; | ||
} | ||
|
||
@Override | ||
public SafeFuture<tech.pegasys.teku.spec.executionlayer.ForkChoiceUpdatedResult> execute( | ||
final JsonRpcRequestParams params) { | ||
final ForkChoiceState forkChoiceState = params.getRequiredParameter(0, ForkChoiceState.class); | ||
final Optional<PayloadBuildingAttributes> payloadBuildingAttributes = | ||
params.getOptionalParameter(1, PayloadBuildingAttributes.class); | ||
|
||
LOG.trace( | ||
"Calling {}(forkChoiceState={}, payloadAttributes={})", | ||
getVersionedName(), | ||
forkChoiceState, | ||
payloadBuildingAttributes); | ||
|
||
final Optional<PayloadAttributesV4> maybePayloadAttributes = | ||
payloadBuildingAttributes.flatMap( | ||
attributes -> | ||
PayloadAttributesV4.fromInternalPayloadBuildingAttributesV4( | ||
payloadBuildingAttributes)); | ||
|
||
return executionEngineClient | ||
.forkChoiceUpdatedV4( | ||
ForkChoiceStateV1.fromInternalForkChoiceState(forkChoiceState), maybePayloadAttributes) | ||
.thenApply(ResponseUnwrapper::unwrapExecutionClientResponseOrThrow) | ||
.thenApply(ForkChoiceUpdatedResult::asInternalExecutionPayload) | ||
.thenPeek( | ||
forkChoiceUpdatedResult -> | ||
LOG.trace( | ||
"Response {}(forkChoiceState={}, payloadAttributes={}) -> {}", | ||
getVersionedName(), | ||
forkChoiceState, | ||
payloadBuildingAttributes, | ||
forkChoiceUpdatedResult)); | ||
} | ||
} |
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
115 changes: 115 additions & 0 deletions
115
.../src/main/java/tech/pegasys/teku/ethereum/executionclient/schema/PayloadAttributesV4.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,115 @@ | ||
/* | ||
* Copyright Consensys Software Inc., 2022 | ||
* | ||
* 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.ethereum.executionclient.schema; | ||
|
||
import static com.google.common.base.Preconditions.checkNotNull; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import com.fasterxml.jackson.databind.annotation.JsonDeserialize; | ||
import com.fasterxml.jackson.databind.annotation.JsonSerialize; | ||
import com.google.common.base.MoreObjects; | ||
import java.util.List; | ||
import java.util.Objects; | ||
import java.util.Optional; | ||
import org.apache.tuweni.bytes.Bytes32; | ||
import tech.pegasys.teku.ethereum.executionclient.serialization.UInt64AsHexDeserializer; | ||
import tech.pegasys.teku.ethereum.executionclient.serialization.UInt64AsHexSerializer; | ||
import tech.pegasys.teku.infrastructure.bytes.Bytes20; | ||
import tech.pegasys.teku.infrastructure.unsigned.UInt64; | ||
import tech.pegasys.teku.spec.executionlayer.PayloadBuildingAttributes; | ||
|
||
public class PayloadAttributesV4 extends PayloadAttributesV3 { | ||
|
||
@JsonSerialize(using = UInt64AsHexSerializer.class) | ||
@JsonDeserialize(using = UInt64AsHexDeserializer.class) | ||
public final UInt64 targetBlockCount; | ||
|
||
@JsonSerialize(using = UInt64AsHexSerializer.class) | ||
@JsonDeserialize(using = UInt64AsHexDeserializer.class) | ||
public final UInt64 maximumBlobCount; | ||
|
||
public PayloadAttributesV4( | ||
final @JsonProperty("timestamp") UInt64 timestamp, | ||
final @JsonProperty("prevRandao") Bytes32 prevRandao, | ||
final @JsonProperty("suggestedFeeRecipient") Bytes20 suggestedFeeRecipient, | ||
final @JsonProperty("withdrawals") List<WithdrawalV1> withdrawals, | ||
final @JsonProperty("parentBeaconBlockRoot") Bytes32 parentBeaconBlockRoot, | ||
final @JsonProperty("targetBlobCount") UInt64 targetBlockCount, | ||
final @JsonProperty("maximumBlobCount") UInt64 maximumBlobCount) { | ||
super(timestamp, prevRandao, suggestedFeeRecipient, withdrawals, parentBeaconBlockRoot); | ||
|
||
checkNotNull(targetBlockCount, "targetBlockCount"); | ||
checkNotNull(maximumBlobCount, "maximumBlobCount"); | ||
this.targetBlockCount = targetBlockCount; | ||
this.maximumBlobCount = maximumBlobCount; | ||
} | ||
|
||
public static Optional<PayloadAttributesV4> fromInternalPayloadBuildingAttributesV4( | ||
final Optional<PayloadBuildingAttributes> payloadBuildingAttributes) { | ||
return payloadBuildingAttributes.map( | ||
payloadAttributes -> | ||
new PayloadAttributesV4( | ||
payloadAttributes.getTimestamp(), | ||
payloadAttributes.getPrevRandao(), | ||
payloadAttributes.getFeeRecipient(), | ||
getWithdrawals(payloadAttributes), | ||
payloadAttributes.getParentBeaconBlockRoot(), | ||
payloadAttributes | ||
.getTargetBlobCount() | ||
.orElseThrow( | ||
() -> | ||
new IllegalArgumentException( | ||
"targetBlobCount is required for PayloadAttributesV4")), | ||
payloadAttributes | ||
.getMaximumBlobCount() | ||
.orElseThrow( | ||
() -> | ||
new IllegalArgumentException( | ||
"maximumBlobCount is required for PayloadAttributesV4")))); | ||
} | ||
|
||
@Override | ||
public boolean equals(final Object o) { | ||
if (this == o) { | ||
return true; | ||
} | ||
if (o == null || getClass() != o.getClass()) { | ||
return false; | ||
} | ||
if (!super.equals(o)) { | ||
return false; | ||
} | ||
final PayloadAttributesV4 that = (PayloadAttributesV4) o; | ||
return Objects.equals(targetBlockCount, that.targetBlockCount) | ||
&& Objects.equals(maximumBlobCount, that.maximumBlobCount); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(super.hashCode(), targetBlockCount, maximumBlobCount); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return MoreObjects.toStringHelper(this) | ||
.add("timestamp", timestamp) | ||
.add("prevRandao", prevRandao) | ||
.add("suggestedFeeRecipient", suggestedFeeRecipient) | ||
.add("withdrawals", withdrawals) | ||
.add("parentBeaconBlockRoot", parentBeaconBlockRoot) | ||
.add("targetBlockCount", targetBlockCount) | ||
.add("maximumBlobCount", maximumBlobCount) | ||
.toString(); | ||
} | ||
} |
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
Oops, something went wrong.