risc0 / risc0-ethereum

Integration of the RISC Zero verifiable compute platform with Ethereum and EVM chains.
https://risczero.com
Apache License 2.0
60 stars 15 forks source link

WEB3-67: feat: switch Steel to alloy #183

Closed Wollac closed 1 month ago

Wollac commented 1 month ago

⚡️ Features

🛠 Fixes

🚨 Breaking Changes

// Preflight the call to prepare the input that is required to execute the function in // the guest without RPC access. It also returns the result of the call. let mut contract = Contract::preflight(CONTRACT, &mut env); let returns = contract.call_builder(&CALL).from(CALLER).call().await?;

// Finally, construct the input from the environment. let input = env.into_input().await?;