mirror of
https://github.com/pezkuwichain/revive-differential-tests.git
synced 2026-06-14 02:51:06 +00:00
Allow resolution of base fee
This commit is contained in:
@@ -714,6 +714,12 @@ impl<'a, T: Platform> ResolverApi for BlockPinnedResolver<'a, T> {
|
|||||||
.await
|
.await
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async fn block_base_fee(&self, number: BlockNumberOrTag) -> anyhow::Result<u64> {
|
||||||
|
self.node
|
||||||
|
.block_base_fee(self.resolve_block_number_or_tag(number))
|
||||||
|
.await
|
||||||
|
}
|
||||||
|
|
||||||
async fn block_hash(
|
async fn block_hash(
|
||||||
&self,
|
&self,
|
||||||
number: BlockNumberOrTag,
|
number: BlockNumberOrTag,
|
||||||
|
|||||||
+39
-18
@@ -533,6 +533,7 @@ impl<T> CalldataToken<T> {
|
|||||||
const GAS_LIMIT_VARIABLE: &str = "$GAS_LIMIT";
|
const GAS_LIMIT_VARIABLE: &str = "$GAS_LIMIT";
|
||||||
const COINBASE_VARIABLE: &str = "$COINBASE";
|
const COINBASE_VARIABLE: &str = "$COINBASE";
|
||||||
const DIFFICULTY_VARIABLE: &str = "$DIFFICULTY";
|
const DIFFICULTY_VARIABLE: &str = "$DIFFICULTY";
|
||||||
|
const BLOCK_BASE_FEE_VARIABLE: &str = "$BASE_FEE";
|
||||||
const BLOCK_HASH_VARIABLE_PREFIX: &str = "$BLOCK_HASH";
|
const BLOCK_HASH_VARIABLE_PREFIX: &str = "$BLOCK_HASH";
|
||||||
const BLOCK_NUMBER_VARIABLE: &str = "$BLOCK_NUMBER";
|
const BLOCK_NUMBER_VARIABLE: &str = "$BLOCK_NUMBER";
|
||||||
const BLOCK_TIMESTAMP_VARIABLE: &str = "$BLOCK_TIMESTAMP";
|
const BLOCK_TIMESTAMP_VARIABLE: &str = "$BLOCK_TIMESTAMP";
|
||||||
@@ -601,6 +602,11 @@ impl<T: AsRef<str>> CalldataToken<T> {
|
|||||||
let block_difficulty =
|
let block_difficulty =
|
||||||
resolver.block_difficulty(BlockNumberOrTag::Latest).await?;
|
resolver.block_difficulty(BlockNumberOrTag::Latest).await?;
|
||||||
Ok(block_difficulty)
|
Ok(block_difficulty)
|
||||||
|
} else if item == Self::BLOCK_BASE_FEE_VARIABLE {
|
||||||
|
resolver
|
||||||
|
.block_base_fee(BlockNumberOrTag::Latest)
|
||||||
|
.await
|
||||||
|
.map(U256::from)
|
||||||
} else if item.starts_with(Self::BLOCK_HASH_VARIABLE_PREFIX) {
|
} else if item.starts_with(Self::BLOCK_HASH_VARIABLE_PREFIX) {
|
||||||
let offset: u64 = item
|
let offset: u64 = item
|
||||||
.split(':')
|
.split(':')
|
||||||
@@ -671,48 +677,43 @@ impl<'de> Deserialize<'de> for EtherValue {
|
|||||||
mod tests {
|
mod tests {
|
||||||
|
|
||||||
use super::*;
|
use super::*;
|
||||||
use alloy::json_abi::JsonAbi;
|
use alloy::{eips::BlockNumberOrTag, json_abi::JsonAbi};
|
||||||
use alloy_primitives::address;
|
use alloy_primitives::{BlockHash, BlockNumber, BlockTimestamp, ChainId, address};
|
||||||
use alloy_sol_types::SolValue;
|
use alloy_sol_types::SolValue;
|
||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
|
|
||||||
struct MockResolver;
|
struct MockResolver;
|
||||||
|
|
||||||
impl ResolverApi for MockResolver {
|
impl ResolverApi for MockResolver {
|
||||||
async fn chain_id(&self) -> anyhow::Result<alloy_primitives::ChainId> {
|
async fn chain_id(&self) -> anyhow::Result<ChainId> {
|
||||||
Ok(0x123)
|
Ok(0x123)
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn block_gas_limit(&self, _: alloy::eips::BlockNumberOrTag) -> anyhow::Result<u128> {
|
async fn block_gas_limit(&self, _: BlockNumberOrTag) -> anyhow::Result<u128> {
|
||||||
Ok(0x1234)
|
Ok(0x1234)
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn block_coinbase(
|
async fn block_coinbase(&self, _: BlockNumberOrTag) -> anyhow::Result<Address> {
|
||||||
&self,
|
|
||||||
_: alloy::eips::BlockNumberOrTag,
|
|
||||||
) -> anyhow::Result<Address> {
|
|
||||||
Ok(Address::ZERO)
|
Ok(Address::ZERO)
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn block_difficulty(&self, _: alloy::eips::BlockNumberOrTag) -> anyhow::Result<U256> {
|
async fn block_difficulty(&self, _: BlockNumberOrTag) -> anyhow::Result<U256> {
|
||||||
Ok(U256::from(0x12345u128))
|
Ok(U256::from(0x12345u128))
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn block_hash(
|
async fn block_base_fee(&self, _: BlockNumberOrTag) -> anyhow::Result<u64> {
|
||||||
&self,
|
Ok(0x100)
|
||||||
_: alloy::eips::BlockNumberOrTag,
|
}
|
||||||
) -> anyhow::Result<alloy_primitives::BlockHash> {
|
|
||||||
|
async fn block_hash(&self, _: BlockNumberOrTag) -> anyhow::Result<BlockHash> {
|
||||||
Ok([0xEE; 32].into())
|
Ok([0xEE; 32].into())
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn block_timestamp(
|
async fn block_timestamp(&self, _: BlockNumberOrTag) -> anyhow::Result<BlockTimestamp> {
|
||||||
&self,
|
|
||||||
_: alloy::eips::BlockNumberOrTag,
|
|
||||||
) -> anyhow::Result<alloy_primitives::BlockTimestamp> {
|
|
||||||
Ok(0x123456)
|
Ok(0x123456)
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn last_block_number(&self) -> anyhow::Result<alloy_primitives::BlockNumber> {
|
async fn last_block_number(&self) -> anyhow::Result<BlockNumber> {
|
||||||
Ok(0x1234567)
|
Ok(0x1234567)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -945,6 +946,26 @@ mod tests {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn resolver_can_resolve_block_base_fee_variable() {
|
||||||
|
// Arrange
|
||||||
|
let input = "$BASE_FEE";
|
||||||
|
|
||||||
|
// Act
|
||||||
|
let resolved = resolve_calldata_item(input, &Default::default(), &MockResolver).await;
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
let resolved = resolved.expect("Failed to resolve argument");
|
||||||
|
assert_eq!(
|
||||||
|
resolved,
|
||||||
|
MockResolver
|
||||||
|
.block_base_fee(Default::default())
|
||||||
|
.await
|
||||||
|
.map(U256::from)
|
||||||
|
.unwrap()
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
#[tokio::test]
|
#[tokio::test]
|
||||||
async fn resolver_can_resolve_block_hash_variable() {
|
async fn resolver_can_resolve_block_hash_variable() {
|
||||||
// Arrange
|
// Arrange
|
||||||
|
|||||||
@@ -19,6 +19,9 @@ pub trait ResolverApi {
|
|||||||
/// Returns the difficulty of the specified block.
|
/// Returns the difficulty of the specified block.
|
||||||
fn block_difficulty(&self, number: BlockNumberOrTag) -> impl Future<Output = Result<U256>>;
|
fn block_difficulty(&self, number: BlockNumberOrTag) -> impl Future<Output = Result<U256>>;
|
||||||
|
|
||||||
|
/// Returns the base fee of the specified block.
|
||||||
|
fn block_base_fee(&self, number: BlockNumberOrTag) -> impl Future<Output = Result<u64>>;
|
||||||
|
|
||||||
/// Returns the hash of the specified block.
|
/// Returns the hash of the specified block.
|
||||||
fn block_hash(&self, number: BlockNumberOrTag) -> impl Future<Output = Result<BlockHash>>;
|
fn block_hash(&self, number: BlockNumberOrTag) -> impl Future<Output = Result<BlockHash>>;
|
||||||
|
|
||||||
|
|||||||
@@ -29,6 +29,7 @@ use alloy::{
|
|||||||
},
|
},
|
||||||
signers::local::PrivateKeySigner,
|
signers::local::PrivateKeySigner,
|
||||||
};
|
};
|
||||||
|
use anyhow::Context;
|
||||||
use tracing::{Instrument, Level};
|
use tracing::{Instrument, Level};
|
||||||
|
|
||||||
use revive_dt_common::{fs::clear_directory, futures::poll};
|
use revive_dt_common::{fs::clear_directory, futures::poll};
|
||||||
@@ -412,6 +413,21 @@ impl ResolverApi for GethNode {
|
|||||||
.map(|block| block.header.difficulty)
|
.map(|block| block.header.difficulty)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[tracing::instrument(skip_all, fields(geth_node_id = self.id))]
|
||||||
|
async fn block_base_fee(&self, number: BlockNumberOrTag) -> anyhow::Result<u64> {
|
||||||
|
self.provider()
|
||||||
|
.await?
|
||||||
|
.get_block_by_number(number)
|
||||||
|
.await?
|
||||||
|
.ok_or(anyhow::Error::msg("Blockchain has no blocks"))
|
||||||
|
.and_then(|block| {
|
||||||
|
block
|
||||||
|
.header
|
||||||
|
.base_fee_per_gas
|
||||||
|
.context("Failed to get the base fee per gas")
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
#[tracing::instrument(skip_all, fields(geth_node_id = self.id))]
|
#[tracing::instrument(skip_all, fields(geth_node_id = self.id))]
|
||||||
async fn block_hash(&self, number: BlockNumberOrTag) -> anyhow::Result<BlockHash> {
|
async fn block_hash(&self, number: BlockNumberOrTag) -> anyhow::Result<BlockHash> {
|
||||||
self.provider()
|
self.provider()
|
||||||
|
|||||||
@@ -30,6 +30,7 @@ use alloy::{
|
|||||||
},
|
},
|
||||||
signers::local::PrivateKeySigner,
|
signers::local::PrivateKeySigner,
|
||||||
};
|
};
|
||||||
|
use anyhow::Context;
|
||||||
use revive_dt_common::fs::clear_directory;
|
use revive_dt_common::fs::clear_directory;
|
||||||
use revive_dt_format::traits::ResolverApi;
|
use revive_dt_format::traits::ResolverApi;
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
@@ -468,6 +469,21 @@ impl ResolverApi for KitchensinkNode {
|
|||||||
.map(|block| block.header.difficulty)
|
.map(|block| block.header.difficulty)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[tracing::instrument(skip_all, fields(kitchensink_node_id = self.id))]
|
||||||
|
async fn block_base_fee(&self, number: BlockNumberOrTag) -> anyhow::Result<u64> {
|
||||||
|
self.provider()
|
||||||
|
.await?
|
||||||
|
.get_block_by_number(number)
|
||||||
|
.await?
|
||||||
|
.ok_or(anyhow::Error::msg("Blockchain has no blocks"))
|
||||||
|
.and_then(|block| {
|
||||||
|
block
|
||||||
|
.header
|
||||||
|
.base_fee_per_gas
|
||||||
|
.context("Failed to get the base fee per gas")
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
#[tracing::instrument(skip_all, fields(kitchensink_node_id = self.id))]
|
#[tracing::instrument(skip_all, fields(kitchensink_node_id = self.id))]
|
||||||
async fn block_hash(&self, number: BlockNumberOrTag) -> anyhow::Result<BlockHash> {
|
async fn block_hash(&self, number: BlockNumberOrTag) -> anyhow::Result<BlockHash> {
|
||||||
self.provider()
|
self.provider()
|
||||||
|
|||||||
Reference in New Issue
Block a user