We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d26946a commit cb69e9cCopy full SHA for cb69e9c
src/Vm.sol
@@ -211,6 +211,11 @@ interface Vm {
211
// In forking mode, explicitly grant the given address cheatcode access
212
function allowCheatcodes(address) external;
213
214
+ // Fetches the given transaction from the active fork and executes it on the current state
215
+ function transact(bytes32 txHash) external;
216
+ // Fetches the given transaction from the given fork and executes it on the current state
217
+ function transact(uint256 forkId, bytes32 txHash) external;
218
+
219
// Returns the RPC url for the given alias
220
function rpcUrl(string calldata) external returns(string memory);
221
// Returns all rpc urls and their aliases `[alias, url][]`
0 commit comments