-
Notifications
You must be signed in to change notification settings - Fork 95
State recover: Blobscan and Execution Layer client #238
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 9 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
f52ed2b
coordinator: user state manager with Async interface
jpnovais 58573e2
removes old Type2StateManagerClient interface
jpnovais 86d45b0
add ByteArray#toULongFromLast8Bytes
jpnovais 3015efd
add ByteArray#toULongFromLast8Bytes
jpnovais d73621d
staterecover: adds blob scan and el client
jpnovais 4f104ac
staterecover: adds blob scan and el client
jpnovais e2303a3
Merge branch 'main' into state-revover-p1
jpnovais b5e846b
coordinator: improve flacky test
jpnovais cc438a6
fix spotless
jpnovais b949b89
small renaming and test coverage
jpnovais 6786c65
small renaming and test coverage
jpnovais File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,11 @@ | ||
plugins { | ||
id 'net.consensys.zkevm.kotlin-library-conventions' | ||
} | ||
|
||
group = 'build.linea.staterecover' | ||
jpnovais marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
dependencies { | ||
api(project(':jvm-libs:generic:extensions:kotlin')) | ||
api(project(':jvm-libs:linea:core:domain-models')) | ||
api(project(':state-recover:appcore:domain-models')) | ||
} |
7 changes: 7 additions & 0 deletions
7
...ppcore/clients-interfaces/src/main/kotlin/build/linea/staterecover/clients/BlobFetcher.kt
This file contains hidden or 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,7 @@ | ||
package build.linea.staterecover.clients | ||
|
||
import tech.pegasys.teku.infrastructure.async.SafeFuture | ||
|
||
interface BlobFetcher { | ||
fun fetchBlobsByHash(blobVersionedHashes: List<ByteArray>): SafeFuture<List<ByteArray>> | ||
} |
12 changes: 12 additions & 0 deletions
12
...ients-interfaces/src/main/kotlin/build/linea/staterecover/clients/ExecutionLayerClient.kt
This file contains hidden or 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,12 @@ | ||
package build.linea.staterecover.clients | ||
|
||
import build.linea.staterecover.BlockL1RecoveredData | ||
import net.consensys.linea.BlockNumberAndHash | ||
import net.consensys.linea.BlockParameter | ||
import tech.pegasys.teku.infrastructure.async.SafeFuture | ||
|
||
interface ExecutionLayerClient { | ||
fun getBlockNumberAndHash(blockParameter: BlockParameter): SafeFuture<BlockNumberAndHash> | ||
fun lineaEngineImportBlocksFromBlob(blocks: List<BlockL1RecoveredData>): SafeFuture<Unit> | ||
fun lineaEngineForkChoiceUpdated(headBlockHash: ByteArray, finalizedBlockHash: ByteArray): SafeFuture<Unit> | ||
} |
This file contains hidden or 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,9 @@ | ||
plugins { | ||
id 'net.consensys.zkevm.kotlin-library-conventions' | ||
} | ||
|
||
group = 'build.linea.staterecover' | ||
|
||
dependencies { | ||
api(project(':jvm-libs:generic:extensions:kotlin')) | ||
} |
78 changes: 78 additions & 0 deletions
78
...er/appcore/domain-models/src/main/kotlin/build/linea/staterecover/BlockL1RecoveredData.kt
This file contains hidden or 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,78 @@ | ||
package build.linea.staterecover | ||
|
||
import kotlinx.datetime.Instant | ||
import net.consensys.encodeHex | ||
|
||
data class BlockExtraData( | ||
val beneficiary: ByteArray | ||
) { | ||
override fun equals(other: Any?): Boolean { | ||
if (this === other) return true | ||
if (javaClass != other?.javaClass) return false | ||
|
||
other as BlockExtraData | ||
|
||
return beneficiary.contentEquals(other.beneficiary) | ||
} | ||
|
||
override fun hashCode(): Int { | ||
return beneficiary.contentHashCode() | ||
} | ||
|
||
override fun toString(): String { | ||
return "BlockExtraData(beneficiary=${beneficiary.encodeHex()})" | ||
} | ||
} | ||
|
||
data class BlockL1RecoveredData( | ||
val blockNumber: ULong, | ||
val blockHash: ByteArray, | ||
val coinbase: ByteArray, | ||
val blockTimestamp: Instant, | ||
val gasLimit: ULong, | ||
val difficulty: ULong, | ||
val extraData: BlockExtraData, | ||
val transactions: List<TransactionL1RecoveredData> | ||
) { | ||
override fun equals(other: Any?): Boolean { | ||
if (this === other) return true | ||
if (javaClass != other?.javaClass) return false | ||
|
||
other as BlockL1RecoveredData | ||
|
||
if (blockNumber != other.blockNumber) return false | ||
if (!blockHash.contentEquals(other.blockHash)) return false | ||
if (!coinbase.contentEquals(other.coinbase)) return false | ||
if (blockTimestamp != other.blockTimestamp) return false | ||
if (gasLimit != other.gasLimit) return false | ||
if (difficulty != other.difficulty) return false | ||
if (extraData != other.extraData) return false | ||
if (transactions != other.transactions) return false | ||
|
||
return true | ||
} | ||
|
||
override fun hashCode(): Int { | ||
var result = blockNumber.hashCode() | ||
result = 31 * result + blockHash.contentHashCode() | ||
result = 31 * result + coinbase.contentHashCode() | ||
result = 31 * result + blockTimestamp.hashCode() | ||
result = 31 * result + gasLimit.hashCode() | ||
result = 31 * result + difficulty.hashCode() | ||
result = 31 * result + extraData.hashCode() | ||
result = 31 * result + transactions.hashCode() | ||
return result | ||
} | ||
|
||
override fun toString(): String { | ||
return "BlockL1RecoveredData(" + | ||
"blockNumber=$blockNumber, " + | ||
"blockHash=${blockHash.encodeHex()}, " + | ||
"coinbase=${coinbase.encodeHex()}, " + | ||
"blockTimestamp=$blockTimestamp, " + | ||
"gasLimit=$gasLimit, " + | ||
"difficulty=$difficulty, " + | ||
"extraData=$extraData, " + | ||
"transactions=$transactions)" | ||
} | ||
} |
74 changes: 74 additions & 0 deletions
74
...core/domain-models/src/main/kotlin/build/linea/staterecover/TransactionL1RecoveredData.kt
This file contains hidden or 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,74 @@ | ||
package build.linea.staterecover | ||
|
||
import java.math.BigInteger | ||
|
||
data class TransactionL1RecoveredData( | ||
val type: UByte, | ||
val nonce: ULong, | ||
val maxPriorityFeePerGas: BigInteger, | ||
val maxFeePerGas: BigInteger, | ||
val gasLimit: ULong, | ||
val from: ByteArray, | ||
val to: ByteArray, | ||
val value: BigInteger, | ||
val data: ByteArray, | ||
val accessList: List<AccessTuple> | ||
) { | ||
|
||
data class AccessTuple( | ||
val address: ByteArray, | ||
val storageKeys: List<ByteArray> | ||
) { | ||
override fun equals(other: Any?): Boolean { | ||
if (this === other) return true | ||
if (javaClass != other?.javaClass) return false | ||
|
||
other as AccessTuple | ||
|
||
if (!address.contentEquals(other.address)) return false | ||
if (storageKeys != other.storageKeys) return false | ||
|
||
return true | ||
} | ||
|
||
override fun hashCode(): Int { | ||
var result = address.contentHashCode() | ||
result = 31 * result + storageKeys.hashCode() | ||
return result | ||
} | ||
} | ||
|
||
override fun equals(other: Any?): Boolean { | ||
if (this === other) return true | ||
if (javaClass != other?.javaClass) return false | ||
|
||
other as TransactionL1RecoveredData | ||
|
||
if (type != other.type) return false | ||
if (nonce != other.nonce) return false | ||
if (maxPriorityFeePerGas != other.maxPriorityFeePerGas) return false | ||
if (maxFeePerGas != other.maxFeePerGas) return false | ||
if (gasLimit != other.gasLimit) return false | ||
if (!from.contentEquals(other.from)) return false | ||
if (!to.contentEquals(other.to)) return false | ||
if (value != other.value) return false | ||
if (!data.contentEquals(other.data)) return false | ||
if (accessList != other.accessList) return false | ||
|
||
return true | ||
} | ||
|
||
override fun hashCode(): Int { | ||
var result = type.hashCode() | ||
result = 31 * result + nonce.hashCode() | ||
result = 31 * result + maxPriorityFeePerGas.hashCode() | ||
result = 31 * result + maxFeePerGas.hashCode() | ||
result = 31 * result + gasLimit.hashCode() | ||
result = 31 * result + from.contentHashCode() | ||
result = 31 * result + to.contentHashCode() | ||
result = 31 * result + value.hashCode() | ||
result = 31 * result + data.contentHashCode() | ||
result = 31 * result + accessList.hashCode() | ||
return result | ||
} | ||
} |
This file contains hidden or 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,65 @@ | ||
import org.gradle.api.tasks.testing.logging.TestExceptionFormat | ||
import org.gradle.api.tasks.testing.logging.TestLogEvent | ||
|
||
plugins { | ||
id 'net.consensys.zkevm.kotlin-library-conventions' | ||
} | ||
|
||
group = 'build.linea.staterecover' | ||
|
||
dependencies { | ||
implementation(project(':jvm-libs:generic:extensions:futures')) | ||
implementation(project(':jvm-libs:generic:extensions:kotlin')) | ||
implementation(project(':jvm-libs:generic:extensions:tuweni')) | ||
implementation(project(':jvm-libs:generic:http-rest')) | ||
implementation(project(':jvm-libs:generic:json-rpc')) | ||
implementation(project(':jvm-libs:generic:vertx-helper')) | ||
implementation(project(':jvm-libs:linea:clients:linea-state-manager')) | ||
implementation(project(':jvm-libs:linea:core:domain-models')) | ||
implementation(project(':jvm-libs:linea:core:long-running-service')) | ||
implementation(project(':state-recover:appcore:clients-interfaces')) | ||
implementation("io.vertx:vertx-web-client:${libs.versions.vertx}") | ||
|
||
testImplementation "com.github.tomakehurst:wiremock-jre8:${libs.versions.wiremock.get()}" | ||
testImplementation "org.slf4j:slf4j-api:1.7.30" | ||
testImplementation "org.apache.logging.log4j:log4j-slf4j-impl:${libs.versions.log4j}" | ||
testImplementation "org.apache.logging.log4j:log4j-core:${libs.versions.log4j}" | ||
} | ||
|
||
sourceSets { | ||
integrationTest { | ||
kotlin { | ||
compileClasspath += sourceSets.main.output | ||
runtimeClasspath += sourceSets.main.output | ||
} | ||
compileClasspath += sourceSets.main.output + sourceSets.main.compileClasspath + sourceSets.test.compileClasspath | ||
runtimeClasspath += sourceSets.main.output + sourceSets.main.runtimeClasspath + sourceSets.test.runtimeClasspath | ||
} | ||
} | ||
|
||
task integrationTest(type: Test) { | ||
test -> | ||
description = "Runs integration tests." | ||
group = "verification" | ||
useJUnitPlatform() | ||
|
||
classpath = sourceSets.integrationTest.runtimeClasspath | ||
testClassesDirs = sourceSets.integrationTest.output.classesDirs | ||
|
||
dependsOn(":localStackComposeUp") | ||
dependsOn(rootProject.tasks.compileContracts) | ||
|
||
testLogging { | ||
events TestLogEvent.FAILED, | ||
TestLogEvent.SKIPPED, | ||
TestLogEvent.STANDARD_ERROR, | ||
TestLogEvent.STARTED, | ||
TestLogEvent.PASSED | ||
exceptionFormat TestExceptionFormat.FULL | ||
showCauses true | ||
showExceptions true | ||
showStackTraces true | ||
// set showStandardStreams if you need to see test logs | ||
showStandardStreams false | ||
} | ||
} |
56 changes: 56 additions & 0 deletions
56
...obscan-client/src/main/kotlin/build/linea/staterecover/clients/blobscan/BlobScanClient.kt
This file contains hidden or 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,56 @@ | ||
package build.linea.staterecover.clients.blobscan | ||
|
||
import build.linea.staterecover.clients.BlobFetcher | ||
import io.vertx.core.Vertx | ||
import io.vertx.core.json.JsonObject | ||
import io.vertx.ext.web.client.WebClient | ||
import io.vertx.ext.web.client.WebClientOptions | ||
import net.consensys.decodeHex | ||
import net.consensys.encodeHex | ||
import net.consensys.linea.jsonrpc.client.RequestRetryConfig | ||
import net.consensys.linea.vertx.setDefaultsFrom | ||
import org.apache.logging.log4j.LogManager | ||
import org.apache.logging.log4j.Logger | ||
import tech.pegasys.teku.infrastructure.async.SafeFuture | ||
import java.net.URI | ||
|
||
class BlobScanClient( | ||
private val restClient: RestClient<JsonObject>, | ||
private val log: Logger = LogManager.getLogger(BlobScanClient::class.java) | ||
) : BlobFetcher { | ||
fun getBlobById(id: String): SafeFuture<ByteArray> { | ||
return restClient | ||
.get("/blobs/$id") | ||
.thenApply { response -> | ||
if (response.statusCode == 200) { | ||
response.body!!.getString("data").decodeHex() | ||
} else { | ||
throw RuntimeException( | ||
"error fetching blobId=$id " + | ||
"errorMessage=${response.body?.getString("message") ?: ""}" | ||
) | ||
} | ||
} | ||
} | ||
|
||
override fun fetchBlobsByHash(blobVersionedHashes: List<ByteArray>): SafeFuture<List<ByteArray>> { | ||
return SafeFuture.collectAll(blobVersionedHashes.map { hash -> getBlobById(hash.encodeHex()) }.stream()) | ||
} | ||
|
||
companion object { | ||
fun create( | ||
vertx: Vertx, | ||
endpoint: URI, | ||
requestRetryConfig: RequestRetryConfig | ||
): BlobScanClient { | ||
val restClient = VertxRestClient( | ||
vertx = vertx, | ||
webClient = WebClient.create(vertx, WebClientOptions().setDefaultsFrom(endpoint)), | ||
responseParser = { it.toJsonObject() }, | ||
retryableErrorCodes = setOf(429, 503, 504), | ||
requestRetryConfig = requestRetryConfig | ||
) | ||
return BlobScanClient(restClient) | ||
} | ||
} | ||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.