Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(example): deploy bytecode from scratch #1767

Merged
merged 4 commits into from
Sep 18, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions crates/revm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,11 @@ name = "db_by_ref"
path = "../../examples/db_by_ref.rs"
required-features = ["std", "serde-json"]

[[example]]
name = "deploy"
path = "../../examples/deploy.rs"
required-features = []

#[[example]]
#name = "uniswap_v2_usdc_swap"
#path = "../../examples/uniswap_v2_usdc_swap.rs"
Expand Down
65 changes: 65 additions & 0 deletions examples/deploy.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
use anyhow::{anyhow, bail};
use revm::{
primitives::{bytes::Bytes, hex, EthereumWiring, ExecutionResult, Output, TxKind, U256},
Evm, InMemoryDB,
};

/// [ PUSH1, 0x01, PUSH1, 0x17, PUSH1, 0x1f, CODECOPY, PUSH0, MLOAD, PUSH0, SSTORE ]
const INIT_CODE: &[u8] = &[
0x60, 0x01, 0x60, 0x17, 0x60, 0x1f, 0x39, 0x5f, 0x51, 0x5f, 0x55,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit, you could use exact notion from the comment if you include, revm::interpreter::opcode::*

];

/// [ PUSH1, 0x02, PUSH1, 0x15, PUSH0, CODECOPY, PUSH1, 0x02, PUSH0, RETURN]
const RET: &[u8] = &[0x60, 0x02, 0x60, 0x15, 0x5f, 0x39, 0x60, 0x02, 0x5f, 0xf3];

/// [ PUSH0 SLOAD ]
const RUNTIME_BYTECODE: &[u8] = &[0x5f, 0x54];

fn main() -> anyhow::Result<()> {
let param = 0x42;
let bytecode: Bytes = [INIT_CODE, RET, RUNTIME_BYTECODE, &[param]].concat().into();
let mut evm: Evm<'_, EthereumWiring<InMemoryDB, ()>> =
Evm::<EthereumWiring<InMemoryDB, ()>>::builder()
.with_default_db()
.with_default_ext_ctx()
.modify_tx_env(|tx| {
tx.transact_to = TxKind::Create;
*tx.data = bytecode.clone();
})
.build();

println!("bytecode: {}", hex::encode(bytecode));
let ref_tx = evm.transact_commit()?;
let ExecutionResult::Success {
output: Output::Create(_, Some(address)),
..
} = ref_tx
else {
bail!("Failed to create contract: {ref_tx:#?}");
};

println!("Created contract at {address}");
evm = evm
.modify()
.modify_tx_env(|tx| {
tx.transact_to = TxKind::Call(address);
*tx.data = Default::default();
tx.nonce += 1;
})
.build();

let result = evm.transact()?;
let Some(storage0) = result
.state
.get(&address)
.ok_or_else(|| anyhow!("Contract not found"))?
.storage
.get::<U256>(&Default::default())
else {
bail!("Failed to write storage in the init code: {result:#?}");
};

println!("storage U256(0) at{address}: {storage0:#?}");
assert_eq!(storage0.present_value(), param.try_into()?, "{result:#?}");
Ok(())
}
Loading