diff --git a/Cargo.lock b/Cargo.lock index 938794949b..76ec218949 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -105,13 +105,14 @@ dependencies = [ [[package]] name = "alloy-eip7702" -version = "0.2.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eeffd2590ce780ddfaa9d0ae340eb2b4e08627650c4676eef537cef0b4bf535d" +checksum = "c15873ee28dfe5a1aeddd762483bc7f378b465ec49bdce8165c4c46b4f55cb0a" dependencies = [ "alloy-primitives", "alloy-rlp", "arbitrary", + "derive_more 1.0.0", "k256", "rand", "serde", @@ -119,9 +120,9 @@ dependencies = [ [[package]] name = "alloy-eips" -version = "0.3.0" +version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "159eab0e4e15b88571f55673af37314f4b8f17630dc1b393c3d70f2128a1d494" +checksum = "f923dd5fca5f67a43d81ed3ebad0880bd41f6dd0ada930030353ac356c54cd0f" dependencies = [ "alloy-eip2930", "alloy-eip7702 0.1.0", @@ -129,6 +130,7 @@ dependencies = [ "alloy-rlp", "alloy-serde", "c-kzg", + "derive_more 1.0.0", "once_cell", "serde", "sha2", @@ -3222,7 +3224,7 @@ name = "revm-primitives" version = "12.0.0" dependencies = [ "alloy-eip2930", - "alloy-eip7702 0.2.0", + "alloy-eip7702 0.3.1", "alloy-primitives", "auto_impl", "bitflags 2.6.0", diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index 8e825a2638..40a8fe64cc 100644 --- a/crates/primitives/Cargo.toml +++ b/crates/primitives/Cargo.toml @@ -24,7 +24,7 @@ all = "warn" [dependencies] # alloy alloy-eip2930 = { version = "0.1", default-features = false } -alloy-eip7702 = { version = "0.2", default-features = false, features = [ +alloy-eip7702 = { version = "0.3", default-features = false, features = [ "k256", ] } alloy-primitives = { version = "0.8.8", default-features = false, features = [ diff --git a/crates/primitives/src/eip7702.rs b/crates/primitives/src/eip7702.rs index c75a0b977d..9571f086f1 100644 --- a/crates/primitives/src/eip7702.rs +++ b/crates/primitives/src/eip7702.rs @@ -1,9 +1,8 @@ pub mod authorization_list; pub mod bytecode; -use crate::U256; pub use authorization_list::{ - Authorization, AuthorizationList, InvalidAuthorization, RecoveredAuthorization, Signature, + Authorization, AuthorizationList, RecoveredAuthority, RecoveredAuthorization, Signature, SignedAuthorization, }; pub use bytecode::{ @@ -15,12 +14,3 @@ pub const PER_AUTH_BASE_COST: u64 = 12500; /// Cost of creating authorized account that was previously empty. pub const PER_EMPTY_ACCOUNT_COST: u64 = 25000; - -/// The order of the secp256k1 curve, divided by two. Signatures that should be checked according -/// to EIP-2 should have an S value less than or equal to this. -/// -/// `57896044618658097711785492504343953926418782139537452191302581570759080747168` -pub const SECP256K1N_HALF: U256 = U256::from_be_bytes([ - 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, - 0x5D, 0x57, 0x6E, 0x73, 0x57, 0xA4, 0x50, 0x1D, 0xDF, 0xE9, 0x2F, 0x46, 0x68, 0x1B, 0x20, 0xA0, -]); diff --git a/crates/primitives/src/eip7702/authorization_list.rs b/crates/primitives/src/eip7702/authorization_list.rs index 7304c1206f..e7d6dc4342 100644 --- a/crates/primitives/src/eip7702/authorization_list.rs +++ b/crates/primitives/src/eip7702/authorization_list.rs @@ -1,12 +1,10 @@ -pub use alloy_eip7702::{Authorization, SignedAuthorization}; +pub use alloy_eip7702::{ + Authorization, RecoveredAuthority, RecoveredAuthorization, SignedAuthorization, +}; pub use alloy_primitives::{Parity, Signature}; -use crate::Address; -use core::{fmt, ops::Deref}; use std::{boxed::Box, vec::Vec}; -use super::SECP256K1N_HALF; - /// Authorization list for EIP-7702 transaction type. #[derive(Clone, Debug, Eq, PartialEq)] #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] @@ -36,29 +34,6 @@ impl AuthorizationList { } } - /// Validate the authorization list. - pub fn is_valid(&self) -> Result<(), InvalidAuthorization> { - let validate = |auth: &SignedAuthorization| -> Result<(), InvalidAuthorization> { - // Check y_parity - if let Parity::Eip155(parity) = auth.signature().v() { - if parity > u8::MAX as u64 { - return Err(InvalidAuthorization::InvalidYParity); - } - } - Ok(()) - }; - - match self { - Self::Signed(signed) => signed.iter().try_for_each(validate)?, - Self::Recovered(recovered) => recovered - .iter() - .map(|recovered| &recovered.inner) - .try_for_each(validate)?, - }; - - Ok(()) - } - /// Return empty authorization list. pub fn empty() -> Self { Self::Recovered(Vec::new()) @@ -85,76 +60,3 @@ impl AuthorizationList { Self::Recovered(signed.into_iter().map(|signed| signed.into()).collect()) } } - -/// A recovered authorization. -#[derive(Debug, Clone, Hash, Eq, PartialEq)] -#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] -pub struct RecoveredAuthorization { - #[cfg_attr(feature = "serde", serde(flatten))] - inner: SignedAuthorization, - authority: Option
, -} - -impl RecoveredAuthorization { - /// Instantiate without performing recovery. This should be used carefully. - pub const fn new_unchecked(inner: SignedAuthorization, authority: Option
) -> Self { - Self { inner, authority } - } - - /// Get the `authority` for the authorization. - /// - /// If this is `None`, then the authority could not be recovered. - pub fn authority(&self) -> Option
{ - let signature = self.inner.signature(); - - // Check s-value - if signature.s() > SECP256K1N_HALF { - return None; - } - - // Check y_parity, Parity::Parity means that it was 0 or 1. - if !matches!(signature.v(), Parity::Parity(_)) { - return None; - } - self.authority - } - - /// Splits the authorization into parts. - pub const fn into_parts(self) -> (SignedAuthorization, Option
) { - (self.inner, self.authority) - } -} - -impl From for RecoveredAuthorization { - fn from(signed_auth: SignedAuthorization) -> Self { - let authority = signed_auth.recover_authority().ok(); - Self::new_unchecked(signed_auth, authority) - } -} - -impl Deref for RecoveredAuthorization { - type Target = Authorization; - - fn deref(&self) -> &Self::Target { - &self.inner - } -} - -#[derive(Debug, Clone, PartialEq, Eq, Hash)] -#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] -pub enum InvalidAuthorization { - InvalidChainId, - InvalidYParity, - Eip2InvalidSValue, -} - -impl fmt::Display for InvalidAuthorization { - fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - let s = match self { - Self::InvalidChainId => "Invalid chain_id, Expect chain's ID or zero", - Self::InvalidYParity => "Invalid y_parity, Expect 0 or 1.", - Self::Eip2InvalidSValue => "Invalid signature s-value.", - }; - f.write_str(s) - } -} diff --git a/crates/primitives/src/env.rs b/crates/primitives/src/env.rs index e3f79411ba..e0d856df98 100644 --- a/crates/primitives/src/env.rs +++ b/crates/primitives/src/env.rs @@ -202,9 +202,6 @@ impl Env { return Err(InvalidTransaction::EmptyAuthorizationList); } - // Validate the authorization item signature `v` to be less than u8::MAX. - auth_list.is_valid()?; - // Check if other fields are unset. if self.tx.max_fee_per_blob_gas.is_some() || !self.tx.blob_hashes.is_empty() { return Err(InvalidTransaction::AuthorizationListInvalidFields); diff --git a/crates/primitives/src/lib.rs b/crates/primitives/src/lib.rs index 82b5411372..137c3f1989 100644 --- a/crates/primitives/src/lib.rs +++ b/crates/primitives/src/lib.rs @@ -30,7 +30,7 @@ pub use bitvec; pub use bytecode::*; pub use constants::*; pub use eip7702::{ - Authorization, AuthorizationList, Eip7702Bytecode, Eip7702DecodeError, InvalidAuthorization, + Authorization, AuthorizationList, Eip7702Bytecode, Eip7702DecodeError, RecoveredAuthority, RecoveredAuthorization, Signature, SignedAuthorization, EIP7702_MAGIC, EIP7702_MAGIC_BYTES, }; pub use env::*; diff --git a/crates/primitives/src/result.rs b/crates/primitives/src/result.rs index f33193fccc..0649c8d620 100644 --- a/crates/primitives/src/result.rs +++ b/crates/primitives/src/result.rs @@ -1,6 +1,4 @@ -use crate::{ - eip7702::authorization_list::InvalidAuthorization, Address, Bytes, EvmState, Log, U256, -}; +use crate::{Address, Bytes, EvmState, Log, U256}; use core::fmt; use std::{boxed::Box, string::String, vec::Vec}; @@ -315,19 +313,11 @@ pub enum InvalidTransaction { AuthorizationListInvalidFields, /// Empty Authorization List is not allowed. EmptyAuthorizationList, - /// Invalid EIP-7702 Authorization List - InvalidAuthorizationList(InvalidAuthorization), /// Optimism-specific transaction validation error. #[cfg(feature = "optimism")] OptimismError(OptimismInvalidTransaction), } -impl From for InvalidTransaction { - fn from(value: InvalidAuthorization) -> Self { - Self::InvalidAuthorizationList(value) - } -} - #[cfg(feature = "std")] impl std::error::Error for InvalidTransaction {} @@ -406,7 +396,6 @@ impl fmt::Display for InvalidTransaction { write!(f, "authorization list tx has invalid fields") } Self::EmptyAuthorizationList => write!(f, "empty authorization list"), - Self::InvalidAuthorizationList(i) => fmt::Display::fmt(i, f), #[cfg(feature = "optimism")] Self::OptimismError(op_error) => op_error.fmt(f), } diff --git a/crates/revm/Cargo.toml b/crates/revm/Cargo.toml index 8df3130ec3..3c67dd051c 100644 --- a/crates/revm/Cargo.toml +++ b/crates/revm/Cargo.toml @@ -50,7 +50,7 @@ ethers-core = { version = "2.0", optional = true } # alloydb alloy-provider = { version = "0.3", optional = true, default-features = false } -alloy-eips = { version = "0.3", optional = true, default-features = false } +alloy-eips = { version = "0.3.1", optional = true, default-features = false } alloy-transport = { version = "0.3", optional = true, default-features = false } [dev-dependencies] diff --git a/crates/revm/src/evm.rs b/crates/revm/src/evm.rs index ebbde1d764..b45f23b156 100644 --- a/crates/revm/src/evm.rs +++ b/crates/revm/src/evm.rs @@ -397,7 +397,9 @@ mod tests { use crate::{ db::BenchmarkDB, interpreter::opcode::{PUSH1, SSTORE}, - primitives::{address, Authorization, Bytecode, RecoveredAuthorization, Signature, U256}, + primitives::{ + address, Authorization, Bytecode, RecoveredAuthority, RecoveredAuthorization, U256, + }, }; #[test] @@ -418,9 +420,8 @@ mod tests { chain_id: 1, address: delegate, nonce: 0, - } - .into_signed(Signature::test_signature()), - Some(auth), + }, + RecoveredAuthority::Valid(auth), )] .into(), ); diff --git a/crates/revm/src/handler/mainnet/pre_execution.rs b/crates/revm/src/handler/mainnet/pre_execution.rs index 361db03464..5309618864 100644 --- a/crates/revm/src/handler/mainnet/pre_execution.rs +++ b/crates/revm/src/handler/mainnet/pre_execution.rs @@ -115,9 +115,8 @@ pub fn apply_eip7702_auth_list( let mut refunded_accounts = 0; for authorization in authorization_list.recovered_iter() { // 1. Verify the chain id is either 0 or the chain's current ID. - if !authorization.chain_id() == 0 - && authorization.chain_id() != context.evm.inner.env.cfg.chain_id - { + let chain_id = authorization.chain_id(); + if chain_id != 0 && chain_id != context.evm.inner.env.cfg.chain_id { continue; } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1add/call_types.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1add/call_types.json index 66ec8653d6..0c7177197a 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1add/call_types.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1add/call_types.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1ADD precompile using different call types.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L204", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L204", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1ADD precompile using different call types.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L204", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L204", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1ADD precompile using different call types.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L204", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L204", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1add/gas.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1add/gas.json index 33b371fd27..81495b5210 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1add/gas.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1add/gas.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1ADD precompile gas requirements.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L170", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L170", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1ADD precompile gas requirements.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L170", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L170", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1add/invalid.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1add/invalid.json index 31ce10ac1f..e6c38d69e0 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1add/invalid.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1add/invalid.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -254,7 +254,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -319,7 +319,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -384,7 +384,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -449,7 +449,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -514,7 +514,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -579,7 +579,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -644,7 +644,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -709,7 +709,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -774,7 +774,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -839,7 +839,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -904,7 +904,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -969,7 +969,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1034,7 +1034,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1099,7 +1099,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1164,7 +1164,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1229,7 +1229,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1294,7 +1294,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1359,7 +1359,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1424,7 +1424,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1489,7 +1489,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1554,7 +1554,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1619,7 +1619,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1684,7 +1684,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1749,7 +1749,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L62", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1add/valid.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1add/valid.json index 833a367cc2..987aac7137 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1add/valid.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1add/valid.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -254,7 +254,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -319,7 +319,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -384,7 +384,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -449,7 +449,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -514,7 +514,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -579,7 +579,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -644,7 +644,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -709,7 +709,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -774,7 +774,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1add.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1msm/call_types.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1msm/call_types.json index e91c2777ed..ffdeaf961c 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1msm/call_types.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1msm/call_types.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile using different call types.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L121", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L121", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile using different call types.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L121", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L121", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile using different call types.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L121", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L121", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1msm/invalid.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1msm/invalid.json index 4a3e1c2cb0..52b7073350 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1msm/invalid.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1msm/invalid.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -254,7 +254,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -319,7 +319,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -384,7 +384,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -449,7 +449,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -514,7 +514,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -579,7 +579,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -644,7 +644,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -709,7 +709,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -774,7 +774,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -839,7 +839,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -904,7 +904,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -969,7 +969,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1034,7 +1034,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1msm/valid.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1msm/valid.json index 3b25b52b9c..54baf17322 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1msm/valid.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1msm/valid.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -254,7 +254,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -319,7 +319,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -384,7 +384,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -449,7 +449,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -514,7 +514,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -579,7 +579,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -644,7 +644,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -709,7 +709,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -774,7 +774,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -839,7 +839,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1msm.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1mul/call_types.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1mul/call_types.json index 34af3a3b50..6fab17a1ba 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1mul/call_types.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1mul/call_types.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MUL precompile using different call types.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L208", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L208", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MUL precompile using different call types.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L208", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L208", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MUL precompile using different call types.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L208", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L208", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1mul/gas.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1mul/gas.json index 978cbbaa08..dada624094 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1mul/gas.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1mul/gas.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MUL precompile gas requirements.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L174", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L174", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MUL precompile gas requirements.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L174", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L174", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1mul/invalid.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1mul/invalid.json index 7e65392930..4d15e31fb1 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1mul/invalid.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1mul/invalid.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -254,7 +254,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -319,7 +319,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -384,7 +384,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -449,7 +449,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -514,7 +514,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -579,7 +579,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -644,7 +644,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -709,7 +709,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -774,7 +774,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -839,7 +839,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -904,7 +904,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -969,7 +969,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1034,7 +1034,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1099,7 +1099,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1164,7 +1164,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1229,7 +1229,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1294,7 +1294,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1359,7 +1359,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1424,7 +1424,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L90", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1mul/valid.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1mul/valid.json index a748bc5fea..c23baeecd0 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1mul/valid.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g1mul/valid.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -254,7 +254,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -319,7 +319,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -384,7 +384,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -449,7 +449,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -514,7 +514,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -579,7 +579,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -644,7 +644,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -709,7 +709,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -774,7 +774,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -839,7 +839,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -904,7 +904,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -969,7 +969,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1034,7 +1034,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1099,7 +1099,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1164,7 +1164,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1229,7 +1229,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g1mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2add/call_types.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2add/call_types.json index 0eab75acf7..d6b808d0e6 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2add/call_types.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2add/call_types.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2ADD precompile using different call types.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L210", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L210", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2ADD precompile using different call types.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L210", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L210", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2ADD precompile using different call types.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L210", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L210", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2add/gas.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2add/gas.json index 64c27d260d..2e02a30440 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2add/gas.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2add/gas.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2ADD precompile gas requirements.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L176", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L176", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2ADD precompile gas requirements.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L176", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L176", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2add/invalid.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2add/invalid.json index d1c06c52b7..bd63a22dad 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2add/invalid.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2add/invalid.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -254,7 +254,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -319,7 +319,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -384,7 +384,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -449,7 +449,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -514,7 +514,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -579,7 +579,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -644,7 +644,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -709,7 +709,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -774,7 +774,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -839,7 +839,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -904,7 +904,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -969,7 +969,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1034,7 +1034,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1099,7 +1099,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1164,7 +1164,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1229,7 +1229,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1294,7 +1294,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1359,7 +1359,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1424,7 +1424,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1489,7 +1489,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1554,7 +1554,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1619,7 +1619,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1684,7 +1684,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1749,7 +1749,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1814,7 +1814,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1879,7 +1879,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1944,7 +1944,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -2009,7 +2009,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L52", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2add/valid.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2add/valid.json index c26c1c2d8e..e05eac1923 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2add/valid.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2add/valid.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -254,7 +254,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -319,7 +319,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -384,7 +384,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -449,7 +449,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -514,7 +514,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -579,7 +579,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -644,7 +644,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2ADD precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2add.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2msm/call_types.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2msm/call_types.json index 95072fc363..b26d65d431 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2msm/call_types.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2msm/call_types.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MSM precompile using different call types.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L111", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L111", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MSM precompile using different call types.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L111", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L111", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MSM precompile using different call types.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L111", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L111", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2msm/invalid.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2msm/invalid.json index 40e87de11b..30453aa960 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2msm/invalid.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2msm/invalid.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -254,7 +254,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -319,7 +319,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -384,7 +384,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -449,7 +449,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -514,7 +514,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -579,7 +579,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -644,7 +644,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -709,7 +709,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -774,7 +774,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -839,7 +839,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -904,7 +904,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -969,7 +969,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1034,7 +1034,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1099,7 +1099,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1164,7 +1164,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L42", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2msm/valid.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2msm/valid.json index d12b120dcd..05cb1895ee 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2msm/valid.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2msm/valid.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -254,7 +254,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -319,7 +319,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -384,7 +384,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -449,7 +449,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -514,7 +514,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -579,7 +579,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -644,7 +644,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -709,7 +709,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -774,7 +774,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MSM precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2msm.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2mul/call_types.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2mul/call_types.json index 1686024218..6ca4b8500c 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2mul/call_types.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2mul/call_types.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MUL using different call types.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L231", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L231", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MUL using different call types.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L231", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L231", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MUL using different call types.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L231", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L231", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2mul/gas.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2mul/gas.json index 53d397210a..8cf942b96e 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2mul/gas.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2mul/gas.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MUL precompile gas requirements.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L197", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L197", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MUL precompile gas requirements.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L197", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L197", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2mul/invalid.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2mul/invalid.json index 9be0e446b7..d1cf7cde15 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2mul/invalid.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2mul/invalid.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -254,7 +254,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -319,7 +319,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -384,7 +384,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -449,7 +449,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -514,7 +514,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -579,7 +579,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -644,7 +644,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -709,7 +709,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -774,7 +774,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -839,7 +839,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -904,7 +904,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -969,7 +969,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1034,7 +1034,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1099,7 +1099,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1164,7 +1164,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1229,7 +1229,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1294,7 +1294,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1359,7 +1359,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1424,7 +1424,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1489,7 +1489,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1554,7 +1554,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1619,7 +1619,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L101", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2mul/valid.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2mul/valid.json index 36b6f898bc..1f347e356a 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2mul/valid.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_g2mul/valid.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -254,7 +254,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -319,7 +319,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -384,7 +384,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -449,7 +449,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -514,7 +514,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -579,7 +579,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -644,7 +644,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -709,7 +709,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -774,7 +774,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -839,7 +839,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -904,7 +904,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -969,7 +969,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1034,7 +1034,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1099,7 +1099,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1164,7 +1164,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1229,7 +1229,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1294,7 +1294,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MUL precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_g2mul.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp2_to_g2/call_types.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp2_to_g2/call_types.json index 1a594dd3d0..1b88cd9e58 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp2_to_g2/call_types.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp2_to_g2/call_types.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_MAP_FP_TO_G2 precompile using different call types.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L145", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L145", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_MAP_FP_TO_G2 precompile using different call types.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L145", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L145", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_MAP_FP_TO_G2 precompile using different call types.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L145", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L145", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp2_to_g2/gas.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp2_to_g2/gas.json index 1dc3563500..9fad85f555 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp2_to_g2/gas.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp2_to_g2/gas.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_MAP_FP_TO_G2 precompile gas requirements.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L111", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L111", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_MAP_FP_TO_G2 precompile gas requirements.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L111", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L111", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp2_to_g2/invalid.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp2_to_g2/invalid.json index fcd36bf948..ac180d8e64 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp2_to_g2/invalid.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp2_to_g2/invalid.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_MAP_FP_TO_G2 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L78", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L78", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_MAP_FP_TO_G2 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L78", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L78", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_MAP_FP_TO_G2 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L78", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L78", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -254,7 +254,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_MAP_FP_TO_G2 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L78", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L78", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -319,7 +319,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_MAP_FP_TO_G2 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L78", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L78", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -384,7 +384,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_MAP_FP_TO_G2 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L78", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L78", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -449,7 +449,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_MAP_FP_TO_G2 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L78", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L78", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -514,7 +514,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_MAP_FP_TO_G2 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L78", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L78", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -579,7 +579,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_MAP_FP_TO_G2 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L78", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L78", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -644,7 +644,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_MAP_FP_TO_G2 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L78", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L78", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -709,7 +709,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_MAP_FP_TO_G2 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L78", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L78", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -774,7 +774,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_MAP_FP_TO_G2 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L78", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L78", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -839,7 +839,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_MAP_FP_TO_G2 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L78", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L78", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -904,7 +904,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_MAP_FP_TO_G2 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L78", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L78", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp2_to_g2/valid.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp2_to_g2/valid.json index f9af3c0e38..ad59a55424 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp2_to_g2/valid.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp2_to_g2/valid.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_MAP_FP2_TO_G2 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L36", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L36", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_MAP_FP2_TO_G2 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L36", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L36", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_MAP_FP2_TO_G2 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L36", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L36", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -254,7 +254,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_MAP_FP2_TO_G2 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L36", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L36", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -319,7 +319,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_MAP_FP2_TO_G2 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L36", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L36", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -384,7 +384,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_MAP_FP2_TO_G2 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L36", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L36", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -449,7 +449,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_MAP_FP2_TO_G2 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L36", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp2_to_g2.py#L36", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp_to_g1/call_types.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp_to_g1/call_types.json index 004ddfa0d1..70f92504ea 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp_to_g1/call_types.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp_to_g1/call_types.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_MAP_FP_TO_G1 precompile using different call types.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L131", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L131", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_MAP_FP_TO_G1 precompile using different call types.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L131", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L131", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_MAP_FP_TO_G1 precompile using different call types.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L131", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L131", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp_to_g1/gas.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp_to_g1/gas.json index 46be24f121..21ff3db129 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp_to_g1/gas.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp_to_g1/gas.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_MAP_FP_TO_G1 precompile gas requirements.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L97", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L97", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_MAP_FP_TO_G1 precompile gas requirements.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L97", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L97", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp_to_g1/invalid.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp_to_g1/invalid.json index 443a6c854d..4b251055ac 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp_to_g1/invalid.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp_to_g1/invalid.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_MAP_FP_TO_G1 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L66", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L66", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_MAP_FP_TO_G1 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L66", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L66", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_MAP_FP_TO_G1 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L66", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L66", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -254,7 +254,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_MAP_FP_TO_G1 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L66", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L66", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -319,7 +319,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_MAP_FP_TO_G1 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L66", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L66", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -384,7 +384,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_MAP_FP_TO_G1 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L66", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L66", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -449,7 +449,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_MAP_FP_TO_G1 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L66", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L66", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -514,7 +514,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_MAP_FP_TO_G1 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L66", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L66", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -579,7 +579,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_MAP_FP_TO_G1 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L66", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L66", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -644,7 +644,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_MAP_FP_TO_G1 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L66", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L66", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -709,7 +709,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_MAP_FP_TO_G1 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L66", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L66", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -774,7 +774,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_MAP_FP_TO_G1 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L66", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L66", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp_to_g1/valid.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp_to_g1/valid.json index 4d242e8cdf..47a9b2eaba 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp_to_g1/valid.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_map_fp_to_g1/valid.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_MAP_FP_TO_G1 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L30", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L30", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_MAP_FP_TO_G1 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L30", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L30", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_MAP_FP_TO_G1 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L30", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L30", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -254,7 +254,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_MAP_FP_TO_G1 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L30", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L30", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -319,7 +319,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_MAP_FP_TO_G1 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L30", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L30", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -384,7 +384,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_MAP_FP_TO_G1 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L30", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L30", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -449,7 +449,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_MAP_FP_TO_G1 precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L30", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_map_fp_to_g1.py#L30", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_pairing/call_types.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_pairing/call_types.json index 3fe66b8073..cb172bd8ad 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_pairing/call_types.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_pairing/call_types.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_PAIRING precompile using different call types.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L126", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L126", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_PAIRING precompile using different call types.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L126", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L126", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_PAIRING precompile using different call types.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L126", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L126", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_pairing/invalid.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_pairing/invalid.json index c2e2e01f55..47a375720a 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_pairing/invalid.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_pairing/invalid.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_PAIRING precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_PAIRING precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_PAIRING precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -254,7 +254,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_PAIRING precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -319,7 +319,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_PAIRING precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -384,7 +384,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_PAIRING precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -449,7 +449,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_PAIRING precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -514,7 +514,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_PAIRING precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -579,7 +579,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_PAIRING precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -644,7 +644,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_PAIRING precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -709,7 +709,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_PAIRING precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -774,7 +774,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_PAIRING precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -839,7 +839,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_PAIRING precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -904,7 +904,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_PAIRING precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -969,7 +969,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_PAIRING precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1034,7 +1034,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_PAIRING precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1099,7 +1099,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_PAIRING precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1164,7 +1164,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_PAIRING precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1229,7 +1229,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_PAIRING precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -1294,7 +1294,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Negative tests for the BLS12_PAIRING precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L57", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_pairing/valid.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_pairing/valid.json index 7d0161e0eb..d6a74037bc 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_pairing/valid.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_pairing/valid.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_PAIRING precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_PAIRING precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_PAIRING precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -254,7 +254,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_PAIRING precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -319,7 +319,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_PAIRING precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -384,7 +384,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_PAIRING precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -449,7 +449,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_PAIRING precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -514,7 +514,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_PAIRING precompile.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L24", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_pairing.py#L24", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_precompiles_before_fork/precompile_before_fork.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_precompiles_before_fork/precompile_before_fork.json index 8f2b6bb019..31ae810478 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_precompiles_before_fork/precompile_before_fork.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_precompiles_before_fork/precompile_before_fork.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test all BLS12 precompiles before the Prague hard fork is active.\n\n The call must succeed but the output must be empty.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_precompiles_before_fork.py#L19", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_precompiles_before_fork.py#L19", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test all BLS12 precompiles before the Prague hard fork is active.\n\n The call must succeed but the output must be empty.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_precompiles_before_fork.py#L19", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_precompiles_before_fork.py#L19", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test all BLS12 precompiles before the Prague hard fork is active.\n\n The call must succeed but the output must be empty.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_precompiles_before_fork.py#L19", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_precompiles_before_fork.py#L19", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -254,7 +254,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test all BLS12 precompiles before the Prague hard fork is active.\n\n The call must succeed but the output must be empty.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_precompiles_before_fork.py#L19", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_precompiles_before_fork.py#L19", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -319,7 +319,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test all BLS12 precompiles before the Prague hard fork is active.\n\n The call must succeed but the output must be empty.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_precompiles_before_fork.py#L19", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_precompiles_before_fork.py#L19", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -384,7 +384,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test all BLS12 precompiles before the Prague hard fork is active.\n\n The call must succeed but the output must be empty.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_precompiles_before_fork.py#L19", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_precompiles_before_fork.py#L19", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -449,7 +449,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test all BLS12 precompiles before the Prague hard fork is active.\n\n The call must succeed but the output must be empty.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_precompiles_before_fork.py#L19", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_precompiles_before_fork.py#L19", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -514,7 +514,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test all BLS12 precompiles before the Prague hard fork is active.\n\n The call must succeed but the output must be empty.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_precompiles_before_fork.py#L19", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_precompiles_before_fork.py#L19", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -579,7 +579,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test all BLS12 precompiles before the Prague hard fork is active.\n\n The call must succeed but the output must be empty.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_precompiles_before_fork.py#L19", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_precompiles_before_fork.py#L19", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/invalid_gas_g1msm.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/invalid_gas_g1msm.json index 88bd3a4315..6ccdd3b9e5 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/invalid_gas_g1msm.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/invalid_gas_g1msm.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM discount gas table in full, by expecting the call to fail for\n all possible input lengths because the appropriate amount of gas is not provided.\n\n If any of the calls succeeds, the test will fail.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L141", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L141", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM discount gas table in full, by expecting the call to fail for\n all possible input lengths because the appropriate amount of gas is not provided.\n\n If any of the calls succeeds, the test will fail.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L141", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L141", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/invalid_gas_g2msm.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/invalid_gas_g2msm.json index 1739ad88cc..2e85df43ed 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/invalid_gas_g2msm.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/invalid_gas_g2msm.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MSM discount gas table in full, by expecting the call to fail for\n all possible input lengths because the appropriate amount of gas is not provided.\n\n If any of the calls succeeds, the test will fail.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L266", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L266", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MSM discount gas table in full, by expecting the call to fail for\n all possible input lengths because the appropriate amount of gas is not provided.\n\n If any of the calls succeeds, the test will fail.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L266", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L266", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/invalid_gas_pairing.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/invalid_gas_pairing.json index 1a5a0d6723..ff4c7c29a0 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/invalid_gas_pairing.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/invalid_gas_pairing.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_PAIRING precompile, by expecting the call to fail for all possible input\n lengths (up to k == PAIRINGS_TO_TEST) because the appropriate amount of gas is not provided.\n\n If any of the calls succeeds, the test will fail.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L388", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L388", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_PAIRING precompile, by expecting the call to fail for all possible input\n lengths (up to k == PAIRINGS_TO_TEST) because the appropriate amount of gas is not provided.\n\n If any of the calls succeeds, the test will fail.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L388", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L388", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/invalid_length_g1msm.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/invalid_length_g1msm.json index 0ae44035c0..b9dcbeb33a 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/invalid_length_g1msm.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/invalid_length_g1msm.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM discount gas table in full, by expecting the call to fail for\n all possible input lengths provided because they are too long or short, or zero length.\n\n If any of the calls succeeds, the test will fail.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L182", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L182", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM discount gas table in full, by expecting the call to fail for\n all possible input lengths provided because they are too long or short, or zero length.\n\n If any of the calls succeeds, the test will fail.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L182", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L182", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM discount gas table in full, by expecting the call to fail for\n all possible input lengths provided because they are too long or short, or zero length.\n\n If any of the calls succeeds, the test will fail.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L182", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L182", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/invalid_length_g2msm.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/invalid_length_g2msm.json index 5dca054fd9..5437908184 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/invalid_length_g2msm.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/invalid_length_g2msm.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MSM discount gas table in full, by expecting the call to fail for\n all possible input lengths provided because they are too long or short, or zero length.\n\n If any of the calls succeeds, the test will fail.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L307", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L307", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MSM discount gas table in full, by expecting the call to fail for\n all possible input lengths provided because they are too long or short, or zero length.\n\n If any of the calls succeeds, the test will fail.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L307", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L307", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MSM discount gas table in full, by expecting the call to fail for\n all possible input lengths provided because they are too long or short, or zero length.\n\n If any of the calls succeeds, the test will fail.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L307", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L307", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/invalid_length_pairing.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/invalid_length_pairing.json index b818a528c2..3368b10ec1 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/invalid_length_pairing.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/invalid_length_pairing.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_PAIRING precompile, by expecting the call to fail for all possible input\n lengths (up to k == PAIRINGS_TO_TEST) because the incorrect input length was used.\n\n If any of the calls succeeds, the test will fail.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L426", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L426", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_PAIRING precompile, by expecting the call to fail for all possible input\n lengths (up to k == PAIRINGS_TO_TEST) because the incorrect input length was used.\n\n If any of the calls succeeds, the test will fail.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L426", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L426", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -189,7 +189,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_PAIRING precompile, by expecting the call to fail for all possible input\n lengths (up to k == PAIRINGS_TO_TEST) because the incorrect input length was used.\n\n If any of the calls succeeds, the test will fail.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L426", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L426", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/valid_gas_g1msm.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/valid_gas_g1msm.json index 8debb4b87d..11b95cc413 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/valid_gas_g1msm.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/valid_gas_g1msm.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM discount gas table in full, by expecting the call to succeed for\n all possible input lengths because the appropriate amount of gas is provided.\n\n If any of the calls fail, the test will fail.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L100", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L100", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G1MSM discount gas table in full, by expecting the call to succeed for\n all possible input lengths because the appropriate amount of gas is provided.\n\n If any of the calls fail, the test will fail.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L100", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L100", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/valid_gas_g2msm.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/valid_gas_g2msm.json index 8e0dcab3ec..c0b589886e 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/valid_gas_g2msm.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/valid_gas_g2msm.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MSM discount gas table in full, by expecting the call to succeed for\n all possible input lengths because the appropriate amount of gas is provided.\n\n If any of the calls fail, the test will fail.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L225", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L225", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_G2MSM discount gas table in full, by expecting the call to succeed for\n all possible input lengths because the appropriate amount of gas is provided.\n\n If any of the calls fail, the test will fail.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L225", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L225", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/valid_gas_pairing.json b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/valid_gas_pairing.json index e803332672..001d4ed90e 100644 --- a/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/valid_gas_pairing.json +++ b/tests/prague_suite/state_tests/prague/eip2537_bls_12_381_precompiles/bls12_variable_length_input_contracts/valid_gas_pairing.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_PAIRING precompile, by expecting the call to succeed for all possible input\n lengths (up to k == PAIRINGS_TO_TEST).\n\n If any of the calls fails, the test will fail.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L350", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L350", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } @@ -124,7 +124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the BLS12_PAIRING precompile, by expecting the call to succeed for all possible input\n lengths (up to k == PAIRINGS_TO_TEST).\n\n If any of the calls fails, the test will fail.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L350", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip2537_bls_12_381_precompiles/test_bls12_variable_length_input_contracts.py#L350", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2537.md", "reference-spec-version": "cd0f016ad0c4c68b8b1f5c502ef61ab9353b6e5e" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/gas/account_warming.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/gas/account_warming.json index ba9f26b6c7..acceef467e 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/gas/account_warming.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/gas/account_warming.json @@ -74,7 +74,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -154,7 +154,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -234,7 +234,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -314,7 +314,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -403,7 +403,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -492,7 +492,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -572,7 +572,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -652,7 +652,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -732,7 +732,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -812,7 +812,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -901,7 +901,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -990,7 +990,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1079,7 +1079,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1168,7 +1168,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1257,7 +1257,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1346,7 +1346,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1435,7 +1435,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1524,7 +1524,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1613,7 +1613,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1702,7 +1702,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1809,7 +1809,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1916,7 +1916,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -2002,7 +2002,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -2088,7 +2088,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -2174,7 +2174,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -2260,7 +2260,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -2347,7 +2347,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -2434,7 +2434,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -2521,7 +2521,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -2608,7 +2608,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -2701,7 +2701,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -2794,7 +2794,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -2880,7 +2880,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -2966,7 +2966,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -3052,7 +3052,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -3138,7 +3138,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -3233,7 +3233,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -3328,7 +3328,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -3408,7 +3408,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -3488,7 +3488,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -3577,7 +3577,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -3666,7 +3666,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -3752,7 +3752,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -3838,7 +3838,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -3933,7 +3933,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -4028,7 +4028,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -4129,7 +4129,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -4230,7 +4230,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -4325,7 +4325,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -4420,7 +4420,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -4494,7 +4494,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -4568,7 +4568,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -4636,7 +4636,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -4704,7 +4704,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test warming of the authority and authorized accounts for set-code transactions.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L783", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L783", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/gas/gas_cost.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/gas/gas_cost.json index 831e4d3d17..5a4055e24c 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/gas/gas_cost.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/gas/gas_cost.json @@ -74,7 +74,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test gas at the execution start of a set-code transaction in multiple scenarios.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L680", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L680", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -154,7 +154,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test gas at the execution start of a set-code transaction in multiple scenarios.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L680", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L680", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -243,7 +243,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test gas at the execution start of a set-code transaction in multiple scenarios.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L680", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L680", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -323,7 +323,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test gas at the execution start of a set-code transaction in multiple scenarios.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L680", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L680", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -403,7 +403,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test gas at the execution start of a set-code transaction in multiple scenarios.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L680", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L680", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -492,7 +492,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test gas at the execution start of a set-code transaction in multiple scenarios.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L680", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L680", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -581,7 +581,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test gas at the execution start of a set-code transaction in multiple scenarios.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L680", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L680", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -670,7 +670,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test gas at the execution start of a set-code transaction in multiple scenarios.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L680", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L680", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -759,7 +759,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test gas at the execution start of a set-code transaction in multiple scenarios.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L680", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L680", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -848,7 +848,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test gas at the execution start of a set-code transaction in multiple scenarios.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L680", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L680", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -955,7 +955,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test gas at the execution start of a set-code transaction in multiple scenarios.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L680", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L680", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1041,7 +1041,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test gas at the execution start of a set-code transaction in multiple scenarios.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L680", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L680", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1127,7 +1127,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test gas at the execution start of a set-code transaction in multiple scenarios.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L680", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L680", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1214,7 +1214,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test gas at the execution start of a set-code transaction in multiple scenarios.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L680", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L680", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1301,7 +1301,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test gas at the execution start of a set-code transaction in multiple scenarios.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L680", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L680", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1394,7 +1394,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test gas at the execution start of a set-code transaction in multiple scenarios.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L680", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L680", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1480,7 +1480,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test gas at the execution start of a set-code transaction in multiple scenarios.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L680", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L680", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1566,7 +1566,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test gas at the execution start of a set-code transaction in multiple scenarios.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L680", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L680", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1661,7 +1661,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test gas at the execution start of a set-code transaction in multiple scenarios.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L680", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L680", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1741,7 +1741,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test gas at the execution start of a set-code transaction in multiple scenarios.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L680", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L680", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1830,7 +1830,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test gas at the execution start of a set-code transaction in multiple scenarios.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L680", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L680", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1916,7 +1916,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test gas at the execution start of a set-code transaction in multiple scenarios.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L680", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L680", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -2011,7 +2011,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test gas at the execution start of a set-code transaction in multiple scenarios.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L680", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L680", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -2112,7 +2112,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test gas at the execution start of a set-code transaction in multiple scenarios.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L680", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L680", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -2207,7 +2207,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test gas at the execution start of a set-code transaction in multiple scenarios.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L680", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L680", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -2287,7 +2287,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test gas at the execution start of a set-code transaction in multiple scenarios.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L680", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L680", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -2367,7 +2367,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test gas at the execution start of a set-code transaction in multiple scenarios.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L680", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L680", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -47438,7 +47438,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test gas at the execution start of a set-code transaction in multiple scenarios.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L680", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L680", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -92509,7 +92509,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test gas at the execution start of a set-code transaction in multiple scenarios.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L680", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L680", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -137580,7 +137580,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test gas at the execution start of a set-code transaction in multiple scenarios.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L680", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L680", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/gas/intrinsic_gas_cost.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/gas/intrinsic_gas_cost.json index 5856a634bf..346a249717 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/gas/intrinsic_gas_cost.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/gas/intrinsic_gas_cost.json @@ -74,7 +74,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -154,7 +154,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -243,7 +243,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -323,7 +323,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -403,7 +403,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -492,7 +492,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -581,7 +581,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -670,7 +670,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -759,7 +759,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -848,7 +848,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -955,7 +955,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1041,7 +1041,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1127,7 +1127,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1214,7 +1214,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1301,7 +1301,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1394,7 +1394,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1480,7 +1480,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1566,7 +1566,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1661,7 +1661,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1741,7 +1741,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1830,7 +1830,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1916,7 +1916,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -2011,7 +2011,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -2112,7 +2112,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -2207,7 +2207,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -2287,7 +2287,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -2367,7 +2367,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -47438,7 +47438,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -92509,7 +92509,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -137580,7 +137580,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -137661,7 +137661,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -137742,7 +137742,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -137832,7 +137832,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -137913,7 +137913,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -137994,7 +137994,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -138084,7 +138084,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -138174,7 +138174,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -138264,7 +138264,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -138354,7 +138354,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -138444,7 +138444,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -138552,7 +138552,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -138639,7 +138639,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -138726,7 +138726,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -138814,7 +138814,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -138902,7 +138902,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -138996,7 +138996,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -139083,7 +139083,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -139170,7 +139170,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -139266,7 +139266,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -139347,7 +139347,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -139437,7 +139437,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -139524,7 +139524,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -139620,7 +139620,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -139722,7 +139722,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -139818,7 +139818,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -139899,7 +139899,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -139980,7 +139980,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -185052,7 +185052,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -230124,7 +230124,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -275196,7 +275196,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with the exact intrinsic gas required and also insufficient\n gas.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L929", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L929", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/gas/self_set_code_cost.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/gas/self_set_code_cost.json index 799e46dc2a..6a16bab150 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/gas/self_set_code_cost.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/gas/self_set_code_cost.json @@ -65,7 +65,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test set to code account access cost when it delegates to itself.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L983", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L983", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -145,7 +145,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test set to code account access cost when it delegates to itself.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_gas.py#L983", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_gas.py#L983", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/address_from_set_code.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/address_from_set_code.json index 28d9116c62..d6d5f6acb3 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/address_from_set_code.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/address_from_set_code.json @@ -74,7 +74,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the address opcode in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L716", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L716", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/call_into_chain_delegating_set_code.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/call_into_chain_delegating_set_code.json index 3208f4ebcd..97a2a75818 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/call_into_chain_delegating_set_code.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/call_into_chain_delegating_set_code.json @@ -83,7 +83,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test call into a set-code account that delegates to another set-code account.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L887", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L887", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -172,7 +172,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test call into a set-code account that delegates to another set-code account.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L887", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L887", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -261,7 +261,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test call into a set-code account that delegates to another set-code account.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L887", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L887", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -350,7 +350,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test call into a set-code account that delegates to another set-code account.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L887", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L887", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/call_into_self_delegating_set_code.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/call_into_self_delegating_set_code.json index e97ba33956..0ad06423e9 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/call_into_self_delegating_set_code.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/call_into_self_delegating_set_code.json @@ -74,7 +74,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test call into a set-code account that delegates to itself.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L835", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L835", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -154,7 +154,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test call into a set-code account that delegates to itself.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L835", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L835", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -234,7 +234,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test call into a set-code account that delegates to itself.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L835", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L835", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -314,7 +314,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test call into a set-code account that delegates to itself.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L835", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L835", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/delegation_clearing.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/delegation_clearing.json index dc7e2ae9ca..e19db451c0 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/delegation_clearing.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/delegation_clearing.json @@ -86,7 +86,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test clearing the delegation of an account under a variety of circumstances.\n\n Args:\n pre_set_delegation_code: The code to set on the account before clearing delegation, or None\n if the account should not have any code set.\n self_sponsored: Whether the delegation clearing transaction is self-sponsored.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2964", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2964", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -172,7 +172,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test clearing the delegation of an account under a variety of circumstances.\n\n Args:\n pre_set_delegation_code: The code to set on the account before clearing delegation, or None\n if the account should not have any code set.\n self_sponsored: Whether the delegation clearing transaction is self-sponsored.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2964", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2964", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -252,7 +252,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test clearing the delegation of an account under a variety of circumstances.\n\n Args:\n pre_set_delegation_code: The code to set on the account before clearing delegation, or None\n if the account should not have any code set.\n self_sponsored: Whether the delegation clearing transaction is self-sponsored.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2964", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2964", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -332,7 +332,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test clearing the delegation of an account under a variety of circumstances.\n\n Args:\n pre_set_delegation_code: The code to set on the account before clearing delegation, or None\n if the account should not have any code set.\n self_sponsored: Whether the delegation clearing transaction is self-sponsored.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2964", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2964", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/delegation_clearing_failing_tx.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/delegation_clearing_failing_tx.json index 319e3079c5..ec61f21a5e 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/delegation_clearing_failing_tx.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/delegation_clearing_failing_tx.json @@ -86,7 +86,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test clearing the delegation of an account in a transaction that fails, OOGs or reverts.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L3055", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L3055", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -178,7 +178,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test clearing the delegation of an account in a transaction that fails, OOGs or reverts.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L3055", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L3055", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -270,7 +270,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test clearing the delegation of an account in a transaction that fails, OOGs or reverts.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L3055", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L3055", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/deploying_delegation_designation_contract.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/deploying_delegation_designation_contract.json index 2a08e7c532..382125737c 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/deploying_delegation_designation_contract.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/deploying_delegation_designation_contract.json @@ -59,7 +59,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test attempting to deploy a contract that has the same format as a delegation designation.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L3106", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L3106", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/ext_code_on_chain_delegating_set_code.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/ext_code_on_chain_delegating_set_code.json index de10329d10..96c08ba779 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/ext_code_on_chain_delegating_set_code.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/ext_code_on_chain_delegating_set_code.json @@ -89,7 +89,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test different ext*code operations on a set-code address that references another delegated\n address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1327", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1327", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/ext_code_on_self_delegating_set_code.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/ext_code_on_self_delegating_set_code.json index 7fc3bf79be..780759eea4 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/ext_code_on_self_delegating_set_code.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/ext_code_on_self_delegating_set_code.json @@ -74,7 +74,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test different ext*code operations on a set-code address that delegates to itself.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1262", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1262", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -160,7 +160,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test different ext*code operations on a set-code address that delegates to itself.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1262", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1262", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/ext_code_on_self_set_code.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/ext_code_on_self_set_code.json index f87c0ce01d..edcf56877f 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/ext_code_on_self_set_code.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/ext_code_on_self_set_code.json @@ -74,7 +74,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test different ext*code operations on self set-code address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1042", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1042", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -160,7 +160,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test different ext*code operations on self set-code address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1042", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1042", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/ext_code_on_set_code.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/ext_code_on_set_code.json index ddd8c52372..1503e711c9 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/ext_code_on_set_code.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/ext_code_on_set_code.json @@ -74,7 +74,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test different ext*code operations on a set-code address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L946", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L946", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -160,7 +160,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test different ext*code operations on a set-code address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L946", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L946", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -246,7 +246,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test different ext*code operations on a set-code address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L946", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L946", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -338,7 +338,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test different ext*code operations on a set-code address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L946", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L946", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -424,7 +424,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test different ext*code operations on a set-code address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L946", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L946", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -516,7 +516,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test different ext*code operations on a set-code address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L946", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L946", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -602,7 +602,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test different ext*code operations on a set-code address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L946", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L946", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -694,7 +694,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test different ext*code operations on a set-code address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L946", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L946", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/nonce_overflow_after_first_authorization.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/nonce_overflow_after_first_authorization.json index 6512763800..8c8b337c9f 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/nonce_overflow_after_first_authorization.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/nonce_overflow_after_first_authorization.json @@ -101,7 +101,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with two authorization where the first one bumps the nonce\n to 2**64-1 and the second would result in overflow.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2448", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2448", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/self_code_on_set_code.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/self_code_on_set_code.json index d63119a286..6ec1ae1824 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/self_code_on_set_code.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/self_code_on_set_code.json @@ -74,7 +74,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test codesize and codecopy operations on a set-code address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1422", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1422", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -160,7 +160,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test codesize and codecopy operations on a set-code address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1422", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1422", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/self_sponsored_set_code.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/self_sponsored_set_code.json index 458b6d1659..09dbc32e25 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/self_sponsored_set_code.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/self_sponsored_set_code.json @@ -74,7 +74,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a self-sponsored set-code transaction.\n\n The transaction is sent to the sender, and the sender is the signer of the only authorization\n tuple in the authorization list.\n\n The authorization tuple has a nonce of 1 because the self-sponsored transaction increases the\n nonce of the sender from zero to one first.\n\n The expected nonce at the end of the transaction is 2.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L63", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L63", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -154,7 +154,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a self-sponsored set-code transaction.\n\n The transaction is sent to the sender, and the sender is the signer of the only authorization\n tuple in the authorization list.\n\n The authorization tuple has a nonce of 1 because the self-sponsored transaction increases the\n nonce of the sender from zero to one first.\n\n The expected nonce at the end of the transaction is 2.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L63", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L63", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -234,7 +234,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a self-sponsored set-code transaction.\n\n The transaction is sent to the sender, and the sender is the signer of the only authorization\n tuple in the authorization list.\n\n The authorization tuple has a nonce of 1 because the self-sponsored transaction increases the\n nonce of the sender from zero to one first.\n\n The expected nonce at the end of the transaction is 2.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L63", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L63", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -314,7 +314,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a self-sponsored set-code transaction.\n\n The transaction is sent to the sender, and the sender is the signer of the only authorization\n tuple in the authorization list.\n\n The authorization tuple has a nonce of 1 because the self-sponsored transaction increases the\n nonce of the sender from zero to one first.\n\n The expected nonce at the end of the transaction is 2.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L63", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L63", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -394,7 +394,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a self-sponsored set-code transaction.\n\n The transaction is sent to the sender, and the sender is the signer of the only authorization\n tuple in the authorization list.\n\n The authorization tuple has a nonce of 1 because the self-sponsored transaction increases the\n nonce of the sender from zero to one first.\n\n The expected nonce at the end of the transaction is 2.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L63", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L63", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -474,7 +474,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a self-sponsored set-code transaction.\n\n The transaction is sent to the sender, and the sender is the signer of the only authorization\n tuple in the authorization list.\n\n The authorization tuple has a nonce of 1 because the self-sponsored transaction increases the\n nonce of the sender from zero to one first.\n\n The expected nonce at the end of the transaction is 2.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L63", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L63", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -554,7 +554,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a self-sponsored set-code transaction.\n\n The transaction is sent to the sender, and the sender is the signer of the only authorization\n tuple in the authorization list.\n\n The authorization tuple has a nonce of 1 because the self-sponsored transaction increases the\n nonce of the sender from zero to one first.\n\n The expected nonce at the end of the transaction is 2.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L63", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L63", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -634,7 +634,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a self-sponsored set-code transaction.\n\n The transaction is sent to the sender, and the sender is the signer of the only authorization\n tuple in the authorization list.\n\n The authorization tuple has a nonce of 1 because the self-sponsored transaction increases the\n nonce of the sender from zero to one first.\n\n The expected nonce at the end of the transaction is 2.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L63", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L63", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -714,7 +714,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a self-sponsored set-code transaction.\n\n The transaction is sent to the sender, and the sender is the signer of the only authorization\n tuple in the authorization list.\n\n The authorization tuple has a nonce of 1 because the self-sponsored transaction increases the\n nonce of the sender from zero to one first.\n\n The expected nonce at the end of the transaction is 2.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L63", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L63", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -794,7 +794,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a self-sponsored set-code transaction.\n\n The transaction is sent to the sender, and the sender is the signer of the only authorization\n tuple in the authorization list.\n\n The authorization tuple has a nonce of 1 because the self-sponsored transaction increases the\n nonce of the sender from zero to one first.\n\n The expected nonce at the end of the transaction is 2.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L63", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L63", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_address_and_authority_warm_state.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_address_and_authority_warm_state.json index 95dc5ef5e5..9e99761ccd 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_address_and_authority_warm_state.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_address_and_authority_warm_state.json @@ -80,7 +80,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test set to code address and authority warm status after a call to\n authority address, or viceversa.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1101", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1101", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -166,7 +166,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test set to code address and authority warm status after a call to\n authority address, or viceversa.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1101", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1101", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_address_and_authority_warm_state_call_types.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_address_and_authority_warm_state_call_types.json index b3aba00346..6479ae63f2 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_address_and_authority_warm_state_call_types.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_address_and_authority_warm_state_call_types.json @@ -80,7 +80,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test set to code address and authority warm status after a call to\n authority address, or viceversa, using all available call opcodes\n without using `GAS` opcode (unavailable in EOF).", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1189", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1189", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -166,7 +166,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test set to code address and authority warm status after a call to\n authority address, or viceversa, using all available call opcodes\n without using `GAS` opcode (unavailable in EOF).", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1189", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1189", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -252,7 +252,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test set to code address and authority warm status after a call to\n authority address, or viceversa, using all available call opcodes\n without using `GAS` opcode (unavailable in EOF).", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1189", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1189", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -338,7 +338,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test set to code address and authority warm status after a call to\n authority address, or viceversa, using all available call opcodes\n without using `GAS` opcode (unavailable in EOF).", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1189", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1189", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -424,7 +424,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test set to code address and authority warm status after a call to\n authority address, or viceversa, using all available call opcodes\n without using `GAS` opcode (unavailable in EOF).", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1189", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1189", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -510,7 +510,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test set to code address and authority warm status after a call to\n authority address, or viceversa, using all available call opcodes\n without using `GAS` opcode (unavailable in EOF).", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1189", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1189", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -596,7 +596,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test set to code address and authority warm status after a call to\n authority address, or viceversa, using all available call opcodes\n without using `GAS` opcode (unavailable in EOF).", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1189", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1189", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -682,7 +682,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test set to code address and authority warm status after a call to\n authority address, or viceversa, using all available call opcodes\n without using `GAS` opcode (unavailable in EOF).", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1189", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1189", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_all_invalid_authorization_tuples.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_all_invalid_authorization_tuples.json index 23d6267a2a..40b62fac87 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_all_invalid_authorization_tuples.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_all_invalid_authorization_tuples.json @@ -209,7 +209,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account with multiple authorization tuples from the same signer\n and all of them are invalid.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1894", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1894", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_call_set_code.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_call_set_code.json index 895c769958..fff8ebc805 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_call_set_code.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_call_set_code.json @@ -89,7 +89,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the calling a set-code account from another set-code account.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L630", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L630", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -184,7 +184,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the calling a set-code account from another set-code account.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L630", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L630", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -279,7 +279,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the calling a set-code account from another set-code account.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L630", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L630", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -374,7 +374,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the calling a set-code account from another set-code account.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L630", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L630", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -469,7 +469,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the calling a set-code account from another set-code account.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L630", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L630", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -564,7 +564,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the calling a set-code account from another set-code account.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L630", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L630", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -659,7 +659,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the calling a set-code account from another set-code account.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L630", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L630", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -754,7 +754,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the calling a set-code account from another set-code account.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L630", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L630", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_invalid_authorization_tuple.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_invalid_authorization_tuple.json index 4ce7661357..b3179230a9 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_invalid_authorization_tuple.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_invalid_authorization_tuple.json @@ -74,7 +74,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test attempting to set the code of an account with invalid authorization tuple.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1945", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1945", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -154,7 +154,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test attempting to set the code of an account with invalid authorization tuple.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1945", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1945", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -225,7 +225,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test attempting to set the code of an account with invalid authorization tuple.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1945", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1945", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_multiple_first_valid_authorization_tuples_same_signer.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_multiple_first_valid_authorization_tuples_same_signer.json index 89b82922b3..3766c34e0c 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_multiple_first_valid_authorization_tuples_same_signer.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_multiple_first_valid_authorization_tuples_same_signer.json @@ -209,7 +209,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account with multiple authorization tuples from the same signer.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1706", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1706", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_multiple_valid_authorization_tuples_first_invalid_same_signer.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_multiple_valid_authorization_tuples_first_invalid_same_signer.json index de2b49cbeb..54e1be79f2 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_multiple_valid_authorization_tuples_first_invalid_same_signer.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_multiple_valid_authorization_tuples_first_invalid_same_signer.json @@ -209,7 +209,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account with multiple authorization tuples from the same signer\n but the first tuple is invalid.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1847", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1847", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_multiple_valid_authorization_tuples_same_signer_increasing_nonce.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_multiple_valid_authorization_tuples_same_signer_increasing_nonce.json index e7337638c6..339da753b8 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_multiple_valid_authorization_tuples_same_signer_increasing_nonce.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_multiple_valid_authorization_tuples_same_signer_increasing_nonce.json @@ -209,7 +209,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account with multiple authorization tuples from the same signer\n and each authorization tuple has an increasing nonce, therefore the last tuple is executed.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1752", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1752", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_multiple_valid_authorization_tuples_same_signer_increasing_nonce_self_sponsored.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_multiple_valid_authorization_tuples_same_signer_increasing_nonce_self_sponsored.json index a9c1085fe9..d26725dbea 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_multiple_valid_authorization_tuples_same_signer_increasing_nonce_self_sponsored.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_multiple_valid_authorization_tuples_same_signer_increasing_nonce_self_sponsored.json @@ -209,7 +209,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account with multiple authorization tuples from the same signer\n and each authorization tuple has an increasing nonce, therefore the last tuple is executed,\n and the transaction is self-sponsored.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1799", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1799", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_account_deployed_in_same_tx.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_account_deployed_in_same_tx.json index 7c51526a22..c8d5a818ab 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_account_deployed_in_same_tx.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_account_deployed_in_same_tx.json @@ -74,7 +74,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to an address that is deployed in the same transaction,\n and test calling the set-code address and the deployed contract.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1484", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1484", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -154,7 +154,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to an address that is deployed in the same transaction,\n and test calling the set-code address and the deployed contract.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1484", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1484", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_contract_creator.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_contract_creator.json index b2df7605d9..c763d3099a 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_contract_creator.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_contract_creator.json @@ -74,7 +74,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a contract-creating opcode in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L475", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L475", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -154,7 +154,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a contract-creating opcode in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L475", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L475", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_log.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_log.json index 984bf67d9b..6348da4b1a 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_log.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_log.json @@ -74,7 +74,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to a contract that performs the log operation.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2514", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2514", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -154,7 +154,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to a contract that performs the log operation.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2514", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2514", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -234,7 +234,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to a contract that performs the log operation.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2514", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2514", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -314,7 +314,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to a contract that performs the log operation.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2514", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2514", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -394,7 +394,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to a contract that performs the log operation.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2514", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2514", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_precompile.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_precompile.json index 7eedd99604..5933f27efa 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_precompile.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_precompile.json @@ -74,7 +74,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to a pre-compile address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -154,7 +154,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to a pre-compile address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -234,7 +234,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to a pre-compile address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -314,7 +314,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to a pre-compile address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -394,7 +394,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to a pre-compile address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -474,7 +474,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to a pre-compile address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -554,7 +554,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to a pre-compile address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -634,7 +634,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to a pre-compile address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -714,7 +714,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to a pre-compile address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -794,7 +794,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to a pre-compile address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -874,7 +874,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to a pre-compile address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -954,7 +954,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to a pre-compile address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1034,7 +1034,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to a pre-compile address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1114,7 +1114,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to a pre-compile address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1194,7 +1194,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to a pre-compile address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1274,7 +1274,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to a pre-compile address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1354,7 +1354,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to a pre-compile address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1434,7 +1434,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to a pre-compile address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1514,7 +1514,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to a pre-compile address.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2569", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_self_caller.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_self_caller.json index e4ee275f47..887eb01de3 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_self_caller.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_self_caller.json @@ -74,7 +74,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a self-call in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L565", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L565", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -154,7 +154,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a self-call in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L565", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L565", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -234,7 +234,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a self-call in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L565", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L565", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -314,7 +314,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a self-call in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L565", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L565", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -394,7 +394,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a self-call in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L565", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L565", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -474,7 +474,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a self-call in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L565", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L565", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -554,7 +554,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a self-call in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L565", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L565", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -634,7 +634,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a self-call in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L565", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L565", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_self_destruct.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_self_destruct.json index b9fd2231e6..bbee7ed0d8 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_self_destruct.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_self_destruct.json @@ -74,7 +74,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing self-destruct opcode in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L416", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L416", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -154,7 +154,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing self-destruct opcode in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L416", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L416", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -240,7 +240,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing self-destruct opcode in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L416", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L416", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -326,7 +326,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing self-destruct opcode in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L416", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L416", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_self_destructing_account_deployed_in_same_tx.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_self_destructing_account_deployed_in_same_tx.json index 0e03c2b818..8e8c543756 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_self_destructing_account_deployed_in_same_tx.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_self_destructing_account_deployed_in_same_tx.json @@ -74,7 +74,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to an account that contains the SELFDESTRUCT opcode and\n was deployed in the same transaction, and test calling the set-code address and the deployed\n in both sequence orders.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -154,7 +154,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to an account that contains the SELFDESTRUCT opcode and\n was deployed in the same transaction, and test calling the set-code address and the deployed\n in both sequence orders.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -240,7 +240,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to an account that contains the SELFDESTRUCT opcode and\n was deployed in the same transaction, and test calling the set-code address and the deployed\n in both sequence orders.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -326,7 +326,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to an account that contains the SELFDESTRUCT opcode and\n was deployed in the same transaction, and test calling the set-code address and the deployed\n in both sequence orders.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -406,7 +406,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to an account that contains the SELFDESTRUCT opcode and\n was deployed in the same transaction, and test calling the set-code address and the deployed\n in both sequence orders.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -486,7 +486,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to an account that contains the SELFDESTRUCT opcode and\n was deployed in the same transaction, and test calling the set-code address and the deployed\n in both sequence orders.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -572,7 +572,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to an account that contains the SELFDESTRUCT opcode and\n was deployed in the same transaction, and test calling the set-code address and the deployed\n in both sequence orders.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -658,7 +658,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to an account that contains the SELFDESTRUCT opcode and\n was deployed in the same transaction, and test calling the set-code address and the deployed\n in both sequence orders.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -738,7 +738,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to an account that contains the SELFDESTRUCT opcode and\n was deployed in the same transaction, and test calling the set-code address and the deployed\n in both sequence orders.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -818,7 +818,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to an account that contains the SELFDESTRUCT opcode and\n was deployed in the same transaction, and test calling the set-code address and the deployed\n in both sequence orders.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -904,7 +904,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to an account that contains the SELFDESTRUCT opcode and\n was deployed in the same transaction, and test calling the set-code address and the deployed\n in both sequence orders.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -990,7 +990,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to an account that contains the SELFDESTRUCT opcode and\n was deployed in the same transaction, and test calling the set-code address and the deployed\n in both sequence orders.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1070,7 +1070,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to an account that contains the SELFDESTRUCT opcode and\n was deployed in the same transaction, and test calling the set-code address and the deployed\n in both sequence orders.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1150,7 +1150,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to an account that contains the SELFDESTRUCT opcode and\n was deployed in the same transaction, and test calling the set-code address and the deployed\n in both sequence orders.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1236,7 +1236,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to an account that contains the SELFDESTRUCT opcode and\n was deployed in the same transaction, and test calling the set-code address and the deployed\n in both sequence orders.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1322,7 +1322,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test setting the code of an account to an account that contains the SELFDESTRUCT opcode and\n was deployed in the same transaction, and test calling the set-code address and the deployed\n in both sequence orders.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L1591", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_sstore.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_sstore.json index f64de54477..b963513da8 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_sstore.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_sstore.json @@ -74,7 +74,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple SSTORE in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -160,7 +160,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple SSTORE in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -240,7 +240,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple SSTORE in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -320,7 +320,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple SSTORE in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -406,7 +406,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple SSTORE in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -486,7 +486,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple SSTORE in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -566,7 +566,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple SSTORE in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -652,7 +652,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple SSTORE in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -732,7 +732,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple SSTORE in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -812,7 +812,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple SSTORE in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -898,7 +898,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple SSTORE in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -978,7 +978,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple SSTORE in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1058,7 +1058,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple SSTORE in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1144,7 +1144,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple SSTORE in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1224,7 +1224,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple SSTORE in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1304,7 +1304,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple SSTORE in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1390,7 +1390,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple SSTORE in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1470,7 +1470,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple SSTORE in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1550,7 +1550,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple SSTORE in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1636,7 +1636,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple SSTORE in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1716,7 +1716,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple SSTORE in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1796,7 +1796,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple SSTORE in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1882,7 +1882,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple SSTORE in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1962,7 +1962,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple SSTORE in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -2042,7 +2042,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple SSTORE in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -2128,7 +2128,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple SSTORE in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -2208,7 +2208,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple SSTORE in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -2288,7 +2288,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple SSTORE in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -2374,7 +2374,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple SSTORE in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -2454,7 +2454,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple SSTORE in a set-code transaction.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L137", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_tstore_available_at_correct_address.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_tstore_available_at_correct_address.json index 1e3124c074..cc73cbc18c 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_tstore_available_at_correct_address.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_tstore_available_at_correct_address.json @@ -80,7 +80,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test TLOADing from slot 2 and then SSTORE this in slot 1, then TSTORE 3 in slot 2.\n This is done both from the EOA which is delegated to account A, and then A is called.\n The storage should stay empty on both the EOA and the delegated account.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L349", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L349", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -166,7 +166,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test TLOADing from slot 2 and then SSTORE this in slot 1, then TSTORE 3 in slot 2.\n This is done both from the EOA which is delegated to account A, and then A is called.\n The storage should stay empty on both the EOA and the delegated account.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L349", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L349", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_tstore_reentry.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_tstore_reentry.json index 925b365450..f9cf19d332 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_tstore_reentry.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_to_tstore_reentry.json @@ -74,7 +74,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple TSTORE in a set-code transaction, which also performs a\n re-entry to TLOAD the value.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L288", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L288", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -154,7 +154,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple TSTORE in a set-code transaction, which also performs a\n re-entry to TLOAD the value.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L288", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L288", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -234,7 +234,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple TSTORE in a set-code transaction, which also performs a\n re-entry to TLOAD the value.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L288", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L288", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -314,7 +314,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple TSTORE in a set-code transaction, which also performs a\n re-entry to TLOAD the value.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L288", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L288", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -394,7 +394,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple TSTORE in a set-code transaction, which also performs a\n re-entry to TLOAD the value.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L288", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L288", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -474,7 +474,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple TSTORE in a set-code transaction, which also performs a\n re-entry to TLOAD the value.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L288", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L288", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -554,7 +554,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple TSTORE in a set-code transaction, which also performs a\n re-entry to TLOAD the value.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L288", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L288", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -634,7 +634,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test the executing a simple TSTORE in a set-code transaction, which also performs a\n re-entry to TLOAD the value.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L288", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L288", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_using_chain_specific_id.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_using_chain_specific_id.json index 38e8a5ee58..5a0460c2d0 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_using_chain_specific_id.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_using_chain_specific_id.json @@ -74,7 +74,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction to set the code of an account using a chain-specific ID.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2020", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2020", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_using_valid_synthetic_signatures.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_using_valid_synthetic_signatures.json index f3ccd03096..8945e25a0a 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_using_valid_synthetic_signatures.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/set_code_using_valid_synthetic_signatures.json @@ -74,7 +74,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction to set the code of an account using synthetic signatures.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2069", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2069", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -154,7 +154,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction to set the code of an account using synthetic signatures.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2069", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2069", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -234,7 +234,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction to set the code of an account using synthetic signatures.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2069", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2069", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -314,7 +314,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction to set the code of an account using synthetic signatures.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2069", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2069", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -394,7 +394,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction to set the code of an account using synthetic signatures.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2069", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2069", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -474,7 +474,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction to set the code of an account using synthetic signatures.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2069", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2069", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/signature_s_out_of_range.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/signature_s_out_of_range.json index 8ba59c33c4..68f6c25d45 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/signature_s_out_of_range.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/signature_s_out_of_range.json @@ -80,7 +80,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction with an authorization tuple where the signature s value is out of\n range by modifying its value to be `SECP256K1N - S` and flipping the v value.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2256", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2256", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/tx_into_chain_delegating_set_code.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/tx_into_chain_delegating_set_code.json index ce0641b258..373eb78a0e 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/tx_into_chain_delegating_set_code.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/tx_into_chain_delegating_set_code.json @@ -77,7 +77,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test a transaction that has entry-point into a set-code account that delegates to another\n set-code account.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L794", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L794", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/tx_into_self_delegating_set_code.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/tx_into_self_delegating_set_code.json index 73a5be23d1..6f7a2d0163 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/tx_into_self_delegating_set_code.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/tx_into_self_delegating_set_code.json @@ -68,7 +68,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test a transaction that has entry-point into a set-code account that delegates to itself.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L758", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L758", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/tx_validity_chain_id.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/tx_validity_chain_id.json new file mode 100644 index 0000000000..ece2a57349 --- /dev/null +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/tx_validity_chain_id.json @@ -0,0 +1,175 @@ +{ + "tests/prague/eip7702_set_code_tx/test_set_code_txs.py::test_tx_validity_chain_id[fork_Prague-state_test-chain_id=2**64]": { + "env": { + "currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", + "currentGasLimit": "0x016345785d8a0000", + "currentNumber": "0x01", + "currentTimestamp": "0x03e8", + "currentRandom": "0x0000000000000000000000000000000000000000000000000000000000000000", + "currentDifficulty": "0x00", + "currentBaseFee": "0x07", + "currentExcessBlobGas": "0x00" + }, + "pre": { + "0x0000000000000000000000000000000000001000": { + "nonce": "0x01", + "balance": "0x00", + "code": "0x60016000f3", + "storage": {} + }, + "0x0000000000000000000000000000000000001100": { + "nonce": "0x01", + "balance": "0x00", + "code": "0x60016001556000600060006000600073a94f5374fce5edbc8e2a8697c15331677e6ebf0b5af13d600255", + "storage": {} + }, + "0x8a0a19589531694250d570040a0c4b74576919b8": { + "nonce": "0x00", + "balance": "0x3635c9adc5dea00000", + "code": "0x", + "storage": {} + } + }, + "transaction": { + "nonce": "0x00", + "maxPriorityFeePerGas": "0x00", + "maxFeePerGas": "0x07", + "gasLimit": [ + "0x0186a0" + ], + "to": "0x0000000000000000000000000000000000001100", + "value": [ + "0x00" + ], + "data": [ + "0x" + ], + "accessLists": [ + [] + ], + "authorizationList": [ + { + "chainId": "0x010000000000000000", + "address": "0x0000000000000000000000000000000000001000", + "nonce": "0x00", + "v": "0x01", + "r": "0x68065f6159532004e949ad234b481c7c736096056ee343e47f84a83e5d1c7847", + "s": "0x75d2d773650cc86cb727ed911380bc2b8a82b7f81fe8faeaa9df6ef4bde081d5", + "signer": "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b" + } + ], + "sender": "0x8a0a19589531694250d570040a0c4b74576919b8", + "secretKey": "0x9e7645d0cfd9c3a04eb7a9db59a4eb7d359f2e75c9164a9d6b9a7d54e1b6a36f" + }, + "post": { + "Prague": [ + { + "hash": "0x7a77cca81f216be5a0b0919ab8f4edd2b3f8664529f0977f57fcab653495ef6f", + "logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", + "txbytes": "0x04f8ca01808007830186a09400000000000000000000000000000000000011008080c0f865f863890100000000000000009400000000000000000000000000000000000010008001a068065f6159532004e949ad234b481c7c736096056ee343e47f84a83e5d1c7847a075d2d773650cc86cb727ed911380bc2b8a82b7f81fe8faeaa9df6ef4bde081d580a056555d49085a70ba377787471840455e7c667b6de53d75b6afe381a4ef85c17ca0357763a6fce8dd61fee93e3662f0ccd0518425f06dee215ebf30b196e7519fc3", + "indexes": { + "data": 0, + "gas": 0, + "value": 0 + }, + "expectException": "TransactionException.TYPE_4_INVALID_AUTHORIZATION_FORMAT" + } + ] + }, + "_info": { + "hash": "0x386fbdadd59d0bfacc3c99fb6a585af7829265b9b9860667924efe96aabc72ea", + "comment": "`execution-spec-tests` generated test", + "filling-transition-tool": "ethereumjs t8n v1", + "description": "Test function documentation:\n\n Test sending a transaction where the chain id field of an authorization overflows the\n maximum value, or almost overflows the maximum value.", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2306", + "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", + "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" + } + }, + "tests/prague/eip7702_set_code_tx/test_set_code_txs.py::test_tx_validity_chain_id[fork_Prague-state_test-chain_id=2**64-1]": { + "env": { + "currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", + "currentGasLimit": "0x016345785d8a0000", + "currentNumber": "0x01", + "currentTimestamp": "0x03e8", + "currentRandom": "0x0000000000000000000000000000000000000000000000000000000000000000", + "currentDifficulty": "0x00", + "currentBaseFee": "0x07", + "currentExcessBlobGas": "0x00" + }, + "pre": { + "0x0000000000000000000000000000000000001000": { + "nonce": "0x01", + "balance": "0x00", + "code": "0x60016000f3", + "storage": {} + }, + "0x0000000000000000000000000000000000001100": { + "nonce": "0x01", + "balance": "0x00", + "code": "0x60016001556000600060006000600073a94f5374fce5edbc8e2a8697c15331677e6ebf0b5af13d600255", + "storage": {} + }, + "0x8a0a19589531694250d570040a0c4b74576919b8": { + "nonce": "0x00", + "balance": "0x3635c9adc5dea00000", + "code": "0x", + "storage": {} + } + }, + "transaction": { + "nonce": "0x00", + "maxPriorityFeePerGas": "0x00", + "maxFeePerGas": "0x07", + "gasLimit": [ + "0x0186a0" + ], + "to": "0x0000000000000000000000000000000000001100", + "value": [ + "0x00" + ], + "data": [ + "0x" + ], + "accessLists": [ + [] + ], + "authorizationList": [ + { + "chainId": "0xffffffffffffffff", + "address": "0x0000000000000000000000000000000000001000", + "nonce": "0x00", + "v": "0x01", + "r": "0x4a1a1f6c18699883a46fd010e56b17d195b5ce1106a1604260c757313bb39f1a", + "s": "0x0438e889ad9ce0f4b95fdd107ccba3589e6d66c08dfc4f3c2453be2f45d49dad", + "signer": "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b" + } + ], + "sender": "0x8a0a19589531694250d570040a0c4b74576919b8", + "secretKey": "0x9e7645d0cfd9c3a04eb7a9db59a4eb7d359f2e75c9164a9d6b9a7d54e1b6a36f" + }, + "post": { + "Prague": [ + { + "hash": "0xb24289dfd33553a64333ea43ff725935704ba0679356d550c3327dfad3df37fa", + "logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", + "txbytes": "0x04f8c901808007830186a09400000000000000000000000000000000000011008080c0f864f86288ffffffffffffffff9400000000000000000000000000000000000010008001a04a1a1f6c18699883a46fd010e56b17d195b5ce1106a1604260c757313bb39f1aa00438e889ad9ce0f4b95fdd107ccba3589e6d66c08dfc4f3c2453be2f45d49dad80a0b3c8e1bb4c27143776abe778f1d18215241344ec43cb809064c819f4a15aee75a06dc767f2d6801b8c2d7353201a5c0dcbcbe201b820f6a8eba69bdb26cce9baab", + "indexes": { + "data": 0, + "gas": 0, + "value": 0 + } + } + ] + }, + "_info": { + "hash": "0x28c82c1271aad49ab74ee32b4e8f2a0eddc168f9036097139b27f791b58f1f83", + "comment": "`execution-spec-tests` generated test", + "filling-transition-tool": "ethereumjs t8n v1", + "description": "Test function documentation:\n\n Test sending a transaction where the chain id field of an authorization overflows the\n maximum value, or almost overflows the maximum value.", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2306", + "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", + "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" + } + } +} \ No newline at end of file diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/tx_validity_nonce.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/tx_validity_nonce.json index f2b778b4ab..c57a40ed99 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/tx_validity_nonce.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/tx_validity_nonce.json @@ -81,7 +81,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction where the nonce field of an authorization overflows the maximum\n value, or almost overflows the maximum value.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2372", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2372", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -173,7 +173,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction where the nonce field of an authorization overflows the maximum\n value, or almost overflows the maximum value.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2372", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2372", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -265,7 +265,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction where the nonce field of an authorization overflows the maximum\n value, or almost overflows the maximum value.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2372", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2372", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } diff --git a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/valid_tx_invalid_auth_signature.json b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/valid_tx_invalid_auth_signature.json index 3f1f5fc573..51e279a754 100644 --- a/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/valid_tx_invalid_auth_signature.json +++ b/tests/prague_suite/state_tests/prague/eip7702_set_code_tx/set_code_txs/valid_tx_invalid_auth_signature.json @@ -73,7 +73,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction to set the code of an account using synthetic signatures,\n the transaction is valid but the authorization should not go through.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -152,7 +152,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction to set the code of an account using synthetic signatures,\n the transaction is valid but the authorization should not go through.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -231,7 +231,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction to set the code of an account using synthetic signatures,\n the transaction is valid but the authorization should not go through.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -310,7 +310,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction to set the code of an account using synthetic signatures,\n the transaction is valid but the authorization should not go through.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -389,7 +389,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction to set the code of an account using synthetic signatures,\n the transaction is valid but the authorization should not go through.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -468,7 +468,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction to set the code of an account using synthetic signatures,\n the transaction is valid but the authorization should not go through.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -547,7 +547,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction to set the code of an account using synthetic signatures,\n the transaction is valid but the authorization should not go through.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -626,7 +626,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction to set the code of an account using synthetic signatures,\n the transaction is valid but the authorization should not go through.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -706,7 +706,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction to set the code of an account using synthetic signatures,\n the transaction is valid but the authorization should not go through.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -786,7 +786,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction to set the code of an account using synthetic signatures,\n the transaction is valid but the authorization should not go through.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -866,7 +866,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction to set the code of an account using synthetic signatures,\n the transaction is valid but the authorization should not go through.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -946,7 +946,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction to set the code of an account using synthetic signatures,\n the transaction is valid but the authorization should not go through.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1025,7 +1025,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction to set the code of an account using synthetic signatures,\n the transaction is valid but the authorization should not go through.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1104,7 +1104,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction to set the code of an account using synthetic signatures,\n the transaction is valid but the authorization should not go through.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1183,7 +1183,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction to set the code of an account using synthetic signatures,\n the transaction is valid but the authorization should not go through.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1262,7 +1262,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction to set the code of an account using synthetic signatures,\n the transaction is valid but the authorization should not go through.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" } @@ -1341,7 +1341,7 @@ "comment": "`execution-spec-tests` generated test", "filling-transition-tool": "ethereumjs t8n v1", "description": "Test function documentation:\n\n Test sending a transaction to set the code of an account using synthetic signatures,\n the transaction is valid but the authorization should not go through.", - "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.0/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", + "url": "https://github.com/ethereum/execution-spec-tests/blob/pectra-devnet-4@v1.0.1/tests/prague/eip7702_set_code_tx/test_set_code_txs.py#L2185", "reference-spec": "https://github.com/ethereum/EIPs/blob/master/EIPS/eip-7702.md", "reference-spec-version": "4334df83395693dc3f629bb43c18320d9e22e8c9" }