Simulating Signet Bundles
Signet Bundles
Instantiating the Signet EVM
// The DB is a revm `Database`
// - `orders_address` is the address of the Orders system contract. This is a constant.
// - `host_chain_id` is the EIP155 chain ID of the host. This is a constant
// and will usually be 1 (Ethereum) or 17000 (holesky).
let trevm = signet_evm::signet_evm(db, orders_address, host_chain_id);
// Coming soon!
let trevm = signet_evm::testnet(db);
let trevm = signet_evm::mainnet(db);Simulating Signet Bundles with trevm
trevmSimulating host_fills
host_fillsLast updated