Expand description
Foundry cheatcodes interface.
interface Vm {
error CheatcodeError(string message);
enum CallerMode { None, Broadcast, RecurrentBroadcast, Prank, RecurrentPrank }
enum AccountAccessKind { Call, DelegateCall, CallCode, StaticCall, Create, SelfDestruct, Resume, Balance, Extcodesize, Extcodehash, Extcodecopy }
enum ForgeContext { TestGroup, Test, Coverage, Snapshot, ScriptGroup, ScriptDryRun, ScriptBroadcast, ScriptResume, Unknown }
struct Log { bytes32[] topics; bytes data; address emitter; }
struct Gas { uint64 gasLimit; uint64 gasTotalUsed; uint64 gasMemoryUsed; int64 gasRefunded; uint64 gasRemaining; }
struct Rpc { string key; string url; }
struct EthGetLogs { address emitter; bytes32[] topics; bytes data; bytes32 blockHash; uint64 blockNumber; bytes32 transactionHash; uint64 transactionIndex; uint256 logIndex; bool removed; }
struct DirEntry { string errorMessage; string path; uint64 depth; bool isDir; bool isSymlink; }
struct FsMetadata { bool isDir; bool isSymlink; uint256 length; bool readOnly; uint256 modified; uint256 accessed; uint256 created; }
struct Wallet { address addr; uint256 publicKeyX; uint256 publicKeyY; uint256 privateKey; }
struct FfiResult { int32 exitCode; bytes stdout; bytes stderr; }
struct ChainInfo { uint256 forkId; uint256 chainId; }
struct StorageAccess { address account; bytes32 slot; bool isWrite; bytes32 previousValue; bytes32 newValue; bool reverted; }
struct AccessListItem { address target; bytes32[] storageKeys; }
struct AccountAccess { ChainInfo chainInfo; AccountAccessKind kind; address account; address accessor; bool initialized; uint256 oldBalance; uint256 newBalance; bytes deployedCode; uint256 value; bytes data; bool reverted; StorageAccess[] storageAccesses; uint64 depth; }
struct DebugStep { uint256[] stack; bytes memoryInput; uint8 opcode; uint64 depth; bool isOutOfGas; address contractAddr; }
enum BroadcastTxType { Call, Create, Create2 }
struct BroadcastTxSummary { bytes32 txHash; BroadcastTxType txType; address contractAddress; uint64 blockNumber; bool success; }
struct SignedDelegation { uint8 v; bytes32 r; bytes32 s; uint64 nonce; address implementation; }
struct PotentialRevert { address reverter; bool partialMatch; bytes revertData; }
function addr(uint256 privateKey) external pure returns (address keyAddr);
function dumpState(string calldata pathToStateJson) external;
function getNonce(address account) external view returns (uint64 nonce);
function getNonce(Wallet calldata wallet) external returns (uint64 nonce);
function load(address target, bytes32 slot) external view returns (bytes32 data);
function loadAllocs(string calldata pathToAllocsJson) external;
function startDebugTraceRecording() external;
function stopAndReturnDebugTraceRecording() external returns (DebugStep[] memory step);
function cloneAccount(address source, address target) external;
function record() external;
function accesses(address target) external returns (bytes32[] memory readSlots, bytes32[] memory writeSlots);
function startStateDiffRecording() external;
function stopAndReturnStateDiff() external returns (AccountAccess[] memory accountAccesses);
function getStateDiff() external view returns (string memory diff);
function getStateDiffJson() external view returns (string memory diff);
function startMappingRecording() external;
function stopMappingRecording() external;
function getMappingLength(address target, bytes32 mappingSlot) external returns (uint256 length);
function getMappingSlotAt(address target, bytes32 mappingSlot, uint256 idx) external returns (bytes32 value);
function getMappingKeyAndParentOf(address target, bytes32 elementSlot) external returns (bool found, bytes32 key, bytes32 parent);
function chainId(uint256 newChainId) external;
function coinbase(address newCoinbase) external;
function difficulty(uint256 newDifficulty) external;
function fee(uint256 newBasefee) external;
function prevrandao(bytes32 newPrevrandao) external;
function prevrandao(uint256 newPrevrandao) external;
function blobhashes(bytes32[] calldata hashes) external;
function getBlobhashes() external view returns (bytes32[] memory hashes);
function roll(uint256 newHeight) external;
function getBlockNumber() external view returns (uint256 height);
function txGasPrice(uint256 newGasPrice) external;
function warp(uint256 newTimestamp) external;
function getBlockTimestamp() external view returns (uint256 timestamp);
function blobBaseFee(uint256 newBlobBaseFee) external;
function getBlobBaseFee() external view returns (uint256 blobBaseFee);
function setBlockhash(uint256 blockNumber, bytes32 blockHash) external;
function deal(address account, uint256 newBalance) external;
function etch(address target, bytes calldata newRuntimeBytecode) external;
function resetNonce(address account) external;
function setNonce(address account, uint64 newNonce) external;
function setNonceUnsafe(address account, uint64 newNonce) external;
function store(address target, bytes32 slot, bytes32 value) external;
function cool(address target) external;
function accessList(AccessListItem[] calldata access) external;
function noAccessList() external;
function warmSlot(address target, bytes32 slot) external;
function coolSlot(address target, bytes32 slot) external;
function clearMockedCalls() external;
function mockCall(address callee, bytes calldata data, bytes calldata returnData) external;
function mockCall(address callee, uint256 msgValue, bytes calldata data, bytes calldata returnData) external;
function mockCall(address callee, bytes4 data, bytes calldata returnData) external;
function mockCall(address callee, uint256 msgValue, bytes4 data, bytes calldata returnData) external;
function mockCalls(address callee, bytes calldata data, bytes[] calldata returnData) external;
function mockCalls(address callee, uint256 msgValue, bytes calldata data, bytes[] calldata returnData) external;
function mockCallRevert(address callee, bytes calldata data, bytes calldata revertData) external;
function mockCallRevert(address callee, uint256 msgValue, bytes calldata data, bytes calldata revertData) external;
function mockCallRevert(address callee, bytes4 data, bytes calldata revertData) external;
function mockCallRevert(address callee, uint256 msgValue, bytes4 data, bytes calldata revertData) external;
function mockFunction(address callee, address target, bytes calldata data) external;
function prank(address msgSender) external;
function startPrank(address msgSender) external;
function prank(address msgSender, address txOrigin) external;
function startPrank(address msgSender, address txOrigin) external;
function prank(address msgSender, bool delegateCall) external;
function startPrank(address msgSender, bool delegateCall) external;
function prank(address msgSender, address txOrigin, bool delegateCall) external;
function startPrank(address msgSender, address txOrigin, bool delegateCall) external;
function stopPrank() external;
function readCallers() external returns (CallerMode callerMode, address msgSender, address txOrigin);
function snapshotValue(string calldata name, uint256 value) external;
function snapshotValue(string calldata group, string calldata name, uint256 value) external;
function snapshotGasLastCall(string calldata name) external returns (uint256 gasUsed);
function snapshotGasLastCall(string calldata group, string calldata name) external returns (uint256 gasUsed);
function startSnapshotGas(string calldata name) external;
function startSnapshotGas(string calldata group, string calldata name) external;
function stopSnapshotGas() external returns (uint256 gasUsed);
function stopSnapshotGas(string calldata name) external returns (uint256 gasUsed);
function stopSnapshotGas(string calldata group, string calldata name) external returns (uint256 gasUsed);
function snapshot() external returns (uint256 snapshotId);
function snapshotState() external returns (uint256 snapshotId);
function revertTo(uint256 snapshotId) external returns (bool success);
function revertToState(uint256 snapshotId) external returns (bool success);
function revertToAndDelete(uint256 snapshotId) external returns (bool success);
function revertToStateAndDelete(uint256 snapshotId) external returns (bool success);
function deleteSnapshot(uint256 snapshotId) external returns (bool success);
function deleteStateSnapshot(uint256 snapshotId) external returns (bool success);
function deleteSnapshots() external;
function deleteStateSnapshots() external;
function activeFork() external view returns (uint256 forkId);
function createFork(string calldata urlOrAlias) external returns (uint256 forkId);
function createFork(string calldata urlOrAlias, uint256 blockNumber) external returns (uint256 forkId);
function createFork(string calldata urlOrAlias, bytes32 txHash) external returns (uint256 forkId);
function createSelectFork(string calldata urlOrAlias) external returns (uint256 forkId);
function createSelectFork(string calldata urlOrAlias, uint256 blockNumber) external returns (uint256 forkId);
function createSelectFork(string calldata urlOrAlias, bytes32 txHash) external returns (uint256 forkId);
function rollFork(uint256 blockNumber) external;
function rollFork(bytes32 txHash) external;
function rollFork(uint256 forkId, uint256 blockNumber) external;
function rollFork(uint256 forkId, bytes32 txHash) external;
function selectFork(uint256 forkId) external;
function transact(bytes32 txHash) external;
function transact(uint256 forkId, bytes32 txHash) external;
function rpc(string calldata method, string calldata params) external returns (bytes memory data);
function rpc(string calldata urlOrAlias, string calldata method, string calldata params) external returns (bytes memory data);
function eth_getLogs(uint256 fromBlock, uint256 toBlock, address target, bytes32[] calldata topics) external returns (EthGetLogs[] memory logs);
function allowCheatcodes(address account) external;
function makePersistent(address account) external;
function makePersistent(address account0, address account1) external;
function makePersistent(address account0, address account1, address account2) external;
function makePersistent(address[] calldata accounts) external;
function revokePersistent(address account) external;
function revokePersistent(address[] calldata accounts) external;
function isPersistent(address account) external view returns (bool persistent);
function recordLogs() external;
function getRecordedLogs() external returns (Log[] memory logs);
function pauseGasMetering() external;
function resumeGasMetering() external;
function resetGasMetering() external;
function lastCallGas() external view returns (Gas memory gas);
function assume(bool condition) external pure;
function assumeNoRevert() external pure;
function assumeNoRevert(PotentialRevert calldata potentialRevert) external pure;
function assumeNoRevert(PotentialRevert[] calldata potentialReverts) external pure;
function breakpoint(string calldata char) external pure;
function breakpoint(string calldata char, bool value) external pure;
function getFoundryVersion() external view returns (string memory version);
function rpcUrl(string calldata rpcAlias) external view returns (string memory json);
function rpcUrls() external view returns (string[2][] memory urls);
function rpcUrlStructs() external view returns (Rpc[] memory urls);
function sleep(uint256 duration) external;
function expectCall(address callee, bytes calldata data) external;
function expectCall(address callee, bytes calldata data, uint64 count) external;
function expectCall(address callee, uint256 msgValue, bytes calldata data) external;
function expectCall(address callee, uint256 msgValue, bytes calldata data, uint64 count) external;
function expectCall(address callee, uint256 msgValue, uint64 gas, bytes calldata data) external;
function expectCall(address callee, uint256 msgValue, uint64 gas, bytes calldata data, uint64 count) external;
function expectCallMinGas(address callee, uint256 msgValue, uint64 minGas, bytes calldata data) external;
function expectCallMinGas(address callee, uint256 msgValue, uint64 minGas, bytes calldata data, uint64 count) external;
function expectEmit(bool checkTopic1, bool checkTopic2, bool checkTopic3, bool checkData) external;
function expectEmit(bool checkTopic1, bool checkTopic2, bool checkTopic3, bool checkData, address emitter) external;
function expectEmit() external;
function expectEmit(address emitter) external;
function expectEmit(bool checkTopic1, bool checkTopic2, bool checkTopic3, bool checkData, uint64 count) external;
function expectEmit(bool checkTopic1, bool checkTopic2, bool checkTopic3, bool checkData, address emitter, uint64 count) external;
function expectEmit(uint64 count) external;
function expectEmit(address emitter, uint64 count) external;
function expectEmitAnonymous(bool checkTopic0, bool checkTopic1, bool checkTopic2, bool checkTopic3, bool checkData) external;
function expectEmitAnonymous(bool checkTopic0, bool checkTopic1, bool checkTopic2, bool checkTopic3, bool checkData, address emitter) external;
function expectEmitAnonymous() external;
function expectEmitAnonymous(address emitter) external;
function expectCreate(bytes calldata bytecode, address deployer) external;
function expectCreate2(bytes calldata bytecode, address deployer) external;
function expectRevert() external;
function expectRevert(bytes4 revertData) external;
function expectRevert(bytes calldata revertData) external;
function expectRevert(address reverter) external;
function expectRevert(bytes4 revertData, address reverter) external;
function expectRevert(bytes calldata revertData, address reverter) external;
function expectRevert(uint64 count) external;
function expectRevert(bytes4 revertData, uint64 count) external;
function expectRevert(bytes calldata revertData, uint64 count) external;
function expectRevert(address reverter, uint64 count) external;
function expectRevert(bytes4 revertData, address reverter, uint64 count) external;
function expectRevert(bytes calldata revertData, address reverter, uint64 count) external;
function expectPartialRevert(bytes4 revertData) external;
function expectPartialRevert(bytes4 revertData, address reverter) external;
function _expectCheatcodeRevert() external;
function _expectCheatcodeRevert(bytes4 revertData) external;
function _expectCheatcodeRevert(bytes calldata revertData) external;
function expectSafeMemory(uint64 min, uint64 max) external;
function stopExpectSafeMemory() external;
function expectSafeMemoryCall(uint64 min, uint64 max) external;
function skip(bool skipTest) external;
function skip(bool skipTest, string calldata reason) external;
function assertTrue(bool condition) external pure;
function assertTrue(bool condition, string calldata error) external pure;
function assertFalse(bool condition) external pure;
function assertFalse(bool condition, string calldata error) external pure;
function assertEq(bool left, bool right) external pure;
function assertEq(bool left, bool right, string calldata error) external pure;
function assertEq(uint256 left, uint256 right) external pure;
function assertEq(uint256 left, uint256 right, string calldata error) external pure;
function assertEq(int256 left, int256 right) external pure;
function assertEq(int256 left, int256 right, string calldata error) external pure;
function assertEq(address left, address right) external pure;
function assertEq(address left, address right, string calldata error) external pure;
function assertEq(bytes32 left, bytes32 right) external pure;
function assertEq(bytes32 left, bytes32 right, string calldata error) external pure;
function assertEq(string calldata left, string calldata right) external pure;
function assertEq(string calldata left, string calldata right, string calldata error) external pure;
function assertEq(bytes calldata left, bytes calldata right) external pure;
function assertEq(bytes calldata left, bytes calldata right, string calldata error) external pure;
function assertEq(bool[] calldata left, bool[] calldata right) external pure;
function assertEq(bool[] calldata left, bool[] calldata right, string calldata error) external pure;
function assertEq(uint256[] calldata left, uint256[] calldata right) external pure;
function assertEq(uint256[] calldata left, uint256[] calldata right, string calldata error) external pure;
function assertEq(int256[] calldata left, int256[] calldata right) external pure;
function assertEq(int256[] calldata left, int256[] calldata right, string calldata error) external pure;
function assertEq(address[] calldata left, address[] calldata right) external pure;
function assertEq(address[] calldata left, address[] calldata right, string calldata error) external pure;
function assertEq(bytes32[] calldata left, bytes32[] calldata right) external pure;
function assertEq(bytes32[] calldata left, bytes32[] calldata right, string calldata error) external pure;
function assertEq(string[] calldata left, string[] calldata right) external pure;
function assertEq(string[] calldata left, string[] calldata right, string calldata error) external pure;
function assertEq(bytes[] calldata left, bytes[] calldata right) external pure;
function assertEq(bytes[] calldata left, bytes[] calldata right, string calldata error) external pure;
function assertEqDecimal(uint256 left, uint256 right, uint256 decimals) external pure;
function assertEqDecimal(uint256 left, uint256 right, uint256 decimals, string calldata error) external pure;
function assertEqDecimal(int256 left, int256 right, uint256 decimals) external pure;
function assertEqDecimal(int256 left, int256 right, uint256 decimals, string calldata error) external pure;
function assertNotEq(bool left, bool right) external pure;
function assertNotEq(bool left, bool right, string calldata error) external pure;
function assertNotEq(uint256 left, uint256 right) external pure;
function assertNotEq(uint256 left, uint256 right, string calldata error) external pure;
function assertNotEq(int256 left, int256 right) external pure;
function assertNotEq(int256 left, int256 right, string calldata error) external pure;
function assertNotEq(address left, address right) external pure;
function assertNotEq(address left, address right, string calldata error) external pure;
function assertNotEq(bytes32 left, bytes32 right) external pure;
function assertNotEq(bytes32 left, bytes32 right, string calldata error) external pure;
function assertNotEq(string calldata left, string calldata right) external pure;
function assertNotEq(string calldata left, string calldata right, string calldata error) external pure;
function assertNotEq(bytes calldata left, bytes calldata right) external pure;
function assertNotEq(bytes calldata left, bytes calldata right, string calldata error) external pure;
function assertNotEq(bool[] calldata left, bool[] calldata right) external pure;
function assertNotEq(bool[] calldata left, bool[] calldata right, string calldata error) external pure;
function assertNotEq(uint256[] calldata left, uint256[] calldata right) external pure;
function assertNotEq(uint256[] calldata left, uint256[] calldata right, string calldata error) external pure;
function assertNotEq(int256[] calldata left, int256[] calldata right) external pure;
function assertNotEq(int256[] calldata left, int256[] calldata right, string calldata error) external pure;
function assertNotEq(address[] calldata left, address[] calldata right) external pure;
function assertNotEq(address[] calldata left, address[] calldata right, string calldata error) external pure;
function assertNotEq(bytes32[] calldata left, bytes32[] calldata right) external pure;
function assertNotEq(bytes32[] calldata left, bytes32[] calldata right, string calldata error) external pure;
function assertNotEq(string[] calldata left, string[] calldata right) external pure;
function assertNotEq(string[] calldata left, string[] calldata right, string calldata error) external pure;
function assertNotEq(bytes[] calldata left, bytes[] calldata right) external pure;
function assertNotEq(bytes[] calldata left, bytes[] calldata right, string calldata error) external pure;
function assertNotEqDecimal(uint256 left, uint256 right, uint256 decimals) external pure;
function assertNotEqDecimal(uint256 left, uint256 right, uint256 decimals, string calldata error) external pure;
function assertNotEqDecimal(int256 left, int256 right, uint256 decimals) external pure;
function assertNotEqDecimal(int256 left, int256 right, uint256 decimals, string calldata error) external pure;
function assertGt(uint256 left, uint256 right) external pure;
function assertGt(uint256 left, uint256 right, string calldata error) external pure;
function assertGt(int256 left, int256 right) external pure;
function assertGt(int256 left, int256 right, string calldata error) external pure;
function assertGtDecimal(uint256 left, uint256 right, uint256 decimals) external pure;
function assertGtDecimal(uint256 left, uint256 right, uint256 decimals, string calldata error) external pure;
function assertGtDecimal(int256 left, int256 right, uint256 decimals) external pure;
function assertGtDecimal(int256 left, int256 right, uint256 decimals, string calldata error) external pure;
function assertGe(uint256 left, uint256 right) external pure;
function assertGe(uint256 left, uint256 right, string calldata error) external pure;
function assertGe(int256 left, int256 right) external pure;
function assertGe(int256 left, int256 right, string calldata error) external pure;
function assertGeDecimal(uint256 left, uint256 right, uint256 decimals) external pure;
function assertGeDecimal(uint256 left, uint256 right, uint256 decimals, string calldata error) external pure;
function assertGeDecimal(int256 left, int256 right, uint256 decimals) external pure;
function assertGeDecimal(int256 left, int256 right, uint256 decimals, string calldata error) external pure;
function assertLt(uint256 left, uint256 right) external pure;
function assertLt(uint256 left, uint256 right, string calldata error) external pure;
function assertLt(int256 left, int256 right) external pure;
function assertLt(int256 left, int256 right, string calldata error) external pure;
function assertLtDecimal(uint256 left, uint256 right, uint256 decimals) external pure;
function assertLtDecimal(uint256 left, uint256 right, uint256 decimals, string calldata error) external pure;
function assertLtDecimal(int256 left, int256 right, uint256 decimals) external pure;
function assertLtDecimal(int256 left, int256 right, uint256 decimals, string calldata error) external pure;
function assertLe(uint256 left, uint256 right) external pure;
function assertLe(uint256 left, uint256 right, string calldata error) external pure;
function assertLe(int256 left, int256 right) external pure;
function assertLe(int256 left, int256 right, string calldata error) external pure;
function assertLeDecimal(uint256 left, uint256 right, uint256 decimals) external pure;
function assertLeDecimal(uint256 left, uint256 right, uint256 decimals, string calldata error) external pure;
function assertLeDecimal(int256 left, int256 right, uint256 decimals) external pure;
function assertLeDecimal(int256 left, int256 right, uint256 decimals, string calldata error) external pure;
function assertApproxEqAbs(uint256 left, uint256 right, uint256 maxDelta) external pure;
function assertApproxEqAbs(uint256 left, uint256 right, uint256 maxDelta, string calldata error) external pure;
function assertApproxEqAbs(int256 left, int256 right, uint256 maxDelta) external pure;
function assertApproxEqAbs(int256 left, int256 right, uint256 maxDelta, string calldata error) external pure;
function assertApproxEqAbsDecimal(uint256 left, uint256 right, uint256 maxDelta, uint256 decimals) external pure;
function assertApproxEqAbsDecimal(uint256 left, uint256 right, uint256 maxDelta, uint256 decimals, string calldata error) external pure;
function assertApproxEqAbsDecimal(int256 left, int256 right, uint256 maxDelta, uint256 decimals) external pure;
function assertApproxEqAbsDecimal(int256 left, int256 right, uint256 maxDelta, uint256 decimals, string calldata error) external pure;
function assertApproxEqRel(uint256 left, uint256 right, uint256 maxPercentDelta) external pure;
function assertApproxEqRel(uint256 left, uint256 right, uint256 maxPercentDelta, string calldata error) external pure;
function assertApproxEqRel(int256 left, int256 right, uint256 maxPercentDelta) external pure;
function assertApproxEqRel(int256 left, int256 right, uint256 maxPercentDelta, string calldata error) external pure;
function assertApproxEqRelDecimal(uint256 left, uint256 right, uint256 maxPercentDelta, uint256 decimals) external pure;
function assertApproxEqRelDecimal(uint256 left, uint256 right, uint256 maxPercentDelta, uint256 decimals, string calldata error) external pure;
function assertApproxEqRelDecimal(int256 left, int256 right, uint256 maxPercentDelta, uint256 decimals) external pure;
function assertApproxEqRelDecimal(int256 left, int256 right, uint256 maxPercentDelta, uint256 decimals, string calldata error) external pure;
function foundryVersionAtLeast(string calldata version) external view returns (bool);
function foundryVersionCmp(string calldata version) external view returns (int256);
function exists(string calldata path) external view returns (bool result);
function fsMetadata(string calldata path) external view returns (FsMetadata memory metadata);
function isDir(string calldata path) external view returns (bool result);
function isFile(string calldata path) external view returns (bool result);
function projectRoot() external view returns (string memory path);
function unixTime() external view returns (uint256 milliseconds);
function closeFile(string calldata path) external;
function copyFile(string calldata from, string calldata to) external returns (uint64 copied);
function createDir(string calldata path, bool recursive) external;
function readDir(string calldata path) external view returns (DirEntry[] memory entries);
function readDir(string calldata path, uint64 maxDepth) external view returns (DirEntry[] memory entries);
function readDir(string calldata path, uint64 maxDepth, bool followLinks) external view returns (DirEntry[] memory entries);
function readFile(string calldata path) external view returns (string memory data);
function readFileBinary(string calldata path) external view returns (bytes memory data);
function readLine(string calldata path) external view returns (string memory line);
function readLink(string calldata linkPath) external view returns (string memory targetPath);
function removeDir(string calldata path, bool recursive) external;
function removeFile(string calldata path) external;
function writeFile(string calldata path, string calldata data) external;
function writeFileBinary(string calldata path, bytes calldata data) external;
function writeLine(string calldata path, string calldata data) external;
function getArtifactPathByCode(bytes calldata code) external view returns (string memory path);
function getArtifactPathByDeployedCode(bytes calldata deployedCode) external view returns (string memory path);
function getCode(string calldata artifactPath) external view returns (bytes memory creationBytecode);
function deployCode(string calldata artifactPath) external returns (address deployedAddress);
function deployCode(string calldata artifactPath, bytes calldata constructorArgs) external returns (address deployedAddress);
function deployCode(string calldata artifactPath, uint256 value) external returns (address deployedAddress);
function deployCode(string calldata artifactPath, bytes calldata constructorArgs, uint256 value) external returns (address deployedAddress);
function deployCode(string calldata artifactPath, bytes32 salt) external returns (address deployedAddress);
function deployCode(string calldata artifactPath, bytes calldata constructorArgs, bytes32 salt) external returns (address deployedAddress);
function deployCode(string calldata artifactPath, uint256 value, bytes32 salt) external returns (address deployedAddress);
function deployCode(string calldata artifactPath, bytes calldata constructorArgs, uint256 value, bytes32 salt) external returns (address deployedAddress);
function getDeployedCode(string calldata artifactPath) external view returns (bytes memory runtimeBytecode);
function getBroadcast(string calldata contractName, uint64 chainId, BroadcastTxType txType) external view returns (BroadcastTxSummary memory);
function getBroadcasts(string calldata contractName, uint64 chainId, BroadcastTxType txType) external view returns (BroadcastTxSummary[] memory);
function getBroadcasts(string calldata contractName, uint64 chainId) external view returns (BroadcastTxSummary[] memory);
function getDeployment(string calldata contractName) external view returns (address deployedAddress);
function getDeployment(string calldata contractName, uint64 chainId) external view returns (address deployedAddress);
function getDeployments(string calldata contractName, uint64 chainId) external view returns (address[] memory deployedAddresses);
function ffi(string[] calldata commandInput) external returns (bytes memory result);
function tryFfi(string[] calldata commandInput) external returns (FfiResult memory result);
function prompt(string calldata promptText) external returns (string memory input);
function promptSecret(string calldata promptText) external returns (string memory input);
function promptSecretUint(string calldata promptText) external returns (uint256);
function promptAddress(string calldata promptText) external returns (address);
function promptUint(string calldata promptText) external returns (uint256);
function setEnv(string calldata name, string calldata value) external;
function envExists(string calldata name) external view returns (bool result);
function envBool(string calldata name) external view returns (bool value);
function envUint(string calldata name) external view returns (uint256 value);
function envInt(string calldata name) external view returns (int256 value);
function envAddress(string calldata name) external view returns (address value);
function envBytes32(string calldata name) external view returns (bytes32 value);
function envString(string calldata name) external view returns (string memory value);
function envBytes(string calldata name) external view returns (bytes memory value);
function envBool(string calldata name, string calldata delim) external view returns (bool[] memory value);
function envUint(string calldata name, string calldata delim) external view returns (uint256[] memory value);
function envInt(string calldata name, string calldata delim) external view returns (int256[] memory value);
function envAddress(string calldata name, string calldata delim) external view returns (address[] memory value);
function envBytes32(string calldata name, string calldata delim) external view returns (bytes32[] memory value);
function envString(string calldata name, string calldata delim) external view returns (string[] memory value);
function envBytes(string calldata name, string calldata delim) external view returns (bytes[] memory value);
function envOr(string calldata name, bool defaultValue) external view returns (bool value);
function envOr(string calldata name, uint256 defaultValue) external view returns (uint256 value);
function envOr(string calldata name, int256 defaultValue) external view returns (int256 value);
function envOr(string calldata name, address defaultValue) external view returns (address value);
function envOr(string calldata name, bytes32 defaultValue) external view returns (bytes32 value);
function envOr(string calldata name, string calldata defaultValue) external view returns (string memory value);
function envOr(string calldata name, bytes calldata defaultValue) external view returns (bytes memory value);
function envOr(string calldata name, string calldata delim, bool[] calldata defaultValue) external view returns (bool[] memory value);
function envOr(string calldata name, string calldata delim, uint256[] calldata defaultValue) external view returns (uint256[] memory value);
function envOr(string calldata name, string calldata delim, int256[] calldata defaultValue) external view returns (int256[] memory value);
function envOr(string calldata name, string calldata delim, address[] calldata defaultValue) external view returns (address[] memory value);
function envOr(string calldata name, string calldata delim, bytes32[] calldata defaultValue) external view returns (bytes32[] memory value);
function envOr(string calldata name, string calldata delim, string[] calldata defaultValue) external view returns (string[] memory value);
function envOr(string calldata name, string calldata delim, bytes[] calldata defaultValue) external view returns (bytes[] memory value);
function isContext(ForgeContext context) external view returns (bool result);
function broadcast() external;
function broadcast(address signer) external;
function broadcast(uint256 privateKey) external;
function startBroadcast() external;
function startBroadcast(address signer) external;
function startBroadcast(uint256 privateKey) external;
function stopBroadcast() external;
function broadcastRawTransaction(bytes calldata data) external;
function signDelegation(address implementation, uint256 privateKey) external returns (SignedDelegation memory signedDelegation);
function signDelegation(address implementation, uint256 privateKey, uint64 nonce) external returns (SignedDelegation memory signedDelegation);
function attachDelegation(SignedDelegation calldata signedDelegation) external;
function signAndAttachDelegation(address implementation, uint256 privateKey) external returns (SignedDelegation memory signedDelegation);
function signAndAttachDelegation(address implementation, uint256 privateKey, uint64 nonce) external returns (SignedDelegation memory signedDelegation);
function getWallets() external returns (address[] memory wallets);
function toString(address value) external pure returns (string memory stringifiedValue);
function toString(bytes calldata value) external pure returns (string memory stringifiedValue);
function toString(bytes32 value) external pure returns (string memory stringifiedValue);
function toString(bool value) external pure returns (string memory stringifiedValue);
function toString(uint256 value) external pure returns (string memory stringifiedValue);
function toString(int256 value) external pure returns (string memory stringifiedValue);
function parseBytes(string calldata stringifiedValue) external pure returns (bytes memory parsedValue);
function parseAddress(string calldata stringifiedValue) external pure returns (address parsedValue);
function parseUint(string calldata stringifiedValue) external pure returns (uint256 parsedValue);
function parseInt(string calldata stringifiedValue) external pure returns (int256 parsedValue);
function parseBytes32(string calldata stringifiedValue) external pure returns (bytes32 parsedValue);
function parseBool(string calldata stringifiedValue) external pure returns (bool parsedValue);
function toLowercase(string calldata input) external pure returns (string memory output);
function toUppercase(string calldata input) external pure returns (string memory output);
function trim(string calldata input) external pure returns (string memory output);
function replace(string calldata input, string calldata from, string calldata to) external pure returns (string memory output);
function split(string calldata input, string calldata delimiter) external pure returns (string[] memory outputs);
function indexOf(string calldata input, string calldata key) external pure returns (uint256);
function contains(string calldata subject, string calldata search) external returns (bool result);
function keyExists(string calldata json, string calldata key) external view returns (bool);
function keyExistsJson(string calldata json, string calldata key) external view returns (bool);
function parseJson(string calldata json) external pure returns (bytes memory abiEncodedData);
function parseJson(string calldata json, string calldata key) external pure returns (bytes memory abiEncodedData);
function parseJsonUint(string calldata json, string calldata key) external pure returns (uint256);
function parseJsonUintArray(string calldata json, string calldata key) external pure returns (uint256[] memory);
function parseJsonInt(string calldata json, string calldata key) external pure returns (int256);
function parseJsonIntArray(string calldata json, string calldata key) external pure returns (int256[] memory);
function parseJsonBool(string calldata json, string calldata key) external pure returns (bool);
function parseJsonBoolArray(string calldata json, string calldata key) external pure returns (bool[] memory);
function parseJsonAddress(string calldata json, string calldata key) external pure returns (address);
function parseJsonAddressArray(string calldata json, string calldata key) external pure returns (address[] memory);
function parseJsonString(string calldata json, string calldata key) external pure returns (string memory);
function parseJsonStringArray(string calldata json, string calldata key) external pure returns (string[] memory);
function parseJsonBytes(string calldata json, string calldata key) external pure returns (bytes memory);
function parseJsonBytesArray(string calldata json, string calldata key) external pure returns (bytes[] memory);
function parseJsonBytes32(string calldata json, string calldata key) external pure returns (bytes32);
function parseJsonBytes32Array(string calldata json, string calldata key) external pure returns (bytes32[] memory);
function parseJsonType(string calldata json, string calldata typeDescription) external pure returns (bytes memory);
function parseJsonType(string calldata json, string calldata key, string calldata typeDescription) external pure returns (bytes memory);
function parseJsonTypeArray(string calldata json, string calldata key, string calldata typeDescription) external pure returns (bytes memory);
function parseJsonKeys(string calldata json, string calldata key) external pure returns (string[] memory keys);
function serializeJson(string calldata objectKey, string calldata value) external returns (string memory json);
function serializeBool(string calldata objectKey, string calldata valueKey, bool value) external returns (string memory json);
function serializeUint(string calldata objectKey, string calldata valueKey, uint256 value) external returns (string memory json);
function serializeUintToHex(string calldata objectKey, string calldata valueKey, uint256 value) external returns (string memory json);
function serializeInt(string calldata objectKey, string calldata valueKey, int256 value) external returns (string memory json);
function serializeAddress(string calldata objectKey, string calldata valueKey, address value) external returns (string memory json);
function serializeBytes32(string calldata objectKey, string calldata valueKey, bytes32 value) external returns (string memory json);
function serializeString(string calldata objectKey, string calldata valueKey, string calldata value) external returns (string memory json);
function serializeBytes(string calldata objectKey, string calldata valueKey, bytes calldata value) external returns (string memory json);
function serializeBool(string calldata objectKey, string calldata valueKey, bool[] calldata values) external returns (string memory json);
function serializeUint(string calldata objectKey, string calldata valueKey, uint256[] calldata values) external returns (string memory json);
function serializeInt(string calldata objectKey, string calldata valueKey, int256[] calldata values) external returns (string memory json);
function serializeAddress(string calldata objectKey, string calldata valueKey, address[] calldata values) external returns (string memory json);
function serializeBytes32(string calldata objectKey, string calldata valueKey, bytes32[] calldata values) external returns (string memory json);
function serializeString(string calldata objectKey, string calldata valueKey, string[] calldata values) external returns (string memory json);
function serializeBytes(string calldata objectKey, string calldata valueKey, bytes[] calldata values) external returns (string memory json);
function serializeJsonType(string calldata typeDescription, bytes calldata value) external pure returns (string memory json);
function serializeJsonType(string calldata objectKey, string calldata valueKey, string calldata typeDescription, bytes calldata value) external returns (string memory json);
function writeJson(string calldata json, string calldata path) external;
function writeJson(string calldata json, string calldata path, string calldata valueKey) external;
function keyExistsToml(string calldata toml, string calldata key) external view returns (bool);
function parseToml(string calldata toml) external pure returns (bytes memory abiEncodedData);
function parseToml(string calldata toml, string calldata key) external pure returns (bytes memory abiEncodedData);
function parseTomlUint(string calldata toml, string calldata key) external pure returns (uint256);
function parseTomlUintArray(string calldata toml, string calldata key) external pure returns (uint256[] memory);
function parseTomlInt(string calldata toml, string calldata key) external pure returns (int256);
function parseTomlIntArray(string calldata toml, string calldata key) external pure returns (int256[] memory);
function parseTomlBool(string calldata toml, string calldata key) external pure returns (bool);
function parseTomlBoolArray(string calldata toml, string calldata key) external pure returns (bool[] memory);
function parseTomlAddress(string calldata toml, string calldata key) external pure returns (address);
function parseTomlAddressArray(string calldata toml, string calldata key) external pure returns (address[] memory);
function parseTomlString(string calldata toml, string calldata key) external pure returns (string memory);
function parseTomlStringArray(string calldata toml, string calldata key) external pure returns (string[] memory);
function parseTomlBytes(string calldata toml, string calldata key) external pure returns (bytes memory);
function parseTomlBytesArray(string calldata toml, string calldata key) external pure returns (bytes[] memory);
function parseTomlBytes32(string calldata toml, string calldata key) external pure returns (bytes32);
function parseTomlBytes32Array(string calldata toml, string calldata key) external pure returns (bytes32[] memory);
function parseTomlType(string calldata toml, string calldata typeDescription) external pure returns (bytes memory);
function parseTomlType(string calldata toml, string calldata key, string calldata typeDescription) external pure returns (bytes memory);
function parseTomlTypeArray(string calldata toml, string calldata key, string calldata typeDescription) external pure returns (bytes memory);
function parseTomlKeys(string calldata toml, string calldata key) external pure returns (string[] memory keys);
function writeToml(string calldata json, string calldata path) external;
function writeToml(string calldata json, string calldata path, string calldata valueKey) external;
function createWallet(string calldata walletLabel) external returns (Wallet memory wallet);
function createWallet(uint256 privateKey) external returns (Wallet memory wallet);
function createWallet(uint256 privateKey, string calldata walletLabel) external returns (Wallet memory wallet);
function sign(Wallet calldata wallet, bytes32 digest) external returns (uint8 v, bytes32 r, bytes32 s);
function signCompact(Wallet calldata wallet, bytes32 digest) external returns (bytes32 r, bytes32 vs);
function sign(uint256 privateKey, bytes32 digest) external pure returns (uint8 v, bytes32 r, bytes32 s);
function signCompact(uint256 privateKey, bytes32 digest) external pure returns (bytes32 r, bytes32 vs);
function sign(bytes32 digest) external pure returns (uint8 v, bytes32 r, bytes32 s);
function signCompact(bytes32 digest) external pure returns (bytes32 r, bytes32 vs);
function sign(address signer, bytes32 digest) external pure returns (uint8 v, bytes32 r, bytes32 s);
function signCompact(address signer, bytes32 digest) external pure returns (bytes32 r, bytes32 vs);
function signP256(uint256 privateKey, bytes32 digest) external pure returns (bytes32 r, bytes32 s);
function publicKeyP256(uint256 privateKey) external pure returns (uint256 publicKeyX, uint256 publicKeyY);
function deriveKey(string calldata mnemonic, uint32 index) external pure returns (uint256 privateKey);
function deriveKey(string calldata mnemonic, string calldata derivationPath, uint32 index) external pure returns (uint256 privateKey);
function deriveKey(string calldata mnemonic, uint32 index, string calldata language) external pure returns (uint256 privateKey);
function deriveKey(string calldata mnemonic, string calldata derivationPath, uint32 index, string calldata language) external pure returns (uint256 privateKey);
function rememberKey(uint256 privateKey) external returns (address keyAddr);
function rememberKeys(string calldata mnemonic, string calldata derivationPath, uint32 count) external returns (address[] memory keyAddrs);
function rememberKeys(string calldata mnemonic, string calldata derivationPath, string calldata language, uint32 count) external returns (address[] memory keyAddrs);
function label(address account, string calldata newLabel) external;
function getLabel(address account) external view returns (string memory currentLabel);
function computeCreateAddress(address deployer, uint256 nonce) external pure returns (address);
function computeCreate2Address(bytes32 salt, bytes32 initCodeHash, address deployer) external pure returns (address);
function computeCreate2Address(bytes32 salt, bytes32 initCodeHash) external pure returns (address);
function toBase64(bytes calldata data) external pure returns (string memory);
function toBase64(string calldata data) external pure returns (string memory);
function toBase64URL(bytes calldata data) external pure returns (string memory);
function toBase64URL(string calldata data) external pure returns (string memory);
function ensNamehash(string calldata name) external pure returns (bytes32);
function randomUint() external returns (uint256);
function randomUint(uint256 min, uint256 max) external returns (uint256);
function randomUint(uint256 bits) external view returns (uint256);
function randomAddress() external returns (address);
function randomInt() external view returns (int256);
function randomInt(uint256 bits) external view returns (int256);
function randomBool() external view returns (bool);
function randomBytes(uint256 len) external view returns (bytes memory);
function randomBytes4() external view returns (bytes4);
function randomBytes8() external view returns (bytes8);
function pauseTracing() external view;
function resumeTracing() external view;
function copyStorage(address from, address to) external;
function setArbitraryStorage(address target) external;
function setArbitraryStorage(address target, bool overwrite) external;
function sort(uint256[] calldata array) external returns (uint256[] memory);
function shuffle(uint256[] calldata array) external returns (uint256[] memory);
function interceptInitcode() external;
}
Modules§
- abi
- Contains dynamic ABI definitions for this contract.
Structs§
- Access
List Item - An EIP-2930 access list item.
- Account
Access - The result of a
stopAndReturnStateDiff
call. - Broadcast
TxSummary - Represents a transaction’s broadcast details.
- Chain
Info - Information on the chain and fork.
- Cheatcode
Error - Error thrown by cheatcodes.
Custom error with signature
CheatcodeError(string)
and selector0xeeaa9e6f
. - Debug
Step - The result of the
stopDebugTraceRecording
call - DirEntry
- A single entry in a directory listing. Returned by
readDir
. - EthGet
Logs - An RPC log object. Returned by
eth_getLogs
. - FfiResult
- The result of a
tryFfi
call. - FsMetadata
- Metadata information about a file.
- Gas
- Gas used. Returned by
lastCallGas
. - Log
- An Ethereum log. Returned by
getRecordedLogs
. - Potential
Revert - Represents a “potential” revert reason from a single subsequent call when using
vm.assumeNoReverts
. Reverts that match will result in a FOUNDRY::ASSUME rejection, whereas unmatched reverts will be surfaced as normal. - Rpc
- An RPC URL and its alias. Returned by
rpcUrlStructs
. - Signed
Delegation - Holds a signed EIP-7702 authorization for an authority account to delegate to an implementation.
- Storage
Access - The storage accessed during an
AccountAccess
. - Wallet
- A wallet with a public and private key.
- _expect
Cheatcode Revert_ 0Call - Expects an error on next cheatcode call with any revert data.
Function with signature
_expectCheatcodeRevert()
and selector0x79a4f48a
. - _expect
Cheatcode Revert_ 0Return - Expects an error on next cheatcode call with any revert data.
Container type for the return parameters of the
_expectCheatcodeRevert()
function. - _expect
Cheatcode Revert_ 1Call - Expects an error on next cheatcode call that starts with the revert data.
Function with signature
_expectCheatcodeRevert(bytes4)
and selector0x884cb0ae
. - _expect
Cheatcode Revert_ 1Return - Expects an error on next cheatcode call that starts with the revert data.
Container type for the return parameters of the
_expectCheatcodeRevert(bytes4)
function. - _expect
Cheatcode Revert_ 2Call - Expects an error on next cheatcode call that exactly matches the revert data.
Function with signature
_expectCheatcodeRevert(bytes)
and selector0x7843b44d
. - _expect
Cheatcode Revert_ 2Return - Expects an error on next cheatcode call that exactly matches the revert data.
Container type for the return parameters of the
_expectCheatcodeRevert(bytes)
function. - access
List Call - Utility cheatcode to set an EIP-2930 access list for all subsequent transactions.
Function with signature
accessList((address,bytes32[])[])
and selector0x743e4cb7
. - access
List Return - Utility cheatcode to set an EIP-2930 access list for all subsequent transactions.
Container type for the return parameters of the
accessList((address,bytes32[])[])
function. - accesses
Call - Gets all accessed reads and write slot from a
vm.record
session, for a given address. Function with signatureaccesses(address)
and selector0x65bc9481
. - accesses
Return - Gets all accessed reads and write slot from a
vm.record
session, for a given address. Container type for the return parameters of theaccesses(address)
function. - active
Fork Call - Returns the identifier of the currently active fork. Reverts if no fork is currently active.
Function with signature
activeFork()
and selector0x2f103f22
. - active
Fork Return - Returns the identifier of the currently active fork. Reverts if no fork is currently active.
Container type for the return parameters of the
activeFork()
function. - addr
Call - Gets the address for a given private key.
Function with signature
addr(uint256)
and selector0xffa18649
. - addr
Return - Gets the address for a given private key.
Container type for the return parameters of the
addr(uint256)
function. - allow
Cheatcodes Call - In forking mode, explicitly grant the given address cheatcode access.
Function with signature
allowCheatcodes(address)
and selector0xea060291
. - allow
Cheatcodes Return - In forking mode, explicitly grant the given address cheatcode access.
Container type for the return parameters of the
allowCheatcodes(address)
function. - assert
Approx EqAbs Decimal_ 0Call - Compares two
uint256
values. Expects difference to be less than or equal tomaxDelta
. Formats values with decimals in failure message. Function with signatureassertApproxEqAbsDecimal(uint256,uint256,uint256,uint256)
and selector0x045c55ce
. - assert
Approx EqAbs Decimal_ 0Return - Compares two
uint256
values. Expects difference to be less than or equal tomaxDelta
. Formats values with decimals in failure message. Container type for the return parameters of theassertApproxEqAbsDecimal(uint256,uint256,uint256,uint256)
function. - assert
Approx EqAbs Decimal_ 1Call - Compares two
uint256
values. Expects difference to be less than or equal tomaxDelta
. Formats values with decimals in failure message. Includes error message into revert string on failure. Function with signatureassertApproxEqAbsDecimal(uint256,uint256,uint256,uint256,string)
and selector0x60429eb2
. - assert
Approx EqAbs Decimal_ 1Return - Compares two
uint256
values. Expects difference to be less than or equal tomaxDelta
. Formats values with decimals in failure message. Includes error message into revert string on failure. Container type for the return parameters of theassertApproxEqAbsDecimal(uint256,uint256,uint256,uint256,string)
function. - assert
Approx EqAbs Decimal_ 2Call - Compares two
int256
values. Expects difference to be less than or equal tomaxDelta
. Formats values with decimals in failure message. Function with signatureassertApproxEqAbsDecimal(int256,int256,uint256,uint256)
and selector0x3d5bc8bc
. - assert
Approx EqAbs Decimal_ 2Return - Compares two
int256
values. Expects difference to be less than or equal tomaxDelta
. Formats values with decimals in failure message. Container type for the return parameters of theassertApproxEqAbsDecimal(int256,int256,uint256,uint256)
function. - assert
Approx EqAbs Decimal_ 3Call - Compares two
int256
values. Expects difference to be less than or equal tomaxDelta
. Formats values with decimals in failure message. Includes error message into revert string on failure. Function with signatureassertApproxEqAbsDecimal(int256,int256,uint256,uint256,string)
and selector0x6a5066d4
. - assert
Approx EqAbs Decimal_ 3Return - Compares two
int256
values. Expects difference to be less than or equal tomaxDelta
. Formats values with decimals in failure message. Includes error message into revert string on failure. Container type for the return parameters of theassertApproxEqAbsDecimal(int256,int256,uint256,uint256,string)
function. - assert
Approx EqAbs_ 0Call - Compares two
uint256
values. Expects difference to be less than or equal tomaxDelta
. Function with signatureassertApproxEqAbs(uint256,uint256,uint256)
and selector0x16d207c6
. - assert
Approx EqAbs_ 0Return - Compares two
uint256
values. Expects difference to be less than or equal tomaxDelta
. Container type for the return parameters of theassertApproxEqAbs(uint256,uint256,uint256)
function. - assert
Approx EqAbs_ 1Call - Compares two
uint256
values. Expects difference to be less than or equal tomaxDelta
. Includes error message into revert string on failure. Function with signatureassertApproxEqAbs(uint256,uint256,uint256,string)
and selector0xf710b062
. - assert
Approx EqAbs_ 1Return - Compares two
uint256
values. Expects difference to be less than or equal tomaxDelta
. Includes error message into revert string on failure. Container type for the return parameters of theassertApproxEqAbs(uint256,uint256,uint256,string)
function. - assert
Approx EqAbs_ 2Call - Compares two
int256
values. Expects difference to be less than or equal tomaxDelta
. Function with signatureassertApproxEqAbs(int256,int256,uint256)
and selector0x240f839d
. - assert
Approx EqAbs_ 2Return - Compares two
int256
values. Expects difference to be less than or equal tomaxDelta
. Container type for the return parameters of theassertApproxEqAbs(int256,int256,uint256)
function. - assert
Approx EqAbs_ 3Call - Compares two
int256
values. Expects difference to be less than or equal tomaxDelta
. Includes error message into revert string on failure. Function with signatureassertApproxEqAbs(int256,int256,uint256,string)
and selector0x8289e621
. - assert
Approx EqAbs_ 3Return - Compares two
int256
values. Expects difference to be less than or equal tomaxDelta
. Includes error message into revert string on failure. Container type for the return parameters of theassertApproxEqAbs(int256,int256,uint256,string)
function. - assert
Approx EqRel Decimal_ 0Call - Compares two
uint256
values. Expects relative difference in percents to be less than or equal tomaxPercentDelta
.maxPercentDelta
is an 18 decimal fixed point number, where 1e18 == 100% Formats values with decimals in failure message. Function with signatureassertApproxEqRelDecimal(uint256,uint256,uint256,uint256)
and selector0x21ed2977
. - assert
Approx EqRel Decimal_ 0Return - Compares two
uint256
values. Expects relative difference in percents to be less than or equal tomaxPercentDelta
.maxPercentDelta
is an 18 decimal fixed point number, where 1e18 == 100% Formats values with decimals in failure message. Container type for the return parameters of theassertApproxEqRelDecimal(uint256,uint256,uint256,uint256)
function. - assert
Approx EqRel Decimal_ 1Call - Compares two
uint256
values. Expects relative difference in percents to be less than or equal tomaxPercentDelta
.maxPercentDelta
is an 18 decimal fixed point number, where 1e18 == 100% Formats values with decimals in failure message. Includes error message into revert string on failure. Function with signatureassertApproxEqRelDecimal(uint256,uint256,uint256,uint256,string)
and selector0x82d6c8fd
. - assert
Approx EqRel Decimal_ 1Return - Compares two
uint256
values. Expects relative difference in percents to be less than or equal tomaxPercentDelta
.maxPercentDelta
is an 18 decimal fixed point number, where 1e18 == 100% Formats values with decimals in failure message. Includes error message into revert string on failure. Container type for the return parameters of theassertApproxEqRelDecimal(uint256,uint256,uint256,uint256,string)
function. - assert
Approx EqRel Decimal_ 2Call - Compares two
int256
values. Expects relative difference in percents to be less than or equal tomaxPercentDelta
.maxPercentDelta
is an 18 decimal fixed point number, where 1e18 == 100% Formats values with decimals in failure message. Function with signatureassertApproxEqRelDecimal(int256,int256,uint256,uint256)
and selector0xabbf21cc
. - assert
Approx EqRel Decimal_ 2Return - Compares two
int256
values. Expects relative difference in percents to be less than or equal tomaxPercentDelta
.maxPercentDelta
is an 18 decimal fixed point number, where 1e18 == 100% Formats values with decimals in failure message. Container type for the return parameters of theassertApproxEqRelDecimal(int256,int256,uint256,uint256)
function. - assert
Approx EqRel Decimal_ 3Call - Compares two
int256
values. Expects relative difference in percents to be less than or equal tomaxPercentDelta
.maxPercentDelta
is an 18 decimal fixed point number, where 1e18 == 100% Formats values with decimals in failure message. Includes error message into revert string on failure. Function with signatureassertApproxEqRelDecimal(int256,int256,uint256,uint256,string)
and selector0xfccc11c4
. - assert
Approx EqRel Decimal_ 3Return - Compares two
int256
values. Expects relative difference in percents to be less than or equal tomaxPercentDelta
.maxPercentDelta
is an 18 decimal fixed point number, where 1e18 == 100% Formats values with decimals in failure message. Includes error message into revert string on failure. Container type for the return parameters of theassertApproxEqRelDecimal(int256,int256,uint256,uint256,string)
function. - assert
Approx EqRel_ 0Call - Compares two
uint256
values. Expects relative difference in percents to be less than or equal tomaxPercentDelta
.maxPercentDelta
is an 18 decimal fixed point number, where 1e18 == 100% Function with signatureassertApproxEqRel(uint256,uint256,uint256)
and selector0x8cf25ef4
. - assert
Approx EqRel_ 0Return - Compares two
uint256
values. Expects relative difference in percents to be less than or equal tomaxPercentDelta
.maxPercentDelta
is an 18 decimal fixed point number, where 1e18 == 100% Container type for the return parameters of theassertApproxEqRel(uint256,uint256,uint256)
function. - assert
Approx EqRel_ 1Call - Compares two
uint256
values. Expects relative difference in percents to be less than or equal tomaxPercentDelta
.maxPercentDelta
is an 18 decimal fixed point number, where 1e18 == 100% Includes error message into revert string on failure. Function with signatureassertApproxEqRel(uint256,uint256,uint256,string)
and selector0x1ecb7d33
. - assert
Approx EqRel_ 1Return - Compares two
uint256
values. Expects relative difference in percents to be less than or equal tomaxPercentDelta
.maxPercentDelta
is an 18 decimal fixed point number, where 1e18 == 100% Includes error message into revert string on failure. Container type for the return parameters of theassertApproxEqRel(uint256,uint256,uint256,string)
function. - assert
Approx EqRel_ 2Call - Compares two
int256
values. Expects relative difference in percents to be less than or equal tomaxPercentDelta
.maxPercentDelta
is an 18 decimal fixed point number, where 1e18 == 100% Function with signatureassertApproxEqRel(int256,int256,uint256)
and selector0xfea2d14f
. - assert
Approx EqRel_ 2Return - Compares two
int256
values. Expects relative difference in percents to be less than or equal tomaxPercentDelta
.maxPercentDelta
is an 18 decimal fixed point number, where 1e18 == 100% Container type for the return parameters of theassertApproxEqRel(int256,int256,uint256)
function. - assert
Approx EqRel_ 3Call - Compares two
int256
values. Expects relative difference in percents to be less than or equal tomaxPercentDelta
.maxPercentDelta
is an 18 decimal fixed point number, where 1e18 == 100% Includes error message into revert string on failure. Function with signatureassertApproxEqRel(int256,int256,uint256,string)
and selector0xef277d72
. - assert
Approx EqRel_ 3Return - Compares two
int256
values. Expects relative difference in percents to be less than or equal tomaxPercentDelta
.maxPercentDelta
is an 18 decimal fixed point number, where 1e18 == 100% Includes error message into revert string on failure. Container type for the return parameters of theassertApproxEqRel(int256,int256,uint256,string)
function. - assert
EqDecimal_ 0Call - Asserts that two
uint256
values are equal, formatting them with decimals in failure message. Function with signatureassertEqDecimal(uint256,uint256,uint256)
and selector0x27af7d9c
. - assert
EqDecimal_ 0Return - Asserts that two
uint256
values are equal, formatting them with decimals in failure message. Container type for the return parameters of theassertEqDecimal(uint256,uint256,uint256)
function. - assert
EqDecimal_ 1Call - Asserts that two
uint256
values are equal, formatting them with decimals in failure message. Includes error message into revert string on failure. Function with signatureassertEqDecimal(uint256,uint256,uint256,string)
and selector0xd0cbbdef
. - assert
EqDecimal_ 1Return - Asserts that two
uint256
values are equal, formatting them with decimals in failure message. Includes error message into revert string on failure. Container type for the return parameters of theassertEqDecimal(uint256,uint256,uint256,string)
function. - assert
EqDecimal_ 2Call - Asserts that two
int256
values are equal, formatting them with decimals in failure message. Function with signatureassertEqDecimal(int256,int256,uint256)
and selector0x48016c04
. - assert
EqDecimal_ 2Return - Asserts that two
int256
values are equal, formatting them with decimals in failure message. Container type for the return parameters of theassertEqDecimal(int256,int256,uint256)
function. - assert
EqDecimal_ 3Call - Asserts that two
int256
values are equal, formatting them with decimals in failure message. Includes error message into revert string on failure. Function with signatureassertEqDecimal(int256,int256,uint256,string)
and selector0x7e77b0c5
. - assert
EqDecimal_ 3Return - Asserts that two
int256
values are equal, formatting them with decimals in failure message. Includes error message into revert string on failure. Container type for the return parameters of theassertEqDecimal(int256,int256,uint256,string)
function. - assert
Eq_ 0Call - Asserts that two
bool
values are equal. Function with signatureassertEq(bool,bool)
and selector0xf7fe3477
. - assert
Eq_ 0Return - Asserts that two
bool
values are equal. Container type for the return parameters of theassertEq(bool,bool)
function. - assert
Eq_ 1Call - Asserts that two
bool
values are equal and includes error message into revert string on failure. Function with signatureassertEq(bool,bool,string)
and selector0x4db19e7e
. - assert
Eq_ 1Return - Asserts that two
bool
values are equal and includes error message into revert string on failure. Container type for the return parameters of theassertEq(bool,bool,string)
function. - assert
Eq_ 2Call - Asserts that two
uint256
values are equal. Function with signatureassertEq(uint256,uint256)
and selector0x98296c54
. - assert
Eq_ 2Return - Asserts that two
uint256
values are equal. Container type for the return parameters of theassertEq(uint256,uint256)
function. - assert
Eq_ 3Call - Asserts that two
uint256
values are equal and includes error message into revert string on failure. Function with signatureassertEq(uint256,uint256,string)
and selector0x88b44c85
. - assert
Eq_ 3Return - Asserts that two
uint256
values are equal and includes error message into revert string on failure. Container type for the return parameters of theassertEq(uint256,uint256,string)
function. - assert
Eq_ 4Call - Asserts that two
int256
values are equal. Function with signatureassertEq(int256,int256)
and selector0xfe74f05b
. - assert
Eq_ 4Return - Asserts that two
int256
values are equal. Container type for the return parameters of theassertEq(int256,int256)
function. - assert
Eq_ 5Call - Asserts that two
int256
values are equal and includes error message into revert string on failure. Function with signatureassertEq(int256,int256,string)
and selector0x714a2f13
. - assert
Eq_ 5Return - Asserts that two
int256
values are equal and includes error message into revert string on failure. Container type for the return parameters of theassertEq(int256,int256,string)
function. - assert
Eq_ 6Call - Asserts that two
address
values are equal. Function with signatureassertEq(address,address)
and selector0x515361f6
. - assert
Eq_ 6Return - Asserts that two
address
values are equal. Container type for the return parameters of theassertEq(address,address)
function. - assert
Eq_ 7Call - Asserts that two
address
values are equal and includes error message into revert string on failure. Function with signatureassertEq(address,address,string)
and selector0x2f2769d1
. - assert
Eq_ 7Return - Asserts that two
address
values are equal and includes error message into revert string on failure. Container type for the return parameters of theassertEq(address,address,string)
function. - assert
Eq_ 8Call - Asserts that two
bytes32
values are equal. Function with signatureassertEq(bytes32,bytes32)
and selector0x7c84c69b
. - assert
Eq_ 8Return - Asserts that two
bytes32
values are equal. Container type for the return parameters of theassertEq(bytes32,bytes32)
function. - assert
Eq_ 9Call - Asserts that two
bytes32
values are equal and includes error message into revert string on failure. Function with signatureassertEq(bytes32,bytes32,string)
and selector0xc1fa1ed0
. - assert
Eq_ 9Return - Asserts that two
bytes32
values are equal and includes error message into revert string on failure. Container type for the return parameters of theassertEq(bytes32,bytes32,string)
function. - assert
Eq_ 10Call - Asserts that two
string
values are equal. Function with signatureassertEq(string,string)
and selector0xf320d963
. - assert
Eq_ 10Return - Asserts that two
string
values are equal. Container type for the return parameters of theassertEq(string,string)
function. - assert
Eq_ 11Call - Asserts that two
string
values are equal and includes error message into revert string on failure. Function with signatureassertEq(string,string,string)
and selector0x36f656d8
. - assert
Eq_ 11Return - Asserts that two
string
values are equal and includes error message into revert string on failure. Container type for the return parameters of theassertEq(string,string,string)
function. - assert
Eq_ 12Call - Asserts that two
bytes
values are equal. Function with signatureassertEq(bytes,bytes)
and selector0x97624631
. - assert
Eq_ 12Return - Asserts that two
bytes
values are equal. Container type for the return parameters of theassertEq(bytes,bytes)
function. - assert
Eq_ 13Call - Asserts that two
bytes
values are equal and includes error message into revert string on failure. Function with signatureassertEq(bytes,bytes,string)
and selector0xe24fed00
. - assert
Eq_ 13Return - Asserts that two
bytes
values are equal and includes error message into revert string on failure. Container type for the return parameters of theassertEq(bytes,bytes,string)
function. - assert
Eq_ 14Call - Asserts that two arrays of
bool
values are equal. Function with signatureassertEq(bool[],bool[])
and selector0x707df785
. - assert
Eq_ 14Return - Asserts that two arrays of
bool
values are equal. Container type for the return parameters of theassertEq(bool[],bool[])
function. - assert
Eq_ 15Call - Asserts that two arrays of
bool
values are equal and includes error message into revert string on failure. Function with signatureassertEq(bool[],bool[],string)
and selector0xe48a8f8d
. - assert
Eq_ 15Return - Asserts that two arrays of
bool
values are equal and includes error message into revert string on failure. Container type for the return parameters of theassertEq(bool[],bool[],string)
function. - assert
Eq_ 16Call - Asserts that two arrays of
uint256 values are equal. Function with signature
assertEq(uint256[],uint256[])and selector
0x975d5a12`. - assert
Eq_ 16Return - Asserts that two arrays of
uint256 values are equal. Container type for the return parameters of the [
assertEq(uint256[],uint256[])`](assertEq_16Call) function. - assert
Eq_ 17Call - Asserts that two arrays of
uint256
values are equal and includes error message into revert string on failure. Function with signatureassertEq(uint256[],uint256[],string)
and selector0x5d18c73a
. - assert
Eq_ 17Return - Asserts that two arrays of
uint256
values are equal and includes error message into revert string on failure. Container type for the return parameters of theassertEq(uint256[],uint256[],string)
function. - assert
Eq_ 18Call - Asserts that two arrays of
int256
values are equal. Function with signatureassertEq(int256[],int256[])
and selector0x711043ac
. - assert
Eq_ 18Return - Asserts that two arrays of
int256
values are equal. Container type for the return parameters of theassertEq(int256[],int256[])
function. - assert
Eq_ 19Call - Asserts that two arrays of
int256
values are equal and includes error message into revert string on failure. Function with signatureassertEq(int256[],int256[],string)
and selector0x191f1b30
. - assert
Eq_ 19Return - Asserts that two arrays of
int256
values are equal and includes error message into revert string on failure. Container type for the return parameters of theassertEq(int256[],int256[],string)
function. - assert
Eq_ 20Call - Asserts that two arrays of
address
values are equal. Function with signatureassertEq(address[],address[])
and selector0x3868ac34
. - assert
Eq_ 20Return - Asserts that two arrays of
address
values are equal. Container type for the return parameters of theassertEq(address[],address[])
function. - assert
Eq_ 21Call - Asserts that two arrays of
address
values are equal and includes error message into revert string on failure. Function with signatureassertEq(address[],address[],string)
and selector0x3e9173c5
. - assert
Eq_ 21Return - Asserts that two arrays of
address
values are equal and includes error message into revert string on failure. Container type for the return parameters of theassertEq(address[],address[],string)
function. - assert
Eq_ 22Call - Asserts that two arrays of
bytes32
values are equal. Function with signatureassertEq(bytes32[],bytes32[])
and selector0x0cc9ee84
. - assert
Eq_ 22Return - Asserts that two arrays of
bytes32
values are equal. Container type for the return parameters of theassertEq(bytes32[],bytes32[])
function. - assert
Eq_ 23Call - Asserts that two arrays of
bytes32
values are equal and includes error message into revert string on failure. Function with signatureassertEq(bytes32[],bytes32[],string)
and selector0xe03e9177
. - assert
Eq_ 23Return - Asserts that two arrays of
bytes32
values are equal and includes error message into revert string on failure. Container type for the return parameters of theassertEq(bytes32[],bytes32[],string)
function. - assert
Eq_ 24Call - Asserts that two arrays of
string
values are equal. Function with signatureassertEq(string[],string[])
and selector0xcf1c049c
. - assert
Eq_ 24Return - Asserts that two arrays of
string
values are equal. Container type for the return parameters of theassertEq(string[],string[])
function. - assert
Eq_ 25Call - Asserts that two arrays of
string
values are equal and includes error message into revert string on failure. Function with signatureassertEq(string[],string[],string)
and selector0xeff6b27d
. - assert
Eq_ 25Return - Asserts that two arrays of
string
values are equal and includes error message into revert string on failure. Container type for the return parameters of theassertEq(string[],string[],string)
function. - assert
Eq_ 26Call - Asserts that two arrays of
bytes
values are equal. Function with signatureassertEq(bytes[],bytes[])
and selector0xe5fb9b4a
. - assert
Eq_ 26Return - Asserts that two arrays of
bytes
values are equal. Container type for the return parameters of theassertEq(bytes[],bytes[])
function. - assert
Eq_ 27Call - Asserts that two arrays of
bytes
values are equal and includes error message into revert string on failure. Function with signatureassertEq(bytes[],bytes[],string)
and selector0xf413f0b6
. - assert
Eq_ 27Return - Asserts that two arrays of
bytes
values are equal and includes error message into revert string on failure. Container type for the return parameters of theassertEq(bytes[],bytes[],string)
function. - assert
False_ 0Call - Asserts that the given condition is false.
Function with signature
assertFalse(bool)
and selector0xa5982885
. - assert
False_ 0Return - Asserts that the given condition is false.
Container type for the return parameters of the
assertFalse(bool)
function. - assert
False_ 1Call - Asserts that the given condition is false and includes error message into revert string on failure.
Function with signature
assertFalse(bool,string)
and selector0x7ba04809
. - assert
False_ 1Return - Asserts that the given condition is false and includes error message into revert string on failure.
Container type for the return parameters of the
assertFalse(bool,string)
function. - assert
GeDecimal_ 0Call - Compares two
uint256
values. Expects first value to be greater than or equal to second. Formats values with decimals in failure message. Function with signatureassertGeDecimal(uint256,uint256,uint256)
and selector0x3d1fe08a
. - assert
GeDecimal_ 0Return - Compares two
uint256
values. Expects first value to be greater than or equal to second. Formats values with decimals in failure message. Container type for the return parameters of theassertGeDecimal(uint256,uint256,uint256)
function. - assert
GeDecimal_ 1Call - Compares two
uint256
values. Expects first value to be greater than or equal to second. Formats values with decimals in failure message. Includes error message into revert string on failure. Function with signatureassertGeDecimal(uint256,uint256,uint256,string)
and selector0x8bff9133
. - assert
GeDecimal_ 1Return - Compares two
uint256
values. Expects first value to be greater than or equal to second. Formats values with decimals in failure message. Includes error message into revert string on failure. Container type for the return parameters of theassertGeDecimal(uint256,uint256,uint256,string)
function. - assert
GeDecimal_ 2Call - Compares two
int256
values. Expects first value to be greater than or equal to second. Formats values with decimals in failure message. Function with signatureassertGeDecimal(int256,int256,uint256)
and selector0xdc28c0f1
. - assert
GeDecimal_ 2Return - Compares two
int256
values. Expects first value to be greater than or equal to second. Formats values with decimals in failure message. Container type for the return parameters of theassertGeDecimal(int256,int256,uint256)
function. - assert
GeDecimal_ 3Call - Compares two
int256
values. Expects first value to be greater than or equal to second. Formats values with decimals in failure message. Includes error message into revert string on failure. Function with signatureassertGeDecimal(int256,int256,uint256,string)
and selector0x5df93c9b
. - assert
GeDecimal_ 3Return - Compares two
int256
values. Expects first value to be greater than or equal to second. Formats values with decimals in failure message. Includes error message into revert string on failure. Container type for the return parameters of theassertGeDecimal(int256,int256,uint256,string)
function. - assert
Ge_ 0Call - Compares two
uint256
values. Expects first value to be greater than or equal to second. Function with signatureassertGe(uint256,uint256)
and selector0xa8d4d1d9
. - assert
Ge_ 0Return - Compares two
uint256
values. Expects first value to be greater than or equal to second. Container type for the return parameters of theassertGe(uint256,uint256)
function. - assert
Ge_ 1Call - Compares two
uint256
values. Expects first value to be greater than or equal to second. Includes error message into revert string on failure. Function with signatureassertGe(uint256,uint256,string)
and selector0xe25242c0
. - assert
Ge_ 1Return - Compares two
uint256
values. Expects first value to be greater than or equal to second. Includes error message into revert string on failure. Container type for the return parameters of theassertGe(uint256,uint256,string)
function. - assert
Ge_ 2Call - Compares two
int256
values. Expects first value to be greater than or equal to second. Function with signatureassertGe(int256,int256)
and selector0x0a30b771
. - assert
Ge_ 2Return - Compares two
int256
values. Expects first value to be greater than or equal to second. Container type for the return parameters of theassertGe(int256,int256)
function. - assert
Ge_ 3Call - Compares two
int256
values. Expects first value to be greater than or equal to second. Includes error message into revert string on failure. Function with signatureassertGe(int256,int256,string)
and selector0xa84328dd
. - assert
Ge_ 3Return - Compares two
int256
values. Expects first value to be greater than or equal to second. Includes error message into revert string on failure. Container type for the return parameters of theassertGe(int256,int256,string)
function. - assert
GtDecimal_ 0Call - Compares two
uint256
values. Expects first value to be greater than second. Formats values with decimals in failure message. Function with signatureassertGtDecimal(uint256,uint256,uint256)
and selector0xeccd2437
. - assert
GtDecimal_ 0Return - Compares two
uint256
values. Expects first value to be greater than second. Formats values with decimals in failure message. Container type for the return parameters of theassertGtDecimal(uint256,uint256,uint256)
function. - assert
GtDecimal_ 1Call - Compares two
uint256
values. Expects first value to be greater than second. Formats values with decimals in failure message. Includes error message into revert string on failure. Function with signatureassertGtDecimal(uint256,uint256,uint256,string)
and selector0x64949a8d
. - assert
GtDecimal_ 1Return - Compares two
uint256
values. Expects first value to be greater than second. Formats values with decimals in failure message. Includes error message into revert string on failure. Container type for the return parameters of theassertGtDecimal(uint256,uint256,uint256,string)
function. - assert
GtDecimal_ 2Call - Compares two
int256
values. Expects first value to be greater than second. Formats values with decimals in failure message. Function with signatureassertGtDecimal(int256,int256,uint256)
and selector0x78611f0e
. - assert
GtDecimal_ 2Return - Compares two
int256
values. Expects first value to be greater than second. Formats values with decimals in failure message. Container type for the return parameters of theassertGtDecimal(int256,int256,uint256)
function. - assert
GtDecimal_ 3Call - Compares two
int256
values. Expects first value to be greater than second. Formats values with decimals in failure message. Includes error message into revert string on failure. Function with signatureassertGtDecimal(int256,int256,uint256,string)
and selector0x04a5c7ab
. - assert
GtDecimal_ 3Return - Compares two
int256
values. Expects first value to be greater than second. Formats values with decimals in failure message. Includes error message into revert string on failure. Container type for the return parameters of theassertGtDecimal(int256,int256,uint256,string)
function. - assert
Gt_ 0Call - Compares two
uint256
values. Expects first value to be greater than second. Function with signatureassertGt(uint256,uint256)
and selector0xdb07fcd2
. - assert
Gt_ 0Return - Compares two
uint256
values. Expects first value to be greater than second. Container type for the return parameters of theassertGt(uint256,uint256)
function. - assert
Gt_ 1Call - Compares two
uint256
values. Expects first value to be greater than second. Includes error message into revert string on failure. Function with signatureassertGt(uint256,uint256,string)
and selector0xd9a3c4d2
. - assert
Gt_ 1Return - Compares two
uint256
values. Expects first value to be greater than second. Includes error message into revert string on failure. Container type for the return parameters of theassertGt(uint256,uint256,string)
function. - assert
Gt_ 2Call - Compares two
int256
values. Expects first value to be greater than second. Function with signatureassertGt(int256,int256)
and selector0x5a362d45
. - assert
Gt_ 2Return - Compares two
int256
values. Expects first value to be greater than second. Container type for the return parameters of theassertGt(int256,int256)
function. - assert
Gt_ 3Call - Compares two
int256
values. Expects first value to be greater than second. Includes error message into revert string on failure. Function with signatureassertGt(int256,int256,string)
and selector0xf8d33b9b
. - assert
Gt_ 3Return - Compares two
int256
values. Expects first value to be greater than second. Includes error message into revert string on failure. Container type for the return parameters of theassertGt(int256,int256,string)
function. - assert
LeDecimal_ 0Call - Compares two
uint256
values. Expects first value to be less than or equal to second. Formats values with decimals in failure message. Function with signatureassertLeDecimal(uint256,uint256,uint256)
and selector0xc304aab7
. - assert
LeDecimal_ 0Return - Compares two
uint256
values. Expects first value to be less than or equal to second. Formats values with decimals in failure message. Container type for the return parameters of theassertLeDecimal(uint256,uint256,uint256)
function. - assert
LeDecimal_ 1Call - Compares two
uint256
values. Expects first value to be less than or equal to second. Formats values with decimals in failure message. Includes error message into revert string on failure. Function with signatureassertLeDecimal(uint256,uint256,uint256,string)
and selector0x7fefbbe0
. - assert
LeDecimal_ 1Return - Compares two
uint256
values. Expects first value to be less than or equal to second. Formats values with decimals in failure message. Includes error message into revert string on failure. Container type for the return parameters of theassertLeDecimal(uint256,uint256,uint256,string)
function. - assert
LeDecimal_ 2Call - Compares two
int256
values. Expects first value to be less than or equal to second. Formats values with decimals in failure message. Function with signatureassertLeDecimal(int256,int256,uint256)
and selector0x11d1364a
. - assert
LeDecimal_ 2Return - Compares two
int256
values. Expects first value to be less than or equal to second. Formats values with decimals in failure message. Container type for the return parameters of theassertLeDecimal(int256,int256,uint256)
function. - assert
LeDecimal_ 3Call - Compares two
int256
values. Expects first value to be less than or equal to second. Formats values with decimals in failure message. Includes error message into revert string on failure. Function with signatureassertLeDecimal(int256,int256,uint256,string)
and selector0xaa5cf788
. - assert
LeDecimal_ 3Return - Compares two
int256
values. Expects first value to be less than or equal to second. Formats values with decimals in failure message. Includes error message into revert string on failure. Container type for the return parameters of theassertLeDecimal(int256,int256,uint256,string)
function. - assert
Le_ 0Call - Compares two
uint256
values. Expects first value to be less than or equal to second. Function with signatureassertLe(uint256,uint256)
and selector0x8466f415
. - assert
Le_ 0Return - Compares two
uint256
values. Expects first value to be less than or equal to second. Container type for the return parameters of theassertLe(uint256,uint256)
function. - assert
Le_ 1Call - Compares two
uint256
values. Expects first value to be less than or equal to second. Includes error message into revert string on failure. Function with signatureassertLe(uint256,uint256,string)
and selector0xd17d4b0d
. - assert
Le_ 1Return - Compares two
uint256
values. Expects first value to be less than or equal to second. Includes error message into revert string on failure. Container type for the return parameters of theassertLe(uint256,uint256,string)
function. - assert
Le_ 2Call - Compares two
int256
values. Expects first value to be less than or equal to second. Function with signatureassertLe(int256,int256)
and selector0x95fd154e
. - assert
Le_ 2Return - Compares two
int256
values. Expects first value to be less than or equal to second. Container type for the return parameters of theassertLe(int256,int256)
function. - assert
Le_ 3Call - Compares two
int256
values. Expects first value to be less than or equal to second. Includes error message into revert string on failure. Function with signatureassertLe(int256,int256,string)
and selector0x4dfe692c
. - assert
Le_ 3Return - Compares two
int256
values. Expects first value to be less than or equal to second. Includes error message into revert string on failure. Container type for the return parameters of theassertLe(int256,int256,string)
function. - assert
LtDecimal_ 0Call - Compares two
uint256
values. Expects first value to be less than second. Formats values with decimals in failure message. Function with signatureassertLtDecimal(uint256,uint256,uint256)
and selector0x2077337e
. - assert
LtDecimal_ 0Return - Compares two
uint256
values. Expects first value to be less than second. Formats values with decimals in failure message. Container type for the return parameters of theassertLtDecimal(uint256,uint256,uint256)
function. - assert
LtDecimal_ 1Call - Compares two
uint256
values. Expects first value to be less than second. Formats values with decimals in failure message. Includes error message into revert string on failure. Function with signatureassertLtDecimal(uint256,uint256,uint256,string)
and selector0xa972d037
. - assert
LtDecimal_ 1Return - Compares two
uint256
values. Expects first value to be less than second. Formats values with decimals in failure message. Includes error message into revert string on failure. Container type for the return parameters of theassertLtDecimal(uint256,uint256,uint256,string)
function. - assert
LtDecimal_ 2Call - Compares two
int256
values. Expects first value to be less than second. Formats values with decimals in failure message. Function with signatureassertLtDecimal(int256,int256,uint256)
and selector0xdbe8d88b
. - assert
LtDecimal_ 2Return - Compares two
int256
values. Expects first value to be less than second. Formats values with decimals in failure message. Container type for the return parameters of theassertLtDecimal(int256,int256,uint256)
function. - assert
LtDecimal_ 3Call - Compares two
int256
values. Expects first value to be less than second. Formats values with decimals in failure message. Includes error message into revert string on failure. Function with signatureassertLtDecimal(int256,int256,uint256,string)
and selector0x40f0b4e0
. - assert
LtDecimal_ 3Return - Compares two
int256
values. Expects first value to be less than second. Formats values with decimals in failure message. Includes error message into revert string on failure. Container type for the return parameters of theassertLtDecimal(int256,int256,uint256,string)
function. - assert
Lt_ 0Call - Compares two
uint256
values. Expects first value to be less than second. Function with signatureassertLt(uint256,uint256)
and selector0xb12fc005
. - assert
Lt_ 0Return - Compares two
uint256
values. Expects first value to be less than second. Container type for the return parameters of theassertLt(uint256,uint256)
function. - assert
Lt_ 1Call - Compares two
uint256
values. Expects first value to be less than second. Includes error message into revert string on failure. Function with signatureassertLt(uint256,uint256,string)
and selector0x65d5c135
. - assert
Lt_ 1Return - Compares two
uint256
values. Expects first value to be less than second. Includes error message into revert string on failure. Container type for the return parameters of theassertLt(uint256,uint256,string)
function. - assert
Lt_ 2Call - Compares two
int256
values. Expects first value to be less than second. Function with signatureassertLt(int256,int256)
and selector0x3e914080
. - assert
Lt_ 2Return - Compares two
int256
values. Expects first value to be less than second. Container type for the return parameters of theassertLt(int256,int256)
function. - assert
Lt_ 3Call - Compares two
int256
values. Expects first value to be less than second. Includes error message into revert string on failure. Function with signatureassertLt(int256,int256,string)
and selector0x9ff531e3
. - assert
Lt_ 3Return - Compares two
int256
values. Expects first value to be less than second. Includes error message into revert string on failure. Container type for the return parameters of theassertLt(int256,int256,string)
function. - assert
NotEq Decimal_ 0Call - Asserts that two
uint256
values are not equal, formatting them with decimals in failure message. Function with signatureassertNotEqDecimal(uint256,uint256,uint256)
and selector0x669efca7
. - assert
NotEq Decimal_ 0Return - Asserts that two
uint256
values are not equal, formatting them with decimals in failure message. Container type for the return parameters of theassertNotEqDecimal(uint256,uint256,uint256)
function. - assert
NotEq Decimal_ 1Call - Asserts that two
uint256
values are not equal, formatting them with decimals in failure message. Includes error message into revert string on failure. Function with signatureassertNotEqDecimal(uint256,uint256,uint256,string)
and selector0xf5a55558
. - assert
NotEq Decimal_ 1Return - Asserts that two
uint256
values are not equal, formatting them with decimals in failure message. Includes error message into revert string on failure. Container type for the return parameters of theassertNotEqDecimal(uint256,uint256,uint256,string)
function. - assert
NotEq Decimal_ 2Call - Asserts that two
int256
values are not equal, formatting them with decimals in failure message. Function with signatureassertNotEqDecimal(int256,int256,uint256)
and selector0x14e75680
. - assert
NotEq Decimal_ 2Return - Asserts that two
int256
values are not equal, formatting them with decimals in failure message. Container type for the return parameters of theassertNotEqDecimal(int256,int256,uint256)
function. - assert
NotEq Decimal_ 3Call - Asserts that two
int256
values are not equal, formatting them with decimals in failure message. Includes error message into revert string on failure. Function with signatureassertNotEqDecimal(int256,int256,uint256,string)
and selector0x33949f0b
. - assert
NotEq Decimal_ 3Return - Asserts that two
int256
values are not equal, formatting them with decimals in failure message. Includes error message into revert string on failure. Container type for the return parameters of theassertNotEqDecimal(int256,int256,uint256,string)
function. - assert
NotEq_ 0Call - Asserts that two
bool
values are not equal. Function with signatureassertNotEq(bool,bool)
and selector0x236e4d66
. - assert
NotEq_ 0Return - Asserts that two
bool
values are not equal. Container type for the return parameters of theassertNotEq(bool,bool)
function. - assert
NotEq_ 1Call - Asserts that two
bool
values are not equal and includes error message into revert string on failure. Function with signatureassertNotEq(bool,bool,string)
and selector0x1091a261
. - assert
NotEq_ 1Return - Asserts that two
bool
values are not equal and includes error message into revert string on failure. Container type for the return parameters of theassertNotEq(bool,bool,string)
function. - assert
NotEq_ 2Call - Asserts that two
uint256
values are not equal. Function with signatureassertNotEq(uint256,uint256)
and selector0xb7909320
. - assert
NotEq_ 2Return - Asserts that two
uint256
values are not equal. Container type for the return parameters of theassertNotEq(uint256,uint256)
function. - assert
NotEq_ 3Call - Asserts that two
uint256
values are not equal and includes error message into revert string on failure. Function with signatureassertNotEq(uint256,uint256,string)
and selector0x98f9bdbd
. - assert
NotEq_ 3Return - Asserts that two
uint256
values are not equal and includes error message into revert string on failure. Container type for the return parameters of theassertNotEq(uint256,uint256,string)
function. - assert
NotEq_ 4Call - Asserts that two
int256
values are not equal. Function with signatureassertNotEq(int256,int256)
and selector0xf4c004e3
. - assert
NotEq_ 4Return - Asserts that two
int256
values are not equal. Container type for the return parameters of theassertNotEq(int256,int256)
function. - assert
NotEq_ 5Call - Asserts that two
int256
values are not equal and includes error message into revert string on failure. Function with signatureassertNotEq(int256,int256,string)
and selector0x4724c5b9
. - assert
NotEq_ 5Return - Asserts that two
int256
values are not equal and includes error message into revert string on failure. Container type for the return parameters of theassertNotEq(int256,int256,string)
function. - assert
NotEq_ 6Call - Asserts that two
address
values are not equal. Function with signatureassertNotEq(address,address)
and selector0xb12e1694
. - assert
NotEq_ 6Return - Asserts that two
address
values are not equal. Container type for the return parameters of theassertNotEq(address,address)
function. - assert
NotEq_ 7Call - Asserts that two
address
values are not equal and includes error message into revert string on failure. Function with signatureassertNotEq(address,address,string)
and selector0x8775a591
. - assert
NotEq_ 7Return - Asserts that two
address
values are not equal and includes error message into revert string on failure. Container type for the return parameters of theassertNotEq(address,address,string)
function. - assert
NotEq_ 8Call - Asserts that two
bytes32
values are not equal. Function with signatureassertNotEq(bytes32,bytes32)
and selector0x898e83fc
. - assert
NotEq_ 8Return - Asserts that two
bytes32
values are not equal. Container type for the return parameters of theassertNotEq(bytes32,bytes32)
function. - assert
NotEq_ 9Call - Asserts that two
bytes32
values are not equal and includes error message into revert string on failure. Function with signatureassertNotEq(bytes32,bytes32,string)
and selector0xb2332f51
. - assert
NotEq_ 9Return - Asserts that two
bytes32
values are not equal and includes error message into revert string on failure. Container type for the return parameters of theassertNotEq(bytes32,bytes32,string)
function. - assert
NotEq_ 10Call - Asserts that two
string
values are not equal. Function with signatureassertNotEq(string,string)
and selector0x6a8237b3
. - assert
NotEq_ 10Return - Asserts that two
string
values are not equal. Container type for the return parameters of theassertNotEq(string,string)
function. - assert
NotEq_ 11Call - Asserts that two
string
values are not equal and includes error message into revert string on failure. Function with signatureassertNotEq(string,string,string)
and selector0x78bdcea7
. - assert
NotEq_ 11Return - Asserts that two
string
values are not equal and includes error message into revert string on failure. Container type for the return parameters of theassertNotEq(string,string,string)
function. - assert
NotEq_ 12Call - Asserts that two
bytes
values are not equal. Function with signatureassertNotEq(bytes,bytes)
and selector0x3cf78e28
. - assert
NotEq_ 12Return - Asserts that two
bytes
values are not equal. Container type for the return parameters of theassertNotEq(bytes,bytes)
function. - assert
NotEq_ 13Call - Asserts that two
bytes
values are not equal and includes error message into revert string on failure. Function with signatureassertNotEq(bytes,bytes,string)
and selector0x9507540e
. - assert
NotEq_ 13Return - Asserts that two
bytes
values are not equal and includes error message into revert string on failure. Container type for the return parameters of theassertNotEq(bytes,bytes,string)
function. - assert
NotEq_ 14Call - Asserts that two arrays of
bool
values are not equal. Function with signatureassertNotEq(bool[],bool[])
and selector0x286fafea
. - assert
NotEq_ 14Return - Asserts that two arrays of
bool
values are not equal. Container type for the return parameters of theassertNotEq(bool[],bool[])
function. - assert
NotEq_ 15Call - Asserts that two arrays of
bool
values are not equal and includes error message into revert string on failure. Function with signatureassertNotEq(bool[],bool[],string)
and selector0x62c6f9fb
. - assert
NotEq_ 15Return - Asserts that two arrays of
bool
values are not equal and includes error message into revert string on failure. Container type for the return parameters of theassertNotEq(bool[],bool[],string)
function. - assert
NotEq_ 16Call - Asserts that two arrays of
uint256
values are not equal. Function with signatureassertNotEq(uint256[],uint256[])
and selector0x56f29cba
. - assert
NotEq_ 16Return - Asserts that two arrays of
uint256
values are not equal. Container type for the return parameters of theassertNotEq(uint256[],uint256[])
function. - assert
NotEq_ 17Call - Asserts that two arrays of
uint256
values are not equal and includes error message into revert string on failure. Function with signatureassertNotEq(uint256[],uint256[],string)
and selector0x9a7fbd8f
. - assert
NotEq_ 17Return - Asserts that two arrays of
uint256
values are not equal and includes error message into revert string on failure. Container type for the return parameters of theassertNotEq(uint256[],uint256[],string)
function. - assert
NotEq_ 18Call - Asserts that two arrays of
int256
values are not equal. Function with signatureassertNotEq(int256[],int256[])
and selector0x0b72f4ef
. - assert
NotEq_ 18Return - Asserts that two arrays of
int256
values are not equal. Container type for the return parameters of theassertNotEq(int256[],int256[])
function. - assert
NotEq_ 19Call - Asserts that two arrays of
int256
values are not equal and includes error message into revert string on failure. Function with signatureassertNotEq(int256[],int256[],string)
and selector0xd3977322
. - assert
NotEq_ 19Return - Asserts that two arrays of
int256
values are not equal and includes error message into revert string on failure. Container type for the return parameters of theassertNotEq(int256[],int256[],string)
function. - assert
NotEq_ 20Call - Asserts that two arrays of
address
values are not equal. Function with signatureassertNotEq(address[],address[])
and selector0x46d0b252
. - assert
NotEq_ 20Return - Asserts that two arrays of
address
values are not equal. Container type for the return parameters of theassertNotEq(address[],address[])
function. - assert
NotEq_ 21Call - Asserts that two arrays of
address
values are not equal and includes error message into revert string on failure. Function with signatureassertNotEq(address[],address[],string)
and selector0x72c7e0b5
. - assert
NotEq_ 21Return - Asserts that two arrays of
address
values are not equal and includes error message into revert string on failure. Container type for the return parameters of theassertNotEq(address[],address[],string)
function. - assert
NotEq_ 22Call - Asserts that two arrays of
bytes32
values are not equal. Function with signatureassertNotEq(bytes32[],bytes32[])
and selector0x0603ea68
. - assert
NotEq_ 22Return - Asserts that two arrays of
bytes32
values are not equal. Container type for the return parameters of theassertNotEq(bytes32[],bytes32[])
function. - assert
NotEq_ 23Call - Asserts that two arrays of
bytes32
values are not equal and includes error message into revert string on failure. Function with signatureassertNotEq(bytes32[],bytes32[],string)
and selector0xb873634c
. - assert
NotEq_ 23Return - Asserts that two arrays of
bytes32
values are not equal and includes error message into revert string on failure. Container type for the return parameters of theassertNotEq(bytes32[],bytes32[],string)
function. - assert
NotEq_ 24Call - Asserts that two arrays of
string
values are not equal. Function with signatureassertNotEq(string[],string[])
and selector0xbdfacbe8
. - assert
NotEq_ 24Return - Asserts that two arrays of
string
values are not equal. Container type for the return parameters of theassertNotEq(string[],string[])
function. - assert
NotEq_ 25Call - Asserts that two arrays of
string
values are not equal and includes error message into revert string on failure. Function with signatureassertNotEq(string[],string[],string)
and selector0xb67187f3
. - assert
NotEq_ 25Return - Asserts that two arrays of
string
values are not equal and includes error message into revert string on failure. Container type for the return parameters of theassertNotEq(string[],string[],string)
function. - assert
NotEq_ 26Call - Asserts that two arrays of
bytes
values are not equal. Function with signatureassertNotEq(bytes[],bytes[])
and selector0xedecd035
. - assert
NotEq_ 26Return - Asserts that two arrays of
bytes
values are not equal. Container type for the return parameters of theassertNotEq(bytes[],bytes[])
function. - assert
NotEq_ 27Call - Asserts that two arrays of
bytes
values are not equal and includes error message into revert string on failure. Function with signatureassertNotEq(bytes[],bytes[],string)
and selector0x1dcd1f68
. - assert
NotEq_ 27Return - Asserts that two arrays of
bytes
values are not equal and includes error message into revert string on failure. Container type for the return parameters of theassertNotEq(bytes[],bytes[],string)
function. - assert
True_ 0Call - Asserts that the given condition is true.
Function with signature
assertTrue(bool)
and selector0x0c9fd581
. - assert
True_ 0Return - Asserts that the given condition is true.
Container type for the return parameters of the
assertTrue(bool)
function. - assert
True_ 1Call - Asserts that the given condition is true and includes error message into revert string on failure.
Function with signature
assertTrue(bool,string)
and selector0xa34edc03
. - assert
True_ 1Return - Asserts that the given condition is true and includes error message into revert string on failure.
Container type for the return parameters of the
assertTrue(bool,string)
function. - assume
Call - If the condition is false, discard this run’s fuzz inputs and generate new ones.
Function with signature
assume(bool)
and selector0x4c63e562
. - assume
NoRevert_ 0Call - Discard this run’s fuzz inputs and generate new ones if next call reverted.
Function with signature
assumeNoRevert()
and selector0x285b366a
. - assume
NoRevert_ 0Return - Discard this run’s fuzz inputs and generate new ones if next call reverted.
Container type for the return parameters of the
assumeNoRevert()
function. - assume
NoRevert_ 1Call - Discard this run’s fuzz inputs and generate new ones if next call reverts with the potential revert parameters.
Function with signature
assumeNoRevert((address,bool,bytes))
and selector0xd8591eeb
. - assume
NoRevert_ 1Return - Discard this run’s fuzz inputs and generate new ones if next call reverts with the potential revert parameters.
Container type for the return parameters of the
assumeNoRevert((address,bool,bytes))
function. - assume
NoRevert_ 2Call - Discard this run’s fuzz inputs and generate new ones if next call reverts with the any of the potential revert parameters.
Function with signature
assumeNoRevert((address,bool,bytes)[])
and selector0x8a4592cc
. - assume
NoRevert_ 2Return - Discard this run’s fuzz inputs and generate new ones if next call reverts with the any of the potential revert parameters.
Container type for the return parameters of the
assumeNoRevert((address,bool,bytes)[])
function. - assume
Return - If the condition is false, discard this run’s fuzz inputs and generate new ones.
Container type for the return parameters of the
assume(bool)
function. - attach
Delegation Call - Designate the next call as an EIP-7702 transaction
Function with signature
attachDelegation((uint8,bytes32,bytes32,uint64,address))
and selector0x14ae3519
. - attach
Delegation Return - Designate the next call as an EIP-7702 transaction
Container type for the return parameters of the
attachDelegation((uint8,bytes32,bytes32,uint64,address))
function. - blob
Base FeeCall - Sets
block.blobbasefee
Function with signatureblobBaseFee(uint256)
and selector0x6d315d7e
. - blob
Base FeeReturn - Sets
block.blobbasefee
Container type for the return parameters of theblobBaseFee(uint256)
function. - blobhashes
Call - Sets the blobhashes in the transaction.
Not available on EVM versions before Cancun.
If used on unsupported EVM versions it will revert.
Function with signature
blobhashes(bytes32[])
and selector0x129de7eb
. - blobhashes
Return - Sets the blobhashes in the transaction.
Not available on EVM versions before Cancun.
If used on unsupported EVM versions it will revert.
Container type for the return parameters of the
blobhashes(bytes32[])
function. - breakpoint_
0Call - Writes a breakpoint to jump to in the debugger.
Function with signature
breakpoint(string)
and selector0xf0259e92
. - breakpoint_
0Return - Writes a breakpoint to jump to in the debugger.
Container type for the return parameters of the
breakpoint(string)
function. - breakpoint_
1Call - Writes a conditional breakpoint to jump to in the debugger.
Function with signature
breakpoint(string,bool)
and selector0xf7d39a8d
. - breakpoint_
1Return - Writes a conditional breakpoint to jump to in the debugger.
Container type for the return parameters of the
breakpoint(string,bool)
function. - broadcast
RawTransaction Call - Takes a signed transaction and broadcasts it to the network.
Function with signature
broadcastRawTransaction(bytes)
and selector0x8c0c72e0
. - broadcast
RawTransaction Return - Takes a signed transaction and broadcasts it to the network.
Container type for the return parameters of the
broadcastRawTransaction(bytes)
function. - broadcast_
0Call - Has the next call (at this call depth only) create transactions that can later be signed and sent onchain.
- broadcast_
0Return - Has the next call (at this call depth only) create transactions that can later be signed and sent onchain.
- broadcast_
1Call - Has the next call (at this call depth only) create a transaction with the address provided
as the sender that can later be signed and sent onchain.
Function with signature
broadcast(address)
and selector0xe6962cdb
. - broadcast_
1Return - Has the next call (at this call depth only) create a transaction with the address provided
as the sender that can later be signed and sent onchain.
Container type for the return parameters of the
broadcast(address)
function. - broadcast_
2Call - Has the next call (at this call depth only) create a transaction with the private key
provided as the sender that can later be signed and sent onchain.
Function with signature
broadcast(uint256)
and selector0xf67a965b
. - broadcast_
2Return - Has the next call (at this call depth only) create a transaction with the private key
provided as the sender that can later be signed and sent onchain.
Container type for the return parameters of the
broadcast(uint256)
function. - chain
IdCall - Sets
block.chainid
. Function with signaturechainId(uint256)
and selector0x4049ddd2
. - chain
IdReturn - Sets
block.chainid
. Container type for the return parameters of thechainId(uint256)
function. - clear
Mocked Calls Call - Clears all mocked calls.
Function with signature
clearMockedCalls()
and selector0x3fdf4e15
. - clear
Mocked Calls Return - Clears all mocked calls.
Container type for the return parameters of the
clearMockedCalls()
function. - clone
Account Call - Clones a source account code, state, balance and nonce to a target account and updates in-memory EVM state.
Function with signature
cloneAccount(address,address)
and selector0x533d61c9
. - clone
Account Return - Clones a source account code, state, balance and nonce to a target account and updates in-memory EVM state.
Container type for the return parameters of the
cloneAccount(address,address)
function. - close
File Call - Closes file for reading, resetting the offset and allowing to read it from beginning with readLine.
path
is relative to the project root. Function with signaturecloseFile(string)
and selector0x48c3241f
. - close
File Return - Closes file for reading, resetting the offset and allowing to read it from beginning with readLine.
path
is relative to the project root. Container type for the return parameters of thecloseFile(string)
function. - coinbase
Call - Sets
block.coinbase
. Function with signaturecoinbase(address)
and selector0xff483c54
. - coinbase
Return - Sets
block.coinbase
. Container type for the return parameters of thecoinbase(address)
function. - compute
Create2 Address_ 0Call - Compute the address of a contract created with CREATE2 using the given CREATE2 deployer.
Function with signature
computeCreate2Address(bytes32,bytes32,address)
and selector0xd323826a
. - compute
Create2 Address_ 0Return - Compute the address of a contract created with CREATE2 using the given CREATE2 deployer.
Container type for the return parameters of the
computeCreate2Address(bytes32,bytes32,address)
function. - compute
Create2 Address_ 1Call - Compute the address of a contract created with CREATE2 using the default CREATE2 deployer.
Function with signature
computeCreate2Address(bytes32,bytes32)
and selector0x890c283b
. - compute
Create2 Address_ 1Return - Compute the address of a contract created with CREATE2 using the default CREATE2 deployer.
Container type for the return parameters of the
computeCreate2Address(bytes32,bytes32)
function. - compute
Create Address Call - Compute the address a contract will be deployed at for a given deployer address and nonce.
Function with signature
computeCreateAddress(address,uint256)
and selector0x74637a7a
. - compute
Create Address Return - Compute the address a contract will be deployed at for a given deployer address and nonce.
Container type for the return parameters of the
computeCreateAddress(address,uint256)
function. - contains
Call - Returns true if
search
is found insubject
, false otherwise. Function with signaturecontains(string,string)
and selector0x3fb18aec
. - contains
Return - Returns true if
search
is found insubject
, false otherwise. Container type for the return parameters of thecontains(string,string)
function. - cool
Call - Marks the slots of an account and the account address as cold.
Function with signature
cool(address)
and selector0x40ff9f21
. - cool
Return - Marks the slots of an account and the account address as cold.
Container type for the return parameters of the
cool(address)
function. - cool
Slot Call - Utility cheatcode to mark specific storage slot as cold, simulating no prior read.
Function with signature
coolSlot(address,bytes32)
and selector0x8c78e654
. - cool
Slot Return - Utility cheatcode to mark specific storage slot as cold, simulating no prior read.
Container type for the return parameters of the
coolSlot(address,bytes32)
function. - copy
File Call - Copies the contents of one file to another. This function will overwrite the contents of
to
. On success, the total number of bytes copied is returned and it is equal to the length of theto
file as reported bymetadata
. Bothfrom
andto
are relative to the project root. Function with signaturecopyFile(string,string)
and selector0xa54a87d8
. - copy
File Return - Copies the contents of one file to another. This function will overwrite the contents of
to
. On success, the total number of bytes copied is returned and it is equal to the length of theto
file as reported bymetadata
. Bothfrom
andto
are relative to the project root. Container type for the return parameters of thecopyFile(string,string)
function. - copy
Storage Call - Utility cheatcode to copy storage of
from
contract to anotherto
contract. Function with signaturecopyStorage(address,address)
and selector0x203dac0d
. - copy
Storage Return - Utility cheatcode to copy storage of
from
contract to anotherto
contract. Container type for the return parameters of thecopyStorage(address,address)
function. - create
DirCall - Creates a new, empty directory at the provided path. This cheatcode will revert in the following situations, but is not limited to just these cases:
- create
DirReturn - Creates a new, empty directory at the provided path. This cheatcode will revert in the following situations, but is not limited to just these cases:
- create
Fork_ 0Call - Creates a new fork with the given endpoint and the latest block and returns the identifier of the fork.
Function with signature
createFork(string)
and selector0x31ba3498
. - create
Fork_ 0Return - Creates a new fork with the given endpoint and the latest block and returns the identifier of the fork.
Container type for the return parameters of the
createFork(string)
function. - create
Fork_ 1Call - Creates a new fork with the given endpoint and block and returns the identifier of the fork.
Function with signature
createFork(string,uint256)
and selector0x6ba3ba2b
. - create
Fork_ 1Return - Creates a new fork with the given endpoint and block and returns the identifier of the fork.
Container type for the return parameters of the
createFork(string,uint256)
function. - create
Fork_ 2Call - Creates a new fork with the given endpoint and at the block the given transaction was mined in,
replays all transaction mined in the block before the transaction, and returns the identifier of the fork.
Function with signature
createFork(string,bytes32)
and selector0x7ca29682
. - create
Fork_ 2Return - Creates a new fork with the given endpoint and at the block the given transaction was mined in,
replays all transaction mined in the block before the transaction, and returns the identifier of the fork.
Container type for the return parameters of the
createFork(string,bytes32)
function. - create
Select Fork_ 0Call - Creates and also selects a new fork with the given endpoint and the latest block and returns the identifier of the fork.
Function with signature
createSelectFork(string)
and selector0x98680034
. - create
Select Fork_ 0Return - Creates and also selects a new fork with the given endpoint and the latest block and returns the identifier of the fork.
Container type for the return parameters of the
createSelectFork(string)
function. - create
Select Fork_ 1Call - Creates and also selects a new fork with the given endpoint and block and returns the identifier of the fork.
Function with signature
createSelectFork(string,uint256)
and selector0x71ee464d
. - create
Select Fork_ 1Return - Creates and also selects a new fork with the given endpoint and block and returns the identifier of the fork.
Container type for the return parameters of the
createSelectFork(string,uint256)
function. - create
Select Fork_ 2Call - Creates and also selects new fork with the given endpoint and at the block the given transaction was mined in,
replays all transaction mined in the block before the transaction, returns the identifier of the fork.
Function with signature
createSelectFork(string,bytes32)
and selector0x84d52b7a
. - create
Select Fork_ 2Return - Creates and also selects new fork with the given endpoint and at the block the given transaction was mined in,
replays all transaction mined in the block before the transaction, returns the identifier of the fork.
Container type for the return parameters of the
createSelectFork(string,bytes32)
function. - create
Wallet_ 0Call - Derives a private key from the name, labels the account with that name, and returns the wallet.
Function with signature
createWallet(string)
and selector0x7404f1d2
. - create
Wallet_ 0Return - Derives a private key from the name, labels the account with that name, and returns the wallet.
Container type for the return parameters of the
createWallet(string)
function. - create
Wallet_ 1Call - Generates a wallet from the private key and returns the wallet.
Function with signature
createWallet(uint256)
and selector0x7a675bb6
. - create
Wallet_ 1Return - Generates a wallet from the private key and returns the wallet.
Container type for the return parameters of the
createWallet(uint256)
function. - create
Wallet_ 2Call - Generates a wallet from the private key, labels the account with that name, and returns the wallet.
Function with signature
createWallet(uint256,string)
and selector0xed7c5462
. - create
Wallet_ 2Return - Generates a wallet from the private key, labels the account with that name, and returns the wallet.
Container type for the return parameters of the
createWallet(uint256,string)
function. - deal
Call - Sets an address’ balance.
Function with signature
deal(address,uint256)
and selector0xc88a5e6d
. - deal
Return - Sets an address’ balance.
Container type for the return parameters of the
deal(address,uint256)
function. - delete
Snapshot Call deleteSnapshot
is being deprecated in favor ofdeleteStateSnapshot
. It will be removed in future versions. Function with signaturedeleteSnapshot(uint256)
and selector0xa6368557
.- delete
Snapshot Return deleteSnapshot
is being deprecated in favor ofdeleteStateSnapshot
. It will be removed in future versions. Container type for the return parameters of thedeleteSnapshot(uint256)
function.- delete
Snapshots Call deleteSnapshots
is being deprecated in favor ofdeleteStateSnapshots
. It will be removed in future versions. Function with signaturedeleteSnapshots()
and selector0x421ae469
.- delete
Snapshots Return deleteSnapshots
is being deprecated in favor ofdeleteStateSnapshots
. It will be removed in future versions. Container type for the return parameters of thedeleteSnapshots()
function.- delete
State Snapshot Call - Removes the snapshot with the given ID created by
snapshot
. Takes the snapshot ID to delete. - delete
State Snapshot Return - Removes the snapshot with the given ID created by
snapshot
. Takes the snapshot ID to delete. - delete
State Snapshots Call - Removes all snapshots previously created by
snapshot
. Function with signaturedeleteStateSnapshots()
and selector0xe0933c74
. - delete
State Snapshots Return - Removes all snapshots previously created by
snapshot
. Container type for the return parameters of thedeleteStateSnapshots()
function. - deploy
Code_ 0Call - Deploys a contract from an artifact file. Takes in the relative path to the json file or the path to the
artifact in the form of
: : where and parts are optional. Function with signature deployCode(string)
and selector0x9a8325a0
. - deploy
Code_ 0Return - Deploys a contract from an artifact file. Takes in the relative path to the json file or the path to the
artifact in the form of
: : where and parts are optional. Container type for the return parameters of the deployCode(string)
function. - deploy
Code_ 1Call - Deploys a contract from an artifact file. Takes in the relative path to the json file or the path to the
artifact in the form of
: : where and parts are optional. - deploy
Code_ 1Return - Deploys a contract from an artifact file. Takes in the relative path to the json file or the path to the
artifact in the form of
: : where and parts are optional. - deploy
Code_ 2Call - Deploys a contract from an artifact file. Takes in the relative path to the json file or the path to the
artifact in the form of
: : where and parts are optional. - deploy
Code_ 2Return - Deploys a contract from an artifact file. Takes in the relative path to the json file or the path to the
artifact in the form of
: : where and parts are optional. - deploy
Code_ 3Call - Deploys a contract from an artifact file. Takes in the relative path to the json file or the path to the
artifact in the form of
: : where and parts are optional. - deploy
Code_ 3Return - Deploys a contract from an artifact file. Takes in the relative path to the json file or the path to the
artifact in the form of
: : where and parts are optional. - deploy
Code_ 4Call - Deploys a contract from an artifact file, using the CREATE2 salt. Takes in the relative path to the json file or the path to the
artifact in the form of
: : where and parts are optional. Function with signature deployCode(string,bytes32)
and selector0x17ab1d79
. - deploy
Code_ 4Return - Deploys a contract from an artifact file, using the CREATE2 salt. Takes in the relative path to the json file or the path to the
artifact in the form of
: : where and parts are optional. Container type for the return parameters of the deployCode(string,bytes32)
function. - deploy
Code_ 5Call - Deploys a contract from an artifact file, using the CREATE2 salt. Takes in the relative path to the json file or the path to the
artifact in the form of
: : where and parts are optional. - deploy
Code_ 5Return - Deploys a contract from an artifact file, using the CREATE2 salt. Takes in the relative path to the json file or the path to the
artifact in the form of
: : where and parts are optional. - deploy
Code_ 6Call - Deploys a contract from an artifact file, using the CREATE2 salt. Takes in the relative path to the json file or the path to the
artifact in the form of
: : where and parts are optional. - deploy
Code_ 6Return - Deploys a contract from an artifact file, using the CREATE2 salt. Takes in the relative path to the json file or the path to the
artifact in the form of
: : where and parts are optional. - deploy
Code_ 7Call - Deploys a contract from an artifact file, using the CREATE2 salt. Takes in the relative path to the json file or the path to the
artifact in the form of
: : where and parts are optional. - deploy
Code_ 7Return - Deploys a contract from an artifact file, using the CREATE2 salt. Takes in the relative path to the json file or the path to the
artifact in the form of
: : where and parts are optional. - derive
Key_ 0Call - Derive a private key from a provided mnenomic string (or mnenomic file path)
at the derivation path
m/44'/60'/0'/0/{index}
. Function with signaturederiveKey(string,uint32)
and selector0x6229498b
. - derive
Key_ 0Return - Derive a private key from a provided mnenomic string (or mnenomic file path)
at the derivation path
m/44'/60'/0'/0/{index}
. Container type for the return parameters of thederiveKey(string,uint32)
function. - derive
Key_ 1Call - Derive a private key from a provided mnenomic string (or mnenomic file path)
at
{derivationPath}{index}
. Function with signaturederiveKey(string,string,uint32)
and selector0x6bcb2c1b
. - derive
Key_ 1Return - Derive a private key from a provided mnenomic string (or mnenomic file path)
at
{derivationPath}{index}
. Container type for the return parameters of thederiveKey(string,string,uint32)
function. - derive
Key_ 2Call - Derive a private key from a provided mnenomic string (or mnenomic file path) in the specified language
at the derivation path
m/44'/60'/0'/0/{index}
. Function with signaturederiveKey(string,uint32,string)
and selector0x32c8176d
. - derive
Key_ 2Return - Derive a private key from a provided mnenomic string (or mnenomic file path) in the specified language
at the derivation path
m/44'/60'/0'/0/{index}
. Container type for the return parameters of thederiveKey(string,uint32,string)
function. - derive
Key_ 3Call - Derive a private key from a provided mnenomic string (or mnenomic file path) in the specified language
at
{derivationPath}{index}
. Function with signaturederiveKey(string,string,uint32,string)
and selector0x29233b1f
. - derive
Key_ 3Return - Derive a private key from a provided mnenomic string (or mnenomic file path) in the specified language
at
{derivationPath}{index}
. Container type for the return parameters of thederiveKey(string,string,uint32,string)
function. - difficulty
Call - Sets
block.difficulty
. Not available on EVM versions from Paris onwards. Useprevrandao
instead. Reverts if used on unsupported EVM versions. Function with signaturedifficulty(uint256)
and selector0x46cc92d9
. - difficulty
Return - Sets
block.difficulty
. Not available on EVM versions from Paris onwards. Useprevrandao
instead. Reverts if used on unsupported EVM versions. Container type for the return parameters of thedifficulty(uint256)
function. - dump
State Call - Dump a genesis JSON file’s
allocs
to disk. Function with signaturedumpState(string)
and selector0x709ecd3f
. - dump
State Return - Dump a genesis JSON file’s
allocs
to disk. Container type for the return parameters of thedumpState(string)
function. - ensNamehash
Call - Returns ENS namehash for provided string.
Function with signature
ensNamehash(string)
and selector0x8c374c65
. - ensNamehash
Return - Returns ENS namehash for provided string.
Container type for the return parameters of the
ensNamehash(string)
function. - envAddress_
0Call - Gets the environment variable
name
and parses it asaddress
. Reverts if the variable was not found or could not be parsed. Function with signatureenvAddress(string)
and selector0x350d56bf
. - envAddress_
0Return - Gets the environment variable
name
and parses it asaddress
. Reverts if the variable was not found or could not be parsed. Container type for the return parameters of theenvAddress(string)
function. - envAddress_
1Call - Gets the environment variable
name
and parses it as an array ofaddress
, delimited bydelim
. Reverts if the variable was not found or could not be parsed. Function with signatureenvAddress(string,string)
and selector0xad31b9fa
. - envAddress_
1Return - Gets the environment variable
name
and parses it as an array ofaddress
, delimited bydelim
. Reverts if the variable was not found or could not be parsed. Container type for the return parameters of theenvAddress(string,string)
function. - envBool_
0Call - Gets the environment variable
name
and parses it asbool
. Reverts if the variable was not found or could not be parsed. Function with signatureenvBool(string)
and selector0x7ed1ec7d
. - envBool_
0Return - Gets the environment variable
name
and parses it asbool
. Reverts if the variable was not found or could not be parsed. Container type for the return parameters of theenvBool(string)
function. - envBool_
1Call - Gets the environment variable
name
and parses it as an array ofbool
, delimited bydelim
. Reverts if the variable was not found or could not be parsed. Function with signatureenvBool(string,string)
and selector0xaaaddeaf
. - envBool_
1Return - Gets the environment variable
name
and parses it as an array ofbool
, delimited bydelim
. Reverts if the variable was not found or could not be parsed. Container type for the return parameters of theenvBool(string,string)
function. - envBytes32_
0Call - Gets the environment variable
name
and parses it asbytes32
. Reverts if the variable was not found or could not be parsed. Function with signatureenvBytes32(string)
and selector0x97949042
. - envBytes32_
0Return - Gets the environment variable
name
and parses it asbytes32
. Reverts if the variable was not found or could not be parsed. Container type for the return parameters of theenvBytes32(string)
function. - envBytes32_
1Call - Gets the environment variable
name
and parses it as an array ofbytes32
, delimited bydelim
. Reverts if the variable was not found or could not be parsed. Function with signatureenvBytes32(string,string)
and selector0x5af231c1
. - envBytes32_
1Return - Gets the environment variable
name
and parses it as an array ofbytes32
, delimited bydelim
. Reverts if the variable was not found or could not be parsed. Container type for the return parameters of theenvBytes32(string,string)
function. - envBytes_
0Call - Gets the environment variable
name
and parses it asbytes
. Reverts if the variable was not found or could not be parsed. Function with signatureenvBytes(string)
and selector0x4d7baf06
. - envBytes_
0Return - Gets the environment variable
name
and parses it asbytes
. Reverts if the variable was not found or could not be parsed. Container type for the return parameters of theenvBytes(string)
function. - envBytes_
1Call - Gets the environment variable
name
and parses it as an array ofbytes
, delimited bydelim
. Reverts if the variable was not found or could not be parsed. Function with signatureenvBytes(string,string)
and selector0xddc2651b
. - envBytes_
1Return - Gets the environment variable
name
and parses it as an array ofbytes
, delimited bydelim
. Reverts if the variable was not found or could not be parsed. Container type for the return parameters of theenvBytes(string,string)
function. - envExists
Call - Gets the environment variable
name
and returns true if it exists, else returns false. Function with signatureenvExists(string)
and selector0xce8365f9
. - envExists
Return - Gets the environment variable
name
and returns true if it exists, else returns false. Container type for the return parameters of theenvExists(string)
function. - envInt_
0Call - Gets the environment variable
name
and parses it asint256
. Reverts if the variable was not found or could not be parsed. Function with signatureenvInt(string)
and selector0x892a0c61
. - envInt_
0Return - Gets the environment variable
name
and parses it asint256
. Reverts if the variable was not found or could not be parsed. Container type for the return parameters of theenvInt(string)
function. - envInt_
1Call - Gets the environment variable
name
and parses it as an array ofint256
, delimited bydelim
. Reverts if the variable was not found or could not be parsed. Function with signatureenvInt(string,string)
and selector0x42181150
. - envInt_
1Return - Gets the environment variable
name
and parses it as an array ofint256
, delimited bydelim
. Reverts if the variable was not found or could not be parsed. Container type for the return parameters of theenvInt(string,string)
function. - envOr_
0Call - Gets the environment variable
name
and parses it asbool
. Reverts if the variable could not be parsed. ReturnsdefaultValue
if the variable was not found. Function with signatureenvOr(string,bool)
and selector0x4777f3cf
. - envOr_
0Return - Gets the environment variable
name
and parses it asbool
. Reverts if the variable could not be parsed. ReturnsdefaultValue
if the variable was not found. Container type for the return parameters of theenvOr(string,bool)
function. - envOr_
1Call - Gets the environment variable
name
and parses it asuint256
. Reverts if the variable could not be parsed. ReturnsdefaultValue
if the variable was not found. Function with signatureenvOr(string,uint256)
and selector0x5e97348f
. - envOr_
1Return - Gets the environment variable
name
and parses it asuint256
. Reverts if the variable could not be parsed. ReturnsdefaultValue
if the variable was not found. Container type for the return parameters of theenvOr(string,uint256)
function. - envOr_
2Call - Gets the environment variable
name
and parses it asint256
. Reverts if the variable could not be parsed. ReturnsdefaultValue
if the variable was not found. Function with signatureenvOr(string,int256)
and selector0xbbcb713e
. - envOr_
2Return - Gets the environment variable
name
and parses it asint256
. Reverts if the variable could not be parsed. ReturnsdefaultValue
if the variable was not found. Container type for the return parameters of theenvOr(string,int256)
function. - envOr_
3Call - Gets the environment variable
name
and parses it asaddress
. Reverts if the variable could not be parsed. ReturnsdefaultValue
if the variable was not found. Function with signatureenvOr(string,address)
and selector0x561fe540
. - envOr_
3Return - Gets the environment variable
name
and parses it asaddress
. Reverts if the variable could not be parsed. ReturnsdefaultValue
if the variable was not found. Container type for the return parameters of theenvOr(string,address)
function. - envOr_
4Call - Gets the environment variable
name
and parses it asbytes32
. Reverts if the variable could not be parsed. ReturnsdefaultValue
if the variable was not found. Function with signatureenvOr(string,bytes32)
and selector0xb4a85892
. - envOr_
4Return - Gets the environment variable
name
and parses it asbytes32
. Reverts if the variable could not be parsed. ReturnsdefaultValue
if the variable was not found. Container type for the return parameters of theenvOr(string,bytes32)
function. - envOr_
5Call - Gets the environment variable
name
and parses it asstring
. Reverts if the variable could not be parsed. ReturnsdefaultValue
if the variable was not found. Function with signatureenvOr(string,string)
and selector0xd145736c
. - envOr_
5Return - Gets the environment variable
name
and parses it asstring
. Reverts if the variable could not be parsed. ReturnsdefaultValue
if the variable was not found. Container type for the return parameters of theenvOr(string,string)
function. - envOr_
6Call - Gets the environment variable
name
and parses it asbytes
. Reverts if the variable could not be parsed. ReturnsdefaultValue
if the variable was not found. Function with signatureenvOr(string,bytes)
and selector0xb3e47705
. - envOr_
6Return - Gets the environment variable
name
and parses it asbytes
. Reverts if the variable could not be parsed. ReturnsdefaultValue
if the variable was not found. Container type for the return parameters of theenvOr(string,bytes)
function. - envOr_
7Call - Gets the environment variable
name
and parses it as an array ofbool
, delimited bydelim
. Reverts if the variable could not be parsed. ReturnsdefaultValue
if the variable was not found. Function with signatureenvOr(string,string,bool[])
and selector0xeb85e83b
. - envOr_
7Return - Gets the environment variable
name
and parses it as an array ofbool
, delimited bydelim
. Reverts if the variable could not be parsed. ReturnsdefaultValue
if the variable was not found. Container type for the return parameters of theenvOr(string,string,bool[])
function. - envOr_
8Call - Gets the environment variable
name
and parses it as an array ofuint256
, delimited bydelim
. Reverts if the variable could not be parsed. ReturnsdefaultValue
if the variable was not found. Function with signatureenvOr(string,string,uint256[])
and selector0x74318528
. - envOr_
8Return - Gets the environment variable
name
and parses it as an array ofuint256
, delimited bydelim
. Reverts if the variable could not be parsed. ReturnsdefaultValue
if the variable was not found. Container type for the return parameters of theenvOr(string,string,uint256[])
function. - envOr_
9Call - Gets the environment variable
name
and parses it as an array ofint256
, delimited bydelim
. Reverts if the variable could not be parsed. ReturnsdefaultValue
if the variable was not found. Function with signatureenvOr(string,string,int256[])
and selector0x4700d74b
. - envOr_
9Return - Gets the environment variable
name
and parses it as an array ofint256
, delimited bydelim
. Reverts if the variable could not be parsed. ReturnsdefaultValue
if the variable was not found. Container type for the return parameters of theenvOr(string,string,int256[])
function. - envOr_
10Call - Gets the environment variable
name
and parses it as an array ofaddress
, delimited bydelim
. Reverts if the variable could not be parsed. ReturnsdefaultValue
if the variable was not found. Function with signatureenvOr(string,string,address[])
and selector0xc74e9deb
. - envOr_
10Return - Gets the environment variable
name
and parses it as an array ofaddress
, delimited bydelim
. Reverts if the variable could not be parsed. ReturnsdefaultValue
if the variable was not found. Container type for the return parameters of theenvOr(string,string,address[])
function. - envOr_
11Call - Gets the environment variable
name
and parses it as an array ofbytes32
, delimited bydelim
. Reverts if the variable could not be parsed. ReturnsdefaultValue
if the variable was not found. Function with signatureenvOr(string,string,bytes32[])
and selector0x2281f367
. - envOr_
11Return - Gets the environment variable
name
and parses it as an array ofbytes32
, delimited bydelim
. Reverts if the variable could not be parsed. ReturnsdefaultValue
if the variable was not found. Container type for the return parameters of theenvOr(string,string,bytes32[])
function. - envOr_
12Call - Gets the environment variable
name
and parses it as an array ofstring
, delimited bydelim
. Reverts if the variable could not be parsed. ReturnsdefaultValue
if the variable was not found. Function with signatureenvOr(string,string,string[])
and selector0x859216bc
. - envOr_
12Return - Gets the environment variable
name
and parses it as an array ofstring
, delimited bydelim
. Reverts if the variable could not be parsed. ReturnsdefaultValue
if the variable was not found. Container type for the return parameters of theenvOr(string,string,string[])
function. - envOr_
13Call - Gets the environment variable
name
and parses it as an array ofbytes
, delimited bydelim
. Reverts if the variable could not be parsed. ReturnsdefaultValue
if the variable was not found. Function with signatureenvOr(string,string,bytes[])
and selector0x64bc3e64
. - envOr_
13Return - Gets the environment variable
name
and parses it as an array ofbytes
, delimited bydelim
. Reverts if the variable could not be parsed. ReturnsdefaultValue
if the variable was not found. Container type for the return parameters of theenvOr(string,string,bytes[])
function. - envString_
0Call - Gets the environment variable
name
and parses it asstring
. Reverts if the variable was not found or could not be parsed. Function with signatureenvString(string)
and selector0xf877cb19
. - envString_
0Return - Gets the environment variable
name
and parses it asstring
. Reverts if the variable was not found or could not be parsed. Container type for the return parameters of theenvString(string)
function. - envString_
1Call - Gets the environment variable
name
and parses it as an array ofstring
, delimited bydelim
. Reverts if the variable was not found or could not be parsed. Function with signatureenvString(string,string)
and selector0x14b02bc9
. - envString_
1Return - Gets the environment variable
name
and parses it as an array ofstring
, delimited bydelim
. Reverts if the variable was not found or could not be parsed. Container type for the return parameters of theenvString(string,string)
function. - envUint_
0Call - Gets the environment variable
name
and parses it asuint256
. Reverts if the variable was not found or could not be parsed. Function with signatureenvUint(string)
and selector0xc1978d1f
. - envUint_
0Return - Gets the environment variable
name
and parses it asuint256
. Reverts if the variable was not found or could not be parsed. Container type for the return parameters of theenvUint(string)
function. - envUint_
1Call - Gets the environment variable
name
and parses it as an array ofuint256
, delimited bydelim
. Reverts if the variable was not found or could not be parsed. Function with signatureenvUint(string,string)
and selector0xf3dec099
. - envUint_
1Return - Gets the environment variable
name
and parses it as an array ofuint256
, delimited bydelim
. Reverts if the variable was not found or could not be parsed. Container type for the return parameters of theenvUint(string,string)
function. - etch
Call - Sets an address’ code.
Function with signature
etch(address,bytes)
and selector0xb4d6c782
. - etch
Return - Sets an address’ code.
Container type for the return parameters of the
etch(address,bytes)
function. - eth_
getLogs Call - Gets all the logs according to specified filter.
Function with signature
eth_getLogs(uint256,uint256,address,bytes32[])
and selector0x35e1349b
. - eth_
getLogs Return - Gets all the logs according to specified filter.
Container type for the return parameters of the
eth_getLogs(uint256,uint256,address,bytes32[])
function. - exists
Call - Returns true if the given path points to an existing entity, else returns false.
Function with signature
exists(string)
and selector0x261a323e
. - exists
Return - Returns true if the given path points to an existing entity, else returns false.
Container type for the return parameters of the
exists(string)
function. - expect
Call MinGas_ 0Call - Expect a call to an address with the specified
msg.value
and calldata, and a minimum amount of gas. Function with signatureexpectCallMinGas(address,uint256,uint64,bytes)
and selector0x08e4e116
. - expect
Call MinGas_ 0Return - Expect a call to an address with the specified
msg.value
and calldata, and a minimum amount of gas. Container type for the return parameters of theexpectCallMinGas(address,uint256,uint64,bytes)
function. - expect
Call MinGas_ 1Call - Expect given number of calls to an address with the specified
msg.value
and calldata, and a minimum amount of gas. Function with signatureexpectCallMinGas(address,uint256,uint64,bytes,uint64)
and selector0xe13a1834
. - expect
Call MinGas_ 1Return - Expect given number of calls to an address with the specified
msg.value
and calldata, and a minimum amount of gas. Container type for the return parameters of theexpectCallMinGas(address,uint256,uint64,bytes,uint64)
function. - expect
Call_ 0Call - Expects a call to an address with the specified calldata.
Calldata can either be a strict or a partial match.
Function with signature
expectCall(address,bytes)
and selector0xbd6af434
. - expect
Call_ 0Return - Expects a call to an address with the specified calldata.
Calldata can either be a strict or a partial match.
Container type for the return parameters of the
expectCall(address,bytes)
function. - expect
Call_ 1Call - Expects given number of calls to an address with the specified calldata.
Function with signature
expectCall(address,bytes,uint64)
and selector0xc1adbbff
. - expect
Call_ 1Return - Expects given number of calls to an address with the specified calldata.
Container type for the return parameters of the
expectCall(address,bytes,uint64)
function. - expect
Call_ 2Call - Expects a call to an address with the specified
msg.value
and calldata. Function with signatureexpectCall(address,uint256,bytes)
and selector0xf30c7ba3
. - expect
Call_ 2Return - Expects a call to an address with the specified
msg.value
and calldata. Container type for the return parameters of theexpectCall(address,uint256,bytes)
function. - expect
Call_ 3Call - Expects given number of calls to an address with the specified
msg.value
and calldata. Function with signatureexpectCall(address,uint256,bytes,uint64)
and selector0xa2b1a1ae
. - expect
Call_ 3Return - Expects given number of calls to an address with the specified
msg.value
and calldata. Container type for the return parameters of theexpectCall(address,uint256,bytes,uint64)
function. - expect
Call_ 4Call - Expect a call to an address with the specified
msg.value
, gas, and calldata. Function with signatureexpectCall(address,uint256,uint64,bytes)
and selector0x23361207
. - expect
Call_ 4Return - Expect a call to an address with the specified
msg.value
, gas, and calldata. Container type for the return parameters of theexpectCall(address,uint256,uint64,bytes)
function. - expect
Call_ 5Call - Expects given number of calls to an address with the specified
msg.value
, gas, and calldata. Function with signatureexpectCall(address,uint256,uint64,bytes,uint64)
and selector0x65b7b7cc
. - expect
Call_ 5Return - Expects given number of calls to an address with the specified
msg.value
, gas, and calldata. Container type for the return parameters of theexpectCall(address,uint256,uint64,bytes,uint64)
function. - expect
Create2 Call - Expects the deployment of the specified bytecode by the specified address using the CREATE2 opcode
Function with signature
expectCreate2(bytes,address)
and selector0xea54a472
. - expect
Create2 Return - Expects the deployment of the specified bytecode by the specified address using the CREATE2 opcode
Container type for the return parameters of the
expectCreate2(bytes,address)
function. - expect
Create Call - Expects the deployment of the specified bytecode by the specified address using the CREATE opcode
Function with signature
expectCreate(bytes,address)
and selector0x73cdce36
. - expect
Create Return - Expects the deployment of the specified bytecode by the specified address using the CREATE opcode
Container type for the return parameters of the
expectCreate(bytes,address)
function. - expect
Emit Anonymous_ 0Call - Prepare an expected anonymous log with (bool checkTopic1, bool checkTopic2, bool checkTopic3, bool checkData.).
Call this function, then emit an anonymous event, then call a function. Internally after the call, we check if
logs were emitted in the expected order with the expected topics and data (as specified by the booleans).
Function with signature
expectEmitAnonymous(bool,bool,bool,bool,bool)
and selector0xc948db5e
. - expect
Emit Anonymous_ 0Return - Prepare an expected anonymous log with (bool checkTopic1, bool checkTopic2, bool checkTopic3, bool checkData.).
Call this function, then emit an anonymous event, then call a function. Internally after the call, we check if
logs were emitted in the expected order with the expected topics and data (as specified by the booleans).
Container type for the return parameters of the
expectEmitAnonymous(bool,bool,bool,bool,bool)
function. - expect
Emit Anonymous_ 1Call - Same as the previous method, but also checks supplied address against emitting contract.
Function with signature
expectEmitAnonymous(bool,bool,bool,bool,bool,address)
and selector0x71c95899
. - expect
Emit Anonymous_ 1Return - Same as the previous method, but also checks supplied address against emitting contract.
Container type for the return parameters of the
expectEmitAnonymous(bool,bool,bool,bool,bool,address)
function. - expect
Emit Anonymous_ 2Call - Prepare an expected anonymous log with all topic and data checks enabled.
Call this function, then emit an anonymous event, then call a function. Internally after the call, we check if
logs were emitted in the expected order with the expected topics and data.
Function with signature
expectEmitAnonymous()
and selector0x2e5f270c
. - expect
Emit Anonymous_ 2Return - Prepare an expected anonymous log with all topic and data checks enabled.
Call this function, then emit an anonymous event, then call a function. Internally after the call, we check if
logs were emitted in the expected order with the expected topics and data.
Container type for the return parameters of the
expectEmitAnonymous()
function. - expect
Emit Anonymous_ 3Call - Same as the previous method, but also checks supplied address against emitting contract.
Function with signature
expectEmitAnonymous(address)
and selector0x6fc68705
. - expect
Emit Anonymous_ 3Return - Same as the previous method, but also checks supplied address against emitting contract.
Container type for the return parameters of the
expectEmitAnonymous(address)
function. - expect
Emit_ 0Call - Prepare an expected log with (bool checkTopic1, bool checkTopic2, bool checkTopic3, bool checkData.).
Call this function, then emit an event, then call a function. Internally after the call, we check if
logs were emitted in the expected order with the expected topics and data (as specified by the booleans).
Function with signature
expectEmit(bool,bool,bool,bool)
and selector0x491cc7c2
. - expect
Emit_ 0Return - Prepare an expected log with (bool checkTopic1, bool checkTopic2, bool checkTopic3, bool checkData.).
Call this function, then emit an event, then call a function. Internally after the call, we check if
logs were emitted in the expected order with the expected topics and data (as specified by the booleans).
Container type for the return parameters of the
expectEmit(bool,bool,bool,bool)
function. - expect
Emit_ 1Call - Same as the previous method, but also checks supplied address against emitting contract.
Function with signature
expectEmit(bool,bool,bool,bool,address)
and selector0x81bad6f3
. - expect
Emit_ 1Return - Same as the previous method, but also checks supplied address against emitting contract.
Container type for the return parameters of the
expectEmit(bool,bool,bool,bool,address)
function. - expect
Emit_ 2Call - Prepare an expected log with all topic and data checks enabled.
Call this function, then emit an event, then call a function. Internally after the call, we check if
logs were emitted in the expected order with the expected topics and data.
Function with signature
expectEmit()
and selector0x440ed10d
. - expect
Emit_ 2Return - Prepare an expected log with all topic and data checks enabled.
Call this function, then emit an event, then call a function. Internally after the call, we check if
logs were emitted in the expected order with the expected topics and data.
Container type for the return parameters of the
expectEmit()
function. - expect
Emit_ 3Call - Same as the previous method, but also checks supplied address against emitting contract.
Function with signature
expectEmit(address)
and selector0x86b9620d
. - expect
Emit_ 3Return - Same as the previous method, but also checks supplied address against emitting contract.
Container type for the return parameters of the
expectEmit(address)
function. - expect
Emit_ 4Call - Expect a given number of logs with the provided topics.
Function with signature
expectEmit(bool,bool,bool,bool,uint64)
and selector0x5e1d1c33
. - expect
Emit_ 4Return - Expect a given number of logs with the provided topics.
Container type for the return parameters of the
expectEmit(bool,bool,bool,bool,uint64)
function. - expect
Emit_ 5Call - Expect a given number of logs from a specific emitter with the provided topics.
Function with signature
expectEmit(bool,bool,bool,bool,address,uint64)
and selector0xc339d02c
. - expect
Emit_ 5Return - Expect a given number of logs from a specific emitter with the provided topics.
Container type for the return parameters of the
expectEmit(bool,bool,bool,bool,address,uint64)
function. - expect
Emit_ 6Call - Expect a given number of logs with all topic and data checks enabled.
Function with signature
expectEmit(uint64)
and selector0x4c74a335
. - expect
Emit_ 6Return - Expect a given number of logs with all topic and data checks enabled.
Container type for the return parameters of the
expectEmit(uint64)
function. - expect
Emit_ 7Call - Expect a given number of logs from a specific emitter with all topic and data checks enabled.
Function with signature
expectEmit(address,uint64)
and selector0xb43aece3
. - expect
Emit_ 7Return - Expect a given number of logs from a specific emitter with all topic and data checks enabled.
Container type for the return parameters of the
expectEmit(address,uint64)
function. - expect
Partial Revert_ 0Call - Expects an error on next call that starts with the revert data.
Function with signature
expectPartialRevert(bytes4)
and selector0x11fb5b9c
. - expect
Partial Revert_ 0Return - Expects an error on next call that starts with the revert data.
Container type for the return parameters of the
expectPartialRevert(bytes4)
function. - expect
Partial Revert_ 1Call - Expects an error on next call to reverter address, that starts with the revert data.
Function with signature
expectPartialRevert(bytes4,address)
and selector0x51aa008a
. - expect
Partial Revert_ 1Return - Expects an error on next call to reverter address, that starts with the revert data.
Container type for the return parameters of the
expectPartialRevert(bytes4,address)
function. - expect
Revert_ 0Call - Expects an error on next call with any revert data.
Function with signature
expectRevert()
and selector0xf4844814
. - expect
Revert_ 0Return - Expects an error on next call with any revert data.
Container type for the return parameters of the
expectRevert()
function. - expect
Revert_ 1Call - Expects an error on next call that exactly matches the revert data.
Function with signature
expectRevert(bytes4)
and selector0xc31eb0e0
. - expect
Revert_ 1Return - Expects an error on next call that exactly matches the revert data.
Container type for the return parameters of the
expectRevert(bytes4)
function. - expect
Revert_ 2Call - Expects an error on next call that exactly matches the revert data.
Function with signature
expectRevert(bytes)
and selector0xf28dceb3
. - expect
Revert_ 2Return - Expects an error on next call that exactly matches the revert data.
Container type for the return parameters of the
expectRevert(bytes)
function. - expect
Revert_ 3Call - Expects an error with any revert data on next call to reverter address.
Function with signature
expectRevert(address)
and selector0xd814f38a
. - expect
Revert_ 3Return - Expects an error with any revert data on next call to reverter address.
Container type for the return parameters of the
expectRevert(address)
function. - expect
Revert_ 4Call - Expects an error from reverter address on next call, with any revert data.
Function with signature
expectRevert(bytes4,address)
and selector0x260bc5de
. - expect
Revert_ 4Return - Expects an error from reverter address on next call, with any revert data.
Container type for the return parameters of the
expectRevert(bytes4,address)
function. - expect
Revert_ 5Call - Expects an error from reverter address on next call, that exactly matches the revert data.
Function with signature
expectRevert(bytes,address)
and selector0x61ebcf12
. - expect
Revert_ 5Return - Expects an error from reverter address on next call, that exactly matches the revert data.
Container type for the return parameters of the
expectRevert(bytes,address)
function. - expect
Revert_ 6Call - Expects a
count
number of reverts from the upcoming calls with any revert data or reverter. Function with signatureexpectRevert(uint64)
and selector0x4ee38244
. - expect
Revert_ 6Return - Expects a
count
number of reverts from the upcoming calls with any revert data or reverter. Container type for the return parameters of theexpectRevert(uint64)
function. - expect
Revert_ 7Call - Expects a
count
number of reverts from the upcoming calls that match the revert data. Function with signatureexpectRevert(bytes4,uint64)
and selector0xe45ca72d
. - expect
Revert_ 7Return - Expects a
count
number of reverts from the upcoming calls that match the revert data. Container type for the return parameters of theexpectRevert(bytes4,uint64)
function. - expect
Revert_ 8Call - Expects a
count
number of reverts from the upcoming calls that exactly match the revert data. Function with signatureexpectRevert(bytes,uint64)
and selector0x4994c273
. - expect
Revert_ 8Return - Expects a
count
number of reverts from the upcoming calls that exactly match the revert data. Container type for the return parameters of theexpectRevert(bytes,uint64)
function. - expect
Revert_ 9Call - Expects a
count
number of reverts from the upcoming calls from the reverter address. Function with signatureexpectRevert(address,uint64)
and selector0x1ff5f952
. - expect
Revert_ 9Return - Expects a
count
number of reverts from the upcoming calls from the reverter address. Container type for the return parameters of theexpectRevert(address,uint64)
function. - expect
Revert_ 10Call - Expects a
count
number of reverts from the upcoming calls from the reverter address that match the revert data. Function with signatureexpectRevert(bytes4,address,uint64)
and selector0xb0762d73
. - expect
Revert_ 10Return - Expects a
count
number of reverts from the upcoming calls from the reverter address that match the revert data. Container type for the return parameters of theexpectRevert(bytes4,address,uint64)
function. - expect
Revert_ 11Call - Expects a
count
number of reverts from the upcoming calls from the reverter address that exactly match the revert data. Function with signatureexpectRevert(bytes,address,uint64)
and selector0xd345fb1f
. - expect
Revert_ 11Return - Expects a
count
number of reverts from the upcoming calls from the reverter address that exactly match the revert data. Container type for the return parameters of theexpectRevert(bytes,address,uint64)
function. - expect
Safe Memory Call - Only allows memory writes to offsets [0x00, 0x60) ∪ [min, max) in the current subcontext. If any other
memory is written to, the test will fail. Can be called multiple times to add more ranges to the set.
Function with signature
expectSafeMemory(uint64,uint64)
and selector0x6d016688
. - expect
Safe Memory Call Call - Only allows memory writes to offsets [0x00, 0x60) ∪ [min, max) in the next created subcontext.
If any other memory is written to, the test will fail. Can be called multiple times to add more ranges
to the set.
Function with signature
expectSafeMemoryCall(uint64,uint64)
and selector0x05838bf4
. - expect
Safe Memory Call Return - Only allows memory writes to offsets [0x00, 0x60) ∪ [min, max) in the next created subcontext.
If any other memory is written to, the test will fail. Can be called multiple times to add more ranges
to the set.
Container type for the return parameters of the
expectSafeMemoryCall(uint64,uint64)
function. - expect
Safe Memory Return - Only allows memory writes to offsets [0x00, 0x60) ∪ [min, max) in the current subcontext. If any other
memory is written to, the test will fail. Can be called multiple times to add more ranges to the set.
Container type for the return parameters of the
expectSafeMemory(uint64,uint64)
function. - feeCall
- Sets
block.basefee
. Function with signaturefee(uint256)
and selector0x39b37ab0
. - feeReturn
- Sets
block.basefee
. Container type for the return parameters of thefee(uint256)
function. - ffiCall
- Performs a foreign function call via the terminal.
Function with signature
ffi(string[])
and selector0x89160467
. - ffiReturn
- Performs a foreign function call via the terminal.
Container type for the return parameters of the
ffi(string[])
function. - foundry
Version AtLeast Call - Returns true if the current Foundry version is greater than or equal to the given version.
The given version string must be in the format
major.minor.patch
. - foundry
Version AtLeast Return - Returns true if the current Foundry version is greater than or equal to the given version.
The given version string must be in the format
major.minor.patch
. - foundry
Version CmpCall - Compares the current Foundry version with the given version string.
The given version string must be in the format
major.minor.patch
. - foundry
Version CmpReturn - Compares the current Foundry version with the given version string.
The given version string must be in the format
major.minor.patch
. - fsMetadata
Call - Given a path, query the file system to get information about a file, directory, etc.
Function with signature
fsMetadata(string)
and selector0xaf368a08
. - fsMetadata
Return - Given a path, query the file system to get information about a file, directory, etc.
Container type for the return parameters of the
fsMetadata(string)
function. - getArtifact
Path ByCode Call - Gets the artifact path from code (aka. creation code).
Function with signature
getArtifactPathByCode(bytes)
and selector0xeb74848c
. - getArtifact
Path ByCode Return - Gets the artifact path from code (aka. creation code).
Container type for the return parameters of the
getArtifactPathByCode(bytes)
function. - getArtifact
Path ByDeployed Code Call - Gets the artifact path from deployed code (aka. runtime code).
Function with signature
getArtifactPathByDeployedCode(bytes)
and selector0x6d853ba5
. - getArtifact
Path ByDeployed Code Return - Gets the artifact path from deployed code (aka. runtime code).
Container type for the return parameters of the
getArtifactPathByDeployedCode(bytes)
function. - getBlob
Base FeeCall - Gets the current
block.blobbasefee
. You should use this instead ofblock.blobbasefee
if you usevm.blobBaseFee
, asblock.blobbasefee
is assumed to be constant across a transaction, and as a result will get optimized out by the compiler. See https://github.com/foundry-rs/foundry/issues/6180 Function with signaturegetBlobBaseFee()
and selector0x1f6d6ef7
. - getBlob
Base FeeReturn - Gets the current
block.blobbasefee
. You should use this instead ofblock.blobbasefee
if you usevm.blobBaseFee
, asblock.blobbasefee
is assumed to be constant across a transaction, and as a result will get optimized out by the compiler. See https://github.com/foundry-rs/foundry/issues/6180 Container type for the return parameters of thegetBlobBaseFee()
function. - getBlobhashes
Call - Gets the blockhashes from the current transaction.
Not available on EVM versions before Cancun.
If used on unsupported EVM versions it will revert.
Function with signature
getBlobhashes()
and selector0xf56ff18b
. - getBlobhashes
Return - Gets the blockhashes from the current transaction.
Not available on EVM versions before Cancun.
If used on unsupported EVM versions it will revert.
Container type for the return parameters of the
getBlobhashes()
function. - getBlock
Number Call - Gets the current
block.number
. You should use this instead ofblock.number
if you usevm.roll
, asblock.number
is assumed to be constant across a transaction, and as a result will get optimized out by the compiler. See https://github.com/foundry-rs/foundry/issues/6180 Function with signaturegetBlockNumber()
and selector0x42cbb15c
. - getBlock
Number Return - Gets the current
block.number
. You should use this instead ofblock.number
if you usevm.roll
, asblock.number
is assumed to be constant across a transaction, and as a result will get optimized out by the compiler. See https://github.com/foundry-rs/foundry/issues/6180 Container type for the return parameters of thegetBlockNumber()
function. - getBlock
Timestamp Call - Gets the current
block.timestamp
. You should use this instead ofblock.timestamp
if you usevm.warp
, asblock.timestamp
is assumed to be constant across a transaction, and as a result will get optimized out by the compiler. See https://github.com/foundry-rs/foundry/issues/6180 Function with signaturegetBlockTimestamp()
and selector0x796b89b9
. - getBlock
Timestamp Return - Gets the current
block.timestamp
. You should use this instead ofblock.timestamp
if you usevm.warp
, asblock.timestamp
is assumed to be constant across a transaction, and as a result will get optimized out by the compiler. See https://github.com/foundry-rs/foundry/issues/6180 Container type for the return parameters of thegetBlockTimestamp()
function. - getBroadcast
Call - Returns the most recent broadcast for the given contract on
chainId
matchingtxType
. - getBroadcast
Return - Returns the most recent broadcast for the given contract on
chainId
matchingtxType
. - getBroadcasts_
0Call - Returns all broadcasts for the given contract on
chainId
with the specifiedtxType
. - getBroadcasts_
0Return - Returns all broadcasts for the given contract on
chainId
with the specifiedtxType
. - getBroadcasts_
1Call - Returns all broadcasts for the given contract on
chainId
. - getBroadcasts_
1Return - Returns all broadcasts for the given contract on
chainId
. - getCode
Call - Gets the creation bytecode from an artifact file. Takes in the relative path to the json file or the path to the
artifact in the form of
: : where and parts are optional. Function with signature getCode(string)
and selector0x8d1cc925
. - getCode
Return - Gets the creation bytecode from an artifact file. Takes in the relative path to the json file or the path to the
artifact in the form of
: : where and parts are optional. Container type for the return parameters of the getCode(string)
function. - getDeployed
Code Call - Gets the deployed bytecode from an artifact file. Takes in the relative path to the json file or the path to the
artifact in the form of
: : where and parts are optional. Function with signature getDeployedCode(string)
and selector0x3ebf73b4
. - getDeployed
Code Return - Gets the deployed bytecode from an artifact file. Takes in the relative path to the json file or the path to the
artifact in the form of
: : where and parts are optional. Container type for the return parameters of the getDeployedCode(string)
function. - getDeployment_
0Call - Returns the most recent deployment for the current
chainId
. Function with signaturegetDeployment(string)
and selector0xa8091d97
. - getDeployment_
0Return - Returns the most recent deployment for the current
chainId
. Container type for the return parameters of thegetDeployment(string)
function. - getDeployment_
1Call - Returns the most recent deployment for the given contract on
chainId
Function with signaturegetDeployment(string,uint64)
and selector0x0debd5d6
. - getDeployment_
1Return - Returns the most recent deployment for the given contract on
chainId
Container type for the return parameters of thegetDeployment(string,uint64)
function. - getDeployments
Call - Returns all deployments for the given contract on
chainId
- getDeployments
Return - Returns all deployments for the given contract on
chainId
- getFoundry
Version Call - Returns the Foundry version.
Format: <cargo_version>-
+<git_sha_short>.<unix_build_timestamp>. Sample output: 0.3.0-nightly+3cb96bde9b.1737036656.debug Note: Build timestamps may vary slightly across platforms due to separate CI jobs. For reliable version comparisons, use UNIX format (e.g., >= 1700000000) to compare timestamps while ignoring minor time differences. Function with signature getFoundryVersion()
and selector0xea991bb5
. - getFoundry
Version Return - Returns the Foundry version.
Format: <cargo_version>-
+<git_sha_short>.<unix_build_timestamp>. Sample output: 0.3.0-nightly+3cb96bde9b.1737036656.debug Note: Build timestamps may vary slightly across platforms due to separate CI jobs. For reliable version comparisons, use UNIX format (e.g., >= 1700000000) to compare timestamps while ignoring minor time differences. Container type for the return parameters of the getFoundryVersion()
function. - getLabel
Call - Gets the label for the specified address.
Function with signature
getLabel(address)
and selector0x28a249b0
. - getLabel
Return - Gets the label for the specified address.
Container type for the return parameters of the
getLabel(address)
function. - getMapping
KeyAnd Parent OfCall - Gets the map key and parent of a mapping at a given slot, for a given address.
Function with signature
getMappingKeyAndParentOf(address,bytes32)
and selector0x876e24e6
. - getMapping
KeyAnd Parent OfReturn - Gets the map key and parent of a mapping at a given slot, for a given address.
Container type for the return parameters of the
getMappingKeyAndParentOf(address,bytes32)
function. - getMapping
Length Call - Gets the number of elements in the mapping at the given slot, for a given address.
Function with signature
getMappingLength(address,bytes32)
and selector0x2f2fd63f
. - getMapping
Length Return - Gets the number of elements in the mapping at the given slot, for a given address.
Container type for the return parameters of the
getMappingLength(address,bytes32)
function. - getMapping
Slot AtCall - Gets the elements at index idx of the mapping at the given slot, for a given address. The
index must be less than the length of the mapping (i.e. the number of keys in the mapping).
Function with signature
getMappingSlotAt(address,bytes32,uint256)
and selector0xebc73ab4
. - getMapping
Slot AtReturn - Gets the elements at index idx of the mapping at the given slot, for a given address. The
index must be less than the length of the mapping (i.e. the number of keys in the mapping).
Container type for the return parameters of the
getMappingSlotAt(address,bytes32,uint256)
function. - getNonce_
0Call - Gets the nonce of an account.
Function with signature
getNonce(address)
and selector0x2d0335ab
. - getNonce_
0Return - Gets the nonce of an account.
Container type for the return parameters of the
getNonce(address)
function. - getNonce_
1Call - Get the nonce of a
Wallet
. Function with signaturegetNonce((address,uint256,uint256,uint256))
and selector0xa5748aad
. - getNonce_
1Return - Get the nonce of a
Wallet
. Container type for the return parameters of thegetNonce((address,uint256,uint256,uint256))
function. - getRecorded
Logs Call - Gets all the recorded logs.
Function with signature
getRecordedLogs()
and selector0x191553a4
. - getRecorded
Logs Return - Gets all the recorded logs.
Container type for the return parameters of the
getRecordedLogs()
function. - getState
Diff Call - Returns state diffs from current
vm.startStateDiffRecording
session. Function with signaturegetStateDiff()
and selector0x80df01cc
. - getState
Diff Json Call - Returns state diffs from current
vm.startStateDiffRecording
session, in json format. Function with signaturegetStateDiffJson()
and selector0xf54fe009
. - getState
Diff Json Return - Returns state diffs from current
vm.startStateDiffRecording
session, in json format. Container type for the return parameters of thegetStateDiffJson()
function. - getState
Diff Return - Returns state diffs from current
vm.startStateDiffRecording
session. Container type for the return parameters of thegetStateDiff()
function. - getWallets
Call - Returns addresses of available unlocked wallets in the script environment.
Function with signature
getWallets()
and selector0xdb7a4605
. - getWallets
Return - Returns addresses of available unlocked wallets in the script environment.
Container type for the return parameters of the
getWallets()
function. - index
OfCall - Returns the index of the first occurrence of a
key
in aninput
string. ReturnsNOT_FOUND
(i.e.type(uint256).max
) if thekey
is not found. Returns 0 in case of an emptykey
. Function with signatureindexOf(string,string)
and selector0x8a0807b7
. - index
OfReturn - Returns the index of the first occurrence of a
key
in aninput
string. ReturnsNOT_FOUND
(i.e.type(uint256).max
) if thekey
is not found. Returns 0 in case of an emptykey
. Container type for the return parameters of theindexOf(string,string)
function. - intercept
Initcode Call - Causes the next contract creation (via new) to fail and return its initcode in the returndata buffer.
This allows type-safe access to the initcode payload that would be used for contract creation.
Example usage:
vm.interceptInitcode();
bytes memory initcode;
try new MyContract(param1, param2) { assert(false); }
catch (bytes memory interceptedInitcode) { initcode = interceptedInitcode; }
Function with signature
interceptInitcode()
and selector0x838653c7
. - intercept
Initcode Return - Causes the next contract creation (via new) to fail and return its initcode in the returndata buffer.
This allows type-safe access to the initcode payload that would be used for contract creation.
Example usage:
vm.interceptInitcode();
bytes memory initcode;
try new MyContract(param1, param2) { assert(false); }
catch (bytes memory interceptedInitcode) { initcode = interceptedInitcode; }
Container type for the return parameters of the
interceptInitcode()
function. - isContext
Call - Returns true if
forge
command was executed in given context. Function with signatureisContext(uint8)
and selector0x64af255d
. - isContext
Return - Returns true if
forge
command was executed in given context. Container type for the return parameters of theisContext(uint8)
function. - isDir
Call - Returns true if the path exists on disk and is pointing at a directory, else returns false.
Function with signature
isDir(string)
and selector0x7d15d019
. - isDir
Return - Returns true if the path exists on disk and is pointing at a directory, else returns false.
Container type for the return parameters of the
isDir(string)
function. - isFile
Call - Returns true if the path exists on disk and is pointing at a regular file, else returns false.
Function with signature
isFile(string)
and selector0xe0eb04d4
. - isFile
Return - Returns true if the path exists on disk and is pointing at a regular file, else returns false.
Container type for the return parameters of the
isFile(string)
function. - isPersistent
Call - Returns true if the account is marked as persistent.
Function with signature
isPersistent(address)
and selector0xd92d8efd
. - isPersistent
Return - Returns true if the account is marked as persistent.
Container type for the return parameters of the
isPersistent(address)
function. - keyExists
Call - Checks if
key
exists in a JSON objectkeyExists
is being deprecated in favor ofkeyExistsJson
. It will be removed in future versions. Function with signaturekeyExists(string,string)
and selector0x528a683c
. - keyExists
Json Call - Checks if
key
exists in a JSON object. Function with signaturekeyExistsJson(string,string)
and selector0xdb4235f6
. - keyExists
Json Return - Checks if
key
exists in a JSON object. Container type for the return parameters of thekeyExistsJson(string,string)
function. - keyExists
Return - Checks if
key
exists in a JSON objectkeyExists
is being deprecated in favor ofkeyExistsJson
. It will be removed in future versions. Container type for the return parameters of thekeyExists(string,string)
function. - keyExists
Toml Call - Checks if
key
exists in a TOML table. Function with signaturekeyExistsToml(string,string)
and selector0x600903ad
. - keyExists
Toml Return - Checks if
key
exists in a TOML table. Container type for the return parameters of thekeyExistsToml(string,string)
function. - label
Call - Labels an address in call traces.
Function with signature
label(address,string)
and selector0xc657c718
. - label
Return - Labels an address in call traces.
Container type for the return parameters of the
label(address,string)
function. - last
Call GasCall - Gets the gas used in the last call from the callee perspective.
Function with signature
lastCallGas()
and selector0x2b589b28
. - last
Call GasReturn - Gets the gas used in the last call from the callee perspective.
Container type for the return parameters of the
lastCallGas()
function. - load
Allocs Call - Load a genesis JSON file’s
allocs
into the in-memory EVM state. Function with signatureloadAllocs(string)
and selector0xb3a056d7
. - load
Allocs Return - Load a genesis JSON file’s
allocs
into the in-memory EVM state. Container type for the return parameters of theloadAllocs(string)
function. - load
Call - Loads a storage slot from an address.
Function with signature
load(address,bytes32)
and selector0x667f9d70
. - load
Return - Loads a storage slot from an address.
Container type for the return parameters of the
load(address,bytes32)
function. - make
Persistent_ 0Call - Marks that the account(s) should use persistent storage across fork swaps in a multifork setup
Meaning, changes made to the state of this account will be kept when switching forks.
Function with signature
makePersistent(address)
and selector0x57e22dde
. - make
Persistent_ 0Return - Marks that the account(s) should use persistent storage across fork swaps in a multifork setup
Meaning, changes made to the state of this account will be kept when switching forks.
Container type for the return parameters of the
makePersistent(address)
function. - make
Persistent_ 1Call - See
makePersistent(address)
. Function with signaturemakePersistent(address,address)
and selector0x4074e0a8
. - make
Persistent_ 1Return - See
makePersistent(address)
. Container type for the return parameters of themakePersistent(address,address)
function. - make
Persistent_ 2Call - See
makePersistent(address)
. Function with signaturemakePersistent(address,address,address)
and selector0xefb77a75
. - make
Persistent_ 2Return - See
makePersistent(address)
. Container type for the return parameters of themakePersistent(address,address,address)
function. - make
Persistent_ 3Call - See
makePersistent(address)
. Function with signaturemakePersistent(address[])
and selector0x1d9e269e
. - make
Persistent_ 3Return - See
makePersistent(address)
. Container type for the return parameters of themakePersistent(address[])
function. - mock
Call Revert_ 0Call - Reverts a call to an address with specified revert data.
Function with signature
mockCallRevert(address,bytes,bytes)
and selector0xdbaad147
. - mock
Call Revert_ 0Return - Reverts a call to an address with specified revert data.
Container type for the return parameters of the
mockCallRevert(address,bytes,bytes)
function. - mock
Call Revert_ 1Call - Reverts a call to an address with a specific
msg.value
, with specified revert data. Function with signaturemockCallRevert(address,uint256,bytes,bytes)
and selector0xd23cd037
. - mock
Call Revert_ 1Return - Reverts a call to an address with a specific
msg.value
, with specified revert data. Container type for the return parameters of themockCallRevert(address,uint256,bytes,bytes)
function. - mock
Call Revert_ 2Call - Reverts a call to an address with specified revert data.
- mock
Call Revert_ 2Return - Reverts a call to an address with specified revert data.
- mock
Call Revert_ 3Call - Reverts a call to an address with a specific
msg.value
, with specified revert data. - mock
Call Revert_ 3Return - Reverts a call to an address with a specific
msg.value
, with specified revert data. - mock
Call_ 0Call - Mocks a call to an address, returning specified data.
Calldata can either be strict or a partial match, e.g. if you only
pass a Solidity selector to the expected calldata, then the entire Solidity
function will be mocked.
Function with signature
mockCall(address,bytes,bytes)
and selector0xb96213e4
. - mock
Call_ 0Return - Mocks a call to an address, returning specified data.
Calldata can either be strict or a partial match, e.g. if you only
pass a Solidity selector to the expected calldata, then the entire Solidity
function will be mocked.
Container type for the return parameters of the
mockCall(address,bytes,bytes)
function. - mock
Call_ 1Call - Mocks a call to an address with a specific
msg.value
, returning specified data. Calldata match takes precedence overmsg.value
in case of ambiguity. Function with signaturemockCall(address,uint256,bytes,bytes)
and selector0x81409b91
. - mock
Call_ 1Return - Mocks a call to an address with a specific
msg.value
, returning specified data. Calldata match takes precedence overmsg.value
in case of ambiguity. Container type for the return parameters of themockCall(address,uint256,bytes,bytes)
function. - mock
Call_ 2Call - Mocks a call to an address, returning specified data. Calldata can either be strict or a partial match, e.g. if you only pass a Solidity selector to the expected calldata, then the entire Solidity function will be mocked.
- mock
Call_ 2Return - Mocks a call to an address, returning specified data. Calldata can either be strict or a partial match, e.g. if you only pass a Solidity selector to the expected calldata, then the entire Solidity function will be mocked.
- mock
Call_ 3Call - Mocks a call to an address with a specific
msg.value
, returning specified data. Calldata match takes precedence overmsg.value
in case of ambiguity. - mock
Call_ 3Return - Mocks a call to an address with a specific
msg.value
, returning specified data. Calldata match takes precedence overmsg.value
in case of ambiguity. - mock
Calls_ 0Call - Mocks multiple calls to an address, returning specified data for each call.
Function with signature
mockCalls(address,bytes,bytes[])
and selector0x5c5c3de9
. - mock
Calls_ 0Return - Mocks multiple calls to an address, returning specified data for each call.
Container type for the return parameters of the
mockCalls(address,bytes,bytes[])
function. - mock
Calls_ 1Call - Mocks multiple calls to an address with a specific
msg.value
, returning specified data for each call. Function with signaturemockCalls(address,uint256,bytes,bytes[])
and selector0x08bcbae1
. - mock
Calls_ 1Return - Mocks multiple calls to an address with a specific
msg.value
, returning specified data for each call. Container type for the return parameters of themockCalls(address,uint256,bytes,bytes[])
function. - mock
Function Call - Whenever a call is made to
callee
with calldatadata
, this cheatcode instead callstarget
with the same calldata. This functionality is similar to a delegate call made totarget
contract fromcallee
. Can be used to substitute a call to a function with another implementation that captures the primary logic of the original function but is easier to reason about. If calldata is not a strict match then partial match by selector is attempted. Function with signaturemockFunction(address,address,bytes)
and selector0xadf84d21
. - mock
Function Return - Whenever a call is made to
callee
with calldatadata
, this cheatcode instead callstarget
with the same calldata. This functionality is similar to a delegate call made totarget
contract fromcallee
. Can be used to substitute a call to a function with another implementation that captures the primary logic of the original function but is easier to reason about. If calldata is not a strict match then partial match by selector is attempted. Container type for the return parameters of themockFunction(address,address,bytes)
function. - noAccess
List Call - Utility cheatcode to remove any EIP-2930 access list set by
accessList
cheatcode. Function with signaturenoAccessList()
and selector0x238ad778
. - noAccess
List Return - Utility cheatcode to remove any EIP-2930 access list set by
accessList
cheatcode. Container type for the return parameters of thenoAccessList()
function. - parse
Address Call - Parses the given
string
into anaddress
. Function with signatureparseAddress(string)
and selector0xc6ce059d
. - parse
Address Return - Parses the given
string
into anaddress
. Container type for the return parameters of theparseAddress(string)
function. - parse
Bool Call - Parses the given
string
into abool
. Function with signatureparseBool(string)
and selector0x974ef924
. - parse
Bool Return - Parses the given
string
into abool
. Container type for the return parameters of theparseBool(string)
function. - parse
Bytes32 Call - Parses the given
string
into abytes32
. Function with signatureparseBytes32(string)
and selector0x087e6e81
. - parse
Bytes32 Return - Parses the given
string
into abytes32
. Container type for the return parameters of theparseBytes32(string)
function. - parse
Bytes Call - Parses the given
string
intobytes
. Function with signatureparseBytes(string)
and selector0x8f5d232d
. - parse
Bytes Return - Parses the given
string
intobytes
. Container type for the return parameters of theparseBytes(string)
function. - parse
IntCall - Parses the given
string
into aint256
. Function with signatureparseInt(string)
and selector0x42346c5e
. - parse
IntReturn - Parses the given
string
into aint256
. Container type for the return parameters of theparseInt(string)
function. - parse
Json Address Array Call - Parses a string of JSON data at
key
and coerces it toaddress[]
. Function with signatureparseJsonAddressArray(string,string)
and selector0x2fce7883
. - parse
Json Address Array Return - Parses a string of JSON data at
key
and coerces it toaddress[]
. Container type for the return parameters of theparseJsonAddressArray(string,string)
function. - parse
Json Address Call - Parses a string of JSON data at
key
and coerces it toaddress
. Function with signatureparseJsonAddress(string,string)
and selector0x1e19e657
. - parse
Json Address Return - Parses a string of JSON data at
key
and coerces it toaddress
. Container type for the return parameters of theparseJsonAddress(string,string)
function. - parse
Json Bool Array Call - Parses a string of JSON data at
key
and coerces it tobool[]
. Function with signatureparseJsonBoolArray(string,string)
and selector0x91f3b94f
. - parse
Json Bool Array Return - Parses a string of JSON data at
key
and coerces it tobool[]
. Container type for the return parameters of theparseJsonBoolArray(string,string)
function. - parse
Json Bool Call - Parses a string of JSON data at
key
and coerces it tobool
. Function with signatureparseJsonBool(string,string)
and selector0x9f86dc91
. - parse
Json Bool Return - Parses a string of JSON data at
key
and coerces it tobool
. Container type for the return parameters of theparseJsonBool(string,string)
function. - parse
Json Bytes32 Array Call - Parses a string of JSON data at
key
and coerces it tobytes32[]
. Function with signatureparseJsonBytes32Array(string,string)
and selector0x91c75bc3
. - parse
Json Bytes32 Array Return - Parses a string of JSON data at
key
and coerces it tobytes32[]
. Container type for the return parameters of theparseJsonBytes32Array(string,string)
function. - parse
Json Bytes32 Call - Parses a string of JSON data at
key
and coerces it tobytes32
. Function with signatureparseJsonBytes32(string,string)
and selector0x1777e59d
. - parse
Json Bytes32 Return - Parses a string of JSON data at
key
and coerces it tobytes32
. Container type for the return parameters of theparseJsonBytes32(string,string)
function. - parse
Json Bytes Array Call - Parses a string of JSON data at
key
and coerces it tobytes[]
. Function with signatureparseJsonBytesArray(string,string)
and selector0x6631aa99
. - parse
Json Bytes Array Return - Parses a string of JSON data at
key
and coerces it tobytes[]
. Container type for the return parameters of theparseJsonBytesArray(string,string)
function. - parse
Json Bytes Call - Parses a string of JSON data at
key
and coerces it tobytes
. Function with signatureparseJsonBytes(string,string)
and selector0xfd921be8
. - parse
Json Bytes Return - Parses a string of JSON data at
key
and coerces it tobytes
. Container type for the return parameters of theparseJsonBytes(string,string)
function. - parse
Json IntArray Call - Parses a string of JSON data at
key
and coerces it toint256[]
. Function with signatureparseJsonIntArray(string,string)
and selector0x9983c28a
. - parse
Json IntArray Return - Parses a string of JSON data at
key
and coerces it toint256[]
. Container type for the return parameters of theparseJsonIntArray(string,string)
function. - parse
Json IntCall - Parses a string of JSON data at
key
and coerces it toint256
. Function with signatureparseJsonInt(string,string)
and selector0x7b048ccd
. - parse
Json IntReturn - Parses a string of JSON data at
key
and coerces it toint256
. Container type for the return parameters of theparseJsonInt(string,string)
function. - parse
Json Keys Call - Returns an array of all the keys in a JSON object.
Function with signature
parseJsonKeys(string,string)
and selector0x213e4198
. - parse
Json Keys Return - Returns an array of all the keys in a JSON object.
Container type for the return parameters of the
parseJsonKeys(string,string)
function. - parse
Json String Array Call - Parses a string of JSON data at
key
and coerces it tostring[]
. Function with signatureparseJsonStringArray(string,string)
and selector0x498fdcf4
. - parse
Json String Array Return - Parses a string of JSON data at
key
and coerces it tostring[]
. Container type for the return parameters of theparseJsonStringArray(string,string)
function. - parse
Json String Call - Parses a string of JSON data at
key
and coerces it tostring
. Function with signatureparseJsonString(string,string)
and selector0x49c4fac8
. - parse
Json String Return - Parses a string of JSON data at
key
and coerces it tostring
. Container type for the return parameters of theparseJsonString(string,string)
function. - parse
Json Type Array Call - Parses a string of JSON data at
key
and coerces it to type array corresponding totypeDescription
. Function with signatureparseJsonTypeArray(string,string,string)
and selector0x0175d535
. - parse
Json Type Array Return - Parses a string of JSON data at
key
and coerces it to type array corresponding totypeDescription
. Container type for the return parameters of theparseJsonTypeArray(string,string,string)
function. - parse
Json Type_ 0Call - Parses a string of JSON data and coerces it to type corresponding to
typeDescription
. Function with signatureparseJsonType(string,string)
and selector0xa9da313b
. - parse
Json Type_ 0Return - Parses a string of JSON data and coerces it to type corresponding to
typeDescription
. Container type for the return parameters of theparseJsonType(string,string)
function. - parse
Json Type_ 1Call - Parses a string of JSON data at
key
and coerces it to type corresponding totypeDescription
. Function with signatureparseJsonType(string,string,string)
and selector0xe3f5ae33
. - parse
Json Type_ 1Return - Parses a string of JSON data at
key
and coerces it to type corresponding totypeDescription
. Container type for the return parameters of theparseJsonType(string,string,string)
function. - parse
Json Uint Array Call - Parses a string of JSON data at
key
and coerces it touint256[]
. Function with signatureparseJsonUintArray(string,string)
and selector0x522074ab
. - parse
Json Uint Array Return - Parses a string of JSON data at
key
and coerces it touint256[]
. Container type for the return parameters of theparseJsonUintArray(string,string)
function. - parse
Json Uint Call - Parses a string of JSON data at
key
and coerces it touint256
. Function with signatureparseJsonUint(string,string)
and selector0xaddde2b6
. - parse
Json Uint Return - Parses a string of JSON data at
key
and coerces it touint256
. Container type for the return parameters of theparseJsonUint(string,string)
function. - parse
Json_ 0Call - ABI-encodes a JSON object.
Function with signature
parseJson(string)
and selector0x6a82600a
. - parse
Json_ 0Return - ABI-encodes a JSON object.
Container type for the return parameters of the
parseJson(string)
function. - parse
Json_ 1Call - ABI-encodes a JSON object at
key
. Function with signatureparseJson(string,string)
and selector0x85940ef1
. - parse
Json_ 1Return - ABI-encodes a JSON object at
key
. Container type for the return parameters of theparseJson(string,string)
function. - parse
Toml Address Array Call - Parses a string of TOML data at
key
and coerces it toaddress[]
. Function with signatureparseTomlAddressArray(string,string)
and selector0x65c428e7
. - parse
Toml Address Array Return - Parses a string of TOML data at
key
and coerces it toaddress[]
. Container type for the return parameters of theparseTomlAddressArray(string,string)
function. - parse
Toml Address Call - Parses a string of TOML data at
key
and coerces it toaddress
. Function with signatureparseTomlAddress(string,string)
and selector0x65e7c844
. - parse
Toml Address Return - Parses a string of TOML data at
key
and coerces it toaddress
. Container type for the return parameters of theparseTomlAddress(string,string)
function. - parse
Toml Bool Array Call - Parses a string of TOML data at
key
and coerces it tobool[]
. Function with signatureparseTomlBoolArray(string,string)
and selector0x127cfe9a
. - parse
Toml Bool Array Return - Parses a string of TOML data at
key
and coerces it tobool[]
. Container type for the return parameters of theparseTomlBoolArray(string,string)
function. - parse
Toml Bool Call - Parses a string of TOML data at
key
and coerces it tobool
. Function with signatureparseTomlBool(string,string)
and selector0xd30dced6
. - parse
Toml Bool Return - Parses a string of TOML data at
key
and coerces it tobool
. Container type for the return parameters of theparseTomlBool(string,string)
function. - parse
Toml Bytes32 Array Call - Parses a string of TOML data at
key
and coerces it tobytes32[]
. Function with signatureparseTomlBytes32Array(string,string)
and selector0x3e716f81
. - parse
Toml Bytes32 Array Return - Parses a string of TOML data at
key
and coerces it tobytes32[]
. Container type for the return parameters of theparseTomlBytes32Array(string,string)
function. - parse
Toml Bytes32 Call - Parses a string of TOML data at
key
and coerces it tobytes32
. Function with signatureparseTomlBytes32(string,string)
and selector0x8e214810
. - parse
Toml Bytes32 Return - Parses a string of TOML data at
key
and coerces it tobytes32
. Container type for the return parameters of theparseTomlBytes32(string,string)
function. - parse
Toml Bytes Array Call - Parses a string of TOML data at
key
and coerces it tobytes[]
. Function with signatureparseTomlBytesArray(string,string)
and selector0xb197c247
. - parse
Toml Bytes Array Return - Parses a string of TOML data at
key
and coerces it tobytes[]
. Container type for the return parameters of theparseTomlBytesArray(string,string)
function. - parse
Toml Bytes Call - Parses a string of TOML data at
key
and coerces it tobytes
. Function with signatureparseTomlBytes(string,string)
and selector0xd77bfdb9
. - parse
Toml Bytes Return - Parses a string of TOML data at
key
and coerces it tobytes
. Container type for the return parameters of theparseTomlBytes(string,string)
function. - parse
Toml IntArray Call - Parses a string of TOML data at
key
and coerces it toint256[]
. Function with signatureparseTomlIntArray(string,string)
and selector0xd3522ae6
. - parse
Toml IntArray Return - Parses a string of TOML data at
key
and coerces it toint256[]
. Container type for the return parameters of theparseTomlIntArray(string,string)
function. - parse
Toml IntCall - Parses a string of TOML data at
key
and coerces it toint256
. Function with signatureparseTomlInt(string,string)
and selector0xc1350739
. - parse
Toml IntReturn - Parses a string of TOML data at
key
and coerces it toint256
. Container type for the return parameters of theparseTomlInt(string,string)
function. - parse
Toml Keys Call - Returns an array of all the keys in a TOML table.
Function with signature
parseTomlKeys(string,string)
and selector0x812a44b2
. - parse
Toml Keys Return - Returns an array of all the keys in a TOML table.
Container type for the return parameters of the
parseTomlKeys(string,string)
function. - parse
Toml String Array Call - Parses a string of TOML data at
key
and coerces it tostring[]
. Function with signatureparseTomlStringArray(string,string)
and selector0x9f629281
. - parse
Toml String Array Return - Parses a string of TOML data at
key
and coerces it tostring[]
. Container type for the return parameters of theparseTomlStringArray(string,string)
function. - parse
Toml String Call - Parses a string of TOML data at
key
and coerces it tostring
. Function with signatureparseTomlString(string,string)
and selector0x8bb8dd43
. - parse
Toml String Return - Parses a string of TOML data at
key
and coerces it tostring
. Container type for the return parameters of theparseTomlString(string,string)
function. - parse
Toml Type Array Call - Parses a string of TOML data at
key
and coerces it to type array corresponding totypeDescription
. Function with signatureparseTomlTypeArray(string,string,string)
and selector0x49be3743
. - parse
Toml Type Array Return - Parses a string of TOML data at
key
and coerces it to type array corresponding totypeDescription
. Container type for the return parameters of theparseTomlTypeArray(string,string,string)
function. - parse
Toml Type_ 0Call - Parses a string of TOML data and coerces it to type corresponding to
typeDescription
. Function with signatureparseTomlType(string,string)
and selector0x47fa5e11
. - parse
Toml Type_ 0Return - Parses a string of TOML data and coerces it to type corresponding to
typeDescription
. Container type for the return parameters of theparseTomlType(string,string)
function. - parse
Toml Type_ 1Call - Parses a string of TOML data at
key
and coerces it to type corresponding totypeDescription
. Function with signatureparseTomlType(string,string,string)
and selector0xf9fa5cdb
. - parse
Toml Type_ 1Return - Parses a string of TOML data at
key
and coerces it to type corresponding totypeDescription
. Container type for the return parameters of theparseTomlType(string,string,string)
function. - parse
Toml Uint Array Call - Parses a string of TOML data at
key
and coerces it touint256[]
. Function with signatureparseTomlUintArray(string,string)
and selector0xb5df27c8
. - parse
Toml Uint Array Return - Parses a string of TOML data at
key
and coerces it touint256[]
. Container type for the return parameters of theparseTomlUintArray(string,string)
function. - parse
Toml Uint Call - Parses a string of TOML data at
key
and coerces it touint256
. Function with signatureparseTomlUint(string,string)
and selector0xcc7b0487
. - parse
Toml Uint Return - Parses a string of TOML data at
key
and coerces it touint256
. Container type for the return parameters of theparseTomlUint(string,string)
function. - parse
Toml_ 0Call - ABI-encodes a TOML table.
Function with signature
parseToml(string)
and selector0x592151f0
. - parse
Toml_ 0Return - ABI-encodes a TOML table.
Container type for the return parameters of the
parseToml(string)
function. - parse
Toml_ 1Call - ABI-encodes a TOML table at
key
. Function with signatureparseToml(string,string)
and selector0x37736e08
. - parse
Toml_ 1Return - ABI-encodes a TOML table at
key
. Container type for the return parameters of theparseToml(string,string)
function. - parse
Uint Call - Parses the given
string
into auint256
. Function with signatureparseUint(string)
and selector0xfa91454d
. - parse
Uint Return - Parses the given
string
into auint256
. Container type for the return parameters of theparseUint(string)
function. - pause
GasMetering Call - Pauses gas metering (i.e. gas usage is not counted). Noop if already paused.
Function with signature
pauseGasMetering()
and selector0xd1a5b36f
. - pause
GasMetering Return - Pauses gas metering (i.e. gas usage is not counted). Noop if already paused.
Container type for the return parameters of the
pauseGasMetering()
function. - pause
Tracing Call - Pauses collection of call traces. Useful in cases when you want to skip tracing of
complex calls which are not useful for debugging.
Function with signature
pauseTracing()
and selector0xc94d1f90
. - pause
Tracing Return - Pauses collection of call traces. Useful in cases when you want to skip tracing of
complex calls which are not useful for debugging.
Container type for the return parameters of the
pauseTracing()
function. - prank_
0Call - Sets the next call’s
msg.sender
to be the input address. Function with signatureprank(address)
and selector0xca669fa7
. - prank_
0Return - Sets the next call’s
msg.sender
to be the input address. Container type for the return parameters of theprank(address)
function. - prank_
1Call - Sets the next call’s
msg.sender
to be the input address, and thetx.origin
to be the second input. Function with signatureprank(address,address)
and selector0x47e50cce
. - prank_
1Return - Sets the next call’s
msg.sender
to be the input address, and thetx.origin
to be the second input. Container type for the return parameters of theprank(address,address)
function. - prank_
2Call - Sets the next delegate call’s
msg.sender
to be the input address. Function with signatureprank(address,bool)
and selector0xa7f8bf5c
. - prank_
2Return - Sets the next delegate call’s
msg.sender
to be the input address. Container type for the return parameters of theprank(address,bool)
function. - prank_
3Call - Sets the next delegate call’s
msg.sender
to be the input address, and thetx.origin
to be the second input. Function with signatureprank(address,address,bool)
and selector0x7d73d042
. - prank_
3Return - Sets the next delegate call’s
msg.sender
to be the input address, and thetx.origin
to be the second input. Container type for the return parameters of theprank(address,address,bool)
function. - prevrandao_
0Call - Sets
block.prevrandao
. Not available on EVM versions before Paris. Usedifficulty
instead. If used on unsupported EVM versions it will revert. Function with signatureprevrandao(bytes32)
and selector0x3b925549
. - prevrandao_
0Return - Sets
block.prevrandao
. Not available on EVM versions before Paris. Usedifficulty
instead. If used on unsupported EVM versions it will revert. Container type for the return parameters of theprevrandao(bytes32)
function. - prevrandao_
1Call - Sets
block.prevrandao
. Not available on EVM versions before Paris. Usedifficulty
instead. If used on unsupported EVM versions it will revert. Function with signatureprevrandao(uint256)
and selector0x9cb1c0d4
. - prevrandao_
1Return - Sets
block.prevrandao
. Not available on EVM versions before Paris. Usedifficulty
instead. If used on unsupported EVM versions it will revert. Container type for the return parameters of theprevrandao(uint256)
function. - project
Root Call - Get the path of the current project root.
Function with signature
projectRoot()
and selector0xd930a0e6
. - project
Root Return - Get the path of the current project root.
Container type for the return parameters of the
projectRoot()
function. - prompt
Address Call - Prompts the user for an address in the terminal.
Function with signature
promptAddress(string)
and selector0x62ee05f4
. - prompt
Address Return - Prompts the user for an address in the terminal.
Container type for the return parameters of the
promptAddress(string)
function. - prompt
Call - Prompts the user for a string value in the terminal.
Function with signature
prompt(string)
and selector0x47eaf474
. - prompt
Return - Prompts the user for a string value in the terminal.
Container type for the return parameters of the
prompt(string)
function. - prompt
Secret Call - Prompts the user for a hidden string value in the terminal.
Function with signature
promptSecret(string)
and selector0x1e279d41
. - prompt
Secret Return - Prompts the user for a hidden string value in the terminal.
Container type for the return parameters of the
promptSecret(string)
function. - prompt
Secret Uint Call - Prompts the user for hidden uint256 in the terminal (usually pk).
Function with signature
promptSecretUint(string)
and selector0x69ca02b7
. - prompt
Secret Uint Return - Prompts the user for hidden uint256 in the terminal (usually pk).
Container type for the return parameters of the
promptSecretUint(string)
function. - prompt
Uint Call - Prompts the user for uint256 in the terminal.
Function with signature
promptUint(string)
and selector0x652fd489
. - prompt
Uint Return - Prompts the user for uint256 in the terminal.
Container type for the return parameters of the
promptUint(string)
function. - public
KeyP256 Call - Derives secp256r1 public key from the provided
privateKey
. Function with signaturepublicKeyP256(uint256)
and selector0xc453949e
. - public
KeyP256 Return - Derives secp256r1 public key from the provided
privateKey
. Container type for the return parameters of thepublicKeyP256(uint256)
function. - random
Address Call - Returns a random
address
. Function with signaturerandomAddress()
and selector0xd5bee9f5
. - random
Address Return - Returns a random
address
. Container type for the return parameters of therandomAddress()
function. - random
Bool Call - Returns a random
bool
. Function with signaturerandomBool()
and selector0xcdc126bd
. - random
Bool Return - Returns a random
bool
. Container type for the return parameters of therandomBool()
function. - random
Bytes4 Call - Returns a random fixed-size byte array of length 4.
Function with signature
randomBytes4()
and selector0x9b7cd579
. - random
Bytes4 Return - Returns a random fixed-size byte array of length 4.
Container type for the return parameters of the
randomBytes4()
function. - random
Bytes8 Call - Returns a random fixed-size byte array of length 8.
Function with signature
randomBytes8()
and selector0x0497b0a5
. - random
Bytes8 Return - Returns a random fixed-size byte array of length 8.
Container type for the return parameters of the
randomBytes8()
function. - random
Bytes Call - Returns a random byte array value of the given length.
Function with signature
randomBytes(uint256)
and selector0x6c5d32a9
. - random
Bytes Return - Returns a random byte array value of the given length.
Container type for the return parameters of the
randomBytes(uint256)
function. - random
Int_ 0Call - Returns a random
int256
value. Function with signaturerandomInt()
and selector0x111f1202
. - random
Int_ 0Return - Returns a random
int256
value. Container type for the return parameters of therandomInt()
function. - random
Int_ 1Call - Returns a random
int256
value of given bits. Function with signaturerandomInt(uint256)
and selector0x12845966
. - random
Int_ 1Return - Returns a random
int256
value of given bits. Container type for the return parameters of therandomInt(uint256)
function. - random
Uint_ 0Call - Returns a random uint256 value.
Function with signature
randomUint()
and selector0x25124730
. - random
Uint_ 0Return - Returns a random uint256 value.
Container type for the return parameters of the
randomUint()
function. - random
Uint_ 1Call - Returns random uint256 value between the provided range (=min..=max).
Function with signature
randomUint(uint256,uint256)
and selector0xd61b051b
. - random
Uint_ 1Return - Returns random uint256 value between the provided range (=min..=max).
Container type for the return parameters of the
randomUint(uint256,uint256)
function. - random
Uint_ 2Call - Returns a random
uint256
value of given bits. Function with signaturerandomUint(uint256)
and selector0xcf81e69c
. - random
Uint_ 2Return - Returns a random
uint256
value of given bits. Container type for the return parameters of therandomUint(uint256)
function. - read
Callers Call - Reads the current
msg.sender
andtx.origin
from state and reports if there is any active caller modification. Function with signaturereadCallers()
and selector0x4ad0bac9
. - read
Callers Return - Reads the current
msg.sender
andtx.origin
from state and reports if there is any active caller modification. Container type for the return parameters of thereadCallers()
function. - read
Dir_ 0Call - Reads the directory at the given path recursively, up to
maxDepth
.maxDepth
defaults to 1, meaning only the direct children of the given directory will be returned. Follows symbolic links iffollowLinks
is true. Function with signaturereadDir(string)
and selector0xc4bc59e0
. - read
Dir_ 0Return - Reads the directory at the given path recursively, up to
maxDepth
.maxDepth
defaults to 1, meaning only the direct children of the given directory will be returned. Follows symbolic links iffollowLinks
is true. Container type for the return parameters of thereadDir(string)
function. - read
Dir_ 1Call - See
readDir(string)
. Function with signaturereadDir(string,uint64)
and selector0x1497876c
. - read
Dir_ 1Return - See
readDir(string)
. Container type for the return parameters of thereadDir(string,uint64)
function. - read
Dir_ 2Call - See
readDir(string)
. Function with signaturereadDir(string,uint64,bool)
and selector0x8102d70d
. - read
Dir_ 2Return - See
readDir(string)
. Container type for the return parameters of thereadDir(string,uint64,bool)
function. - read
File Binary Call - Reads the entire content of file as binary.
path
is relative to the project root. Function with signaturereadFileBinary(string)
and selector0x16ed7bc4
. - read
File Binary Return - Reads the entire content of file as binary.
path
is relative to the project root. Container type for the return parameters of thereadFileBinary(string)
function. - read
File Call - Reads the entire content of file to string.
path
is relative to the project root. Function with signaturereadFile(string)
and selector0x60f9bb11
. - read
File Return - Reads the entire content of file to string.
path
is relative to the project root. Container type for the return parameters of thereadFile(string)
function. - read
Line Call - Reads next line of file to string.
Function with signature
readLine(string)
and selector0x70f55728
. - read
Line Return - Reads next line of file to string.
Container type for the return parameters of the
readLine(string)
function. - read
Link Call - Reads a symbolic link, returning the path that the link points to. This cheatcode will revert in the following situations, but is not limited to just these cases:
- read
Link Return - Reads a symbolic link, returning the path that the link points to. This cheatcode will revert in the following situations, but is not limited to just these cases:
- record
Call - Records all storage reads and writes.
Function with signature
record()
and selector0x266cf109
. - record
Logs Call - Record all the transaction logs.
Function with signature
recordLogs()
and selector0x41af2f52
. - record
Logs Return - Record all the transaction logs.
Container type for the return parameters of the
recordLogs()
function. - record
Return - Records all storage reads and writes.
Container type for the return parameters of the
record()
function. - remember
KeyCall - Adds a private key to the local forge wallet and returns the address.
Function with signature
rememberKey(uint256)
and selector0x22100064
. - remember
KeyReturn - Adds a private key to the local forge wallet and returns the address.
Container type for the return parameters of the
rememberKey(uint256)
function. - remember
Keys_ 0Call - Derive a set number of wallets from a mnemonic at the derivation path
m/44'/60'/0'/0/{0..count}
. - remember
Keys_ 0Return - Derive a set number of wallets from a mnemonic at the derivation path
m/44'/60'/0'/0/{0..count}
. - remember
Keys_ 1Call - Derive a set number of wallets from a mnemonic in the specified language at the derivation path
m/44'/60'/0'/0/{0..count}
. - remember
Keys_ 1Return - Derive a set number of wallets from a mnemonic in the specified language at the derivation path
m/44'/60'/0'/0/{0..count}
. - remove
DirCall - Removes a directory at the provided path. This cheatcode will revert in the following situations, but is not limited to just these cases:
- remove
DirReturn - Removes a directory at the provided path. This cheatcode will revert in the following situations, but is not limited to just these cases:
- remove
File Call - Removes a file from the filesystem. This cheatcode will revert in the following situations, but is not limited to just these cases:
- remove
File Return - Removes a file from the filesystem. This cheatcode will revert in the following situations, but is not limited to just these cases:
- replace
Call - Replaces occurrences of
from
in the givenstring
withto
. Function with signaturereplace(string,string,string)
and selector0xe00ad03e
. - replace
Return - Replaces occurrences of
from
in the givenstring
withto
. Container type for the return parameters of thereplace(string,string,string)
function. - reset
GasMetering Call - Reset gas metering (i.e. gas usage is set to gas limit).
Function with signature
resetGasMetering()
and selector0xbe367dd3
. - reset
GasMetering Return - Reset gas metering (i.e. gas usage is set to gas limit).
Container type for the return parameters of the
resetGasMetering()
function. - reset
Nonce Call - Resets the nonce of an account to 0 for EOAs and 1 for contract accounts.
Function with signature
resetNonce(address)
and selector0x1c72346d
. - reset
Nonce Return - Resets the nonce of an account to 0 for EOAs and 1 for contract accounts.
Container type for the return parameters of the
resetNonce(address)
function. - resume
GasMetering Call - Resumes gas metering (i.e. gas usage is counted again). Noop if already on.
Function with signature
resumeGasMetering()
and selector0x2bcd50e0
. - resume
GasMetering Return - Resumes gas metering (i.e. gas usage is counted again). Noop if already on.
Container type for the return parameters of the
resumeGasMetering()
function. - resume
Tracing Call - Unpauses collection of call traces.
Function with signature
resumeTracing()
and selector0x72a09ccb
. - resume
Tracing Return - Unpauses collection of call traces.
Container type for the return parameters of the
resumeTracing()
function. - revert
ToAnd Delete Call revertToAndDelete
is being deprecated in favor ofrevertToStateAndDelete
. It will be removed in future versions. Function with signaturerevertToAndDelete(uint256)
and selector0x03e0aca9
.- revert
ToAnd Delete Return revertToAndDelete
is being deprecated in favor ofrevertToStateAndDelete
. It will be removed in future versions. Container type for the return parameters of therevertToAndDelete(uint256)
function.- revert
ToCall revertTo
is being deprecated in favor ofrevertToState
. It will be removed in future versions. Function with signaturerevertTo(uint256)
and selector0x44d7f0a4
.- revert
ToReturn revertTo
is being deprecated in favor ofrevertToState
. It will be removed in future versions. Container type for the return parameters of therevertTo(uint256)
function.- revert
ToState AndDelete Call - Revert the state of the EVM to a previous snapshot and automatically deletes the snapshots Takes the snapshot ID to revert to.
- revert
ToState AndDelete Return - Revert the state of the EVM to a previous snapshot and automatically deletes the snapshots Takes the snapshot ID to revert to.
- revert
ToState Call - Revert the state of the EVM to a previous snapshot Takes the snapshot ID to revert to.
- revert
ToState Return - Revert the state of the EVM to a previous snapshot Takes the snapshot ID to revert to.
- revoke
Persistent_ 0Call - Revokes persistent status from the address, previously added via
makePersistent
. Function with signaturerevokePersistent(address)
and selector0x997a0222
. - revoke
Persistent_ 0Return - Revokes persistent status from the address, previously added via
makePersistent
. Container type for the return parameters of therevokePersistent(address)
function. - revoke
Persistent_ 1Call - See
revokePersistent(address)
. Function with signaturerevokePersistent(address[])
and selector0x3ce969e6
. - revoke
Persistent_ 1Return - See
revokePersistent(address)
. Container type for the return parameters of therevokePersistent(address[])
function. - roll
Call - Sets
block.height
. Function with signatureroll(uint256)
and selector0x1f7b4f30
. - roll
Fork_ 0Call - Updates the currently active fork to given block number
This is similar to
roll
but for the currently active fork. Function with signaturerollFork(uint256)
and selector0xd9bbf3a1
. - roll
Fork_ 0Return - Updates the currently active fork to given block number
This is similar to
roll
but for the currently active fork. Container type for the return parameters of therollFork(uint256)
function. - roll
Fork_ 1Call - Updates the currently active fork to given transaction. This will
rollFork
with the number of the block the transaction was mined in and replays all transaction mined before it in the block. Function with signaturerollFork(bytes32)
and selector0x0f29772b
. - roll
Fork_ 1Return - Updates the currently active fork to given transaction. This will
rollFork
with the number of the block the transaction was mined in and replays all transaction mined before it in the block. Container type for the return parameters of therollFork(bytes32)
function. - roll
Fork_ 2Call - Updates the given fork to given block number.
Function with signature
rollFork(uint256,uint256)
and selector0xd74c83a4
. - roll
Fork_ 2Return - Updates the given fork to given block number.
Container type for the return parameters of the
rollFork(uint256,uint256)
function. - roll
Fork_ 3Call - Updates the given fork to block number of the given transaction and replays all transaction mined before it in the block.
Function with signature
rollFork(uint256,bytes32)
and selector0xf2830f7b
. - roll
Fork_ 3Return - Updates the given fork to block number of the given transaction and replays all transaction mined before it in the block.
Container type for the return parameters of the
rollFork(uint256,bytes32)
function. - roll
Return - Sets
block.height
. Container type for the return parameters of theroll(uint256)
function. - rpcUrl
Call - Returns the RPC url for the given alias.
Function with signature
rpcUrl(string)
and selector0x975a6ce9
. - rpcUrl
Return - Returns the RPC url for the given alias.
Container type for the return parameters of the
rpcUrl(string)
function. - rpcUrl
Structs Call - Returns all rpc urls and their aliases as structs.
Function with signature
rpcUrlStructs()
and selector0x9d2ad72a
. - rpcUrl
Structs Return - Returns all rpc urls and their aliases as structs.
Container type for the return parameters of the
rpcUrlStructs()
function. - rpcUrls
Call - Returns all rpc urls and their aliases
[alias, url][]
. Function with signaturerpcUrls()
and selector0xa85a8418
. - rpcUrls
Return - Returns all rpc urls and their aliases
[alias, url][]
. Container type for the return parameters of therpcUrls()
function. - rpc_
0Call - Performs an Ethereum JSON-RPC request to the current fork URL.
Function with signature
rpc(string,string)
and selector0x1206c8a8
. - rpc_
0Return - Performs an Ethereum JSON-RPC request to the current fork URL.
Container type for the return parameters of the
rpc(string,string)
function. - rpc_
1Call - Performs an Ethereum JSON-RPC request to the given endpoint.
Function with signature
rpc(string,string,string)
and selector0x0199a220
. - rpc_
1Return - Performs an Ethereum JSON-RPC request to the given endpoint.
Container type for the return parameters of the
rpc(string,string,string)
function. - select
Fork Call - Takes a fork identifier created by
createFork
and sets the corresponding forked state as active. Function with signatureselectFork(uint256)
and selector0x9ebf6827
. - select
Fork Return - Takes a fork identifier created by
createFork
and sets the corresponding forked state as active. Container type for the return parameters of theselectFork(uint256)
function. - serialize
Address_ 0Call - See
serializeJson
. Function with signatureserializeAddress(string,string,address)
and selector0x972c6062
. - serialize
Address_ 0Return - See
serializeJson
. Container type for the return parameters of theserializeAddress(string,string,address)
function. - serialize
Address_ 1Call - See
serializeJson
. Function with signatureserializeAddress(string,string,address[])
and selector0x1e356e1a
. - serialize
Address_ 1Return - See
serializeJson
. Container type for the return parameters of theserializeAddress(string,string,address[])
function. - serialize
Bool_ 0Call - See
serializeJson
. Function with signatureserializeBool(string,string,bool)
and selector0xac22e971
. - serialize
Bool_ 0Return - See
serializeJson
. Container type for the return parameters of theserializeBool(string,string,bool)
function. - serialize
Bool_ 1Call - See
serializeJson
. Function with signatureserializeBool(string,string,bool[])
and selector0x92925aa1
. - serialize
Bool_ 1Return - See
serializeJson
. Container type for the return parameters of theserializeBool(string,string,bool[])
function. - serialize
Bytes32_ 0Call - See
serializeJson
. Function with signatureserializeBytes32(string,string,bytes32)
and selector0x2d812b44
. - serialize
Bytes32_ 0Return - See
serializeJson
. Container type for the return parameters of theserializeBytes32(string,string,bytes32)
function. - serialize
Bytes32_ 1Call - See
serializeJson
. Function with signatureserializeBytes32(string,string,bytes32[])
and selector0x201e43e2
. - serialize
Bytes32_ 1Return - See
serializeJson
. Container type for the return parameters of theserializeBytes32(string,string,bytes32[])
function. - serialize
Bytes_ 0Call - See
serializeJson
. Function with signatureserializeBytes(string,string,bytes)
and selector0xf21d52c7
. - serialize
Bytes_ 0Return - See
serializeJson
. Container type for the return parameters of theserializeBytes(string,string,bytes)
function. - serialize
Bytes_ 1Call - See
serializeJson
. Function with signatureserializeBytes(string,string,bytes[])
and selector0x9884b232
. - serialize
Bytes_ 1Return - See
serializeJson
. Container type for the return parameters of theserializeBytes(string,string,bytes[])
function. - serialize
Int_ 0Call - See
serializeJson
. Function with signatureserializeInt(string,string,int256)
and selector0x3f33db60
. - serialize
Int_ 0Return - See
serializeJson
. Container type for the return parameters of theserializeInt(string,string,int256)
function. - serialize
Int_ 1Call - See
serializeJson
. Function with signatureserializeInt(string,string,int256[])
and selector0x7676e127
. - serialize
Int_ 1Return - See
serializeJson
. Container type for the return parameters of theserializeInt(string,string,int256[])
function. - serialize
Json Call - Serializes a key and value to a JSON object stored in-memory that can be later written to a file.
Returns the stringified version of the specific JSON file up to that moment.
Function with signature
serializeJson(string,string)
and selector0x9b3358b0
. - serialize
Json Return - Serializes a key and value to a JSON object stored in-memory that can be later written to a file.
Returns the stringified version of the specific JSON file up to that moment.
Container type for the return parameters of the
serializeJson(string,string)
function. - serialize
Json Type_ 0Call - See
serializeJson
. Function with signatureserializeJsonType(string,bytes)
and selector0x6d4f96a6
. - serialize
Json Type_ 0Return - See
serializeJson
. Container type for the return parameters of theserializeJsonType(string,bytes)
function. - serialize
Json Type_ 1Call - See
serializeJson
. Function with signatureserializeJsonType(string,string,string,bytes)
and selector0x6f93bccb
. - serialize
Json Type_ 1Return - See
serializeJson
. Container type for the return parameters of theserializeJsonType(string,string,string,bytes)
function. - serialize
String_ 0Call - See
serializeJson
. Function with signatureserializeString(string,string,string)
and selector0x88da6d35
. - serialize
String_ 0Return - See
serializeJson
. Container type for the return parameters of theserializeString(string,string,string)
function. - serialize
String_ 1Call - See
serializeJson
. Function with signatureserializeString(string,string,string[])
and selector0x561cd6f3
. - serialize
String_ 1Return - See
serializeJson
. Container type for the return parameters of theserializeString(string,string,string[])
function. - serialize
Uint ToHex Call - See
serializeJson
. Function with signatureserializeUintToHex(string,string,uint256)
and selector0xae5a2ae8
. - serialize
Uint ToHex Return - See
serializeJson
. Container type for the return parameters of theserializeUintToHex(string,string,uint256)
function. - serialize
Uint_ 0Call - See
serializeJson
. Function with signatureserializeUint(string,string,uint256)
and selector0x129e9002
. - serialize
Uint_ 0Return - See
serializeJson
. Container type for the return parameters of theserializeUint(string,string,uint256)
function. - serialize
Uint_ 1Call - See
serializeJson
. Function with signatureserializeUint(string,string,uint256[])
and selector0xfee9a469
. - serialize
Uint_ 1Return - See
serializeJson
. Container type for the return parameters of theserializeUint(string,string,uint256[])
function. - setArbitrary
Storage_ 0Call - Utility cheatcode to set arbitrary storage for given target address.
Function with signature
setArbitraryStorage(address)
and selector0xe1631837
. - setArbitrary
Storage_ 0Return - Utility cheatcode to set arbitrary storage for given target address.
Container type for the return parameters of the
setArbitraryStorage(address)
function. - setArbitrary
Storage_ 1Call - Utility cheatcode to set arbitrary storage for given target address and overwrite
any storage slots that have been previously set.
Function with signature
setArbitraryStorage(address,bool)
and selector0xd3ec2a0b
. - setArbitrary
Storage_ 1Return - Utility cheatcode to set arbitrary storage for given target address and overwrite
any storage slots that have been previously set.
Container type for the return parameters of the
setArbitraryStorage(address,bool)
function. - setBlockhash
Call - Set blockhash for the current block.
It only sets the blockhash for blocks where
block.number - 256 <= number < block.number
. Function with signaturesetBlockhash(uint256,bytes32)
and selector0x5314b54a
. - setBlockhash
Return - Set blockhash for the current block.
It only sets the blockhash for blocks where
block.number - 256 <= number < block.number
. Container type for the return parameters of thesetBlockhash(uint256,bytes32)
function. - setEnv
Call - Sets environment variables.
Function with signature
setEnv(string,string)
and selector0x3d5923ee
. - setEnv
Return - Sets environment variables.
Container type for the return parameters of the
setEnv(string,string)
function. - setNonce
Call - Sets the nonce of an account. Must be higher than the current nonce of the account.
Function with signature
setNonce(address,uint64)
and selector0xf8e18b57
. - setNonce
Return - Sets the nonce of an account. Must be higher than the current nonce of the account.
Container type for the return parameters of the
setNonce(address,uint64)
function. - setNonce
Unsafe Call - Sets the nonce of an account to an arbitrary value.
Function with signature
setNonceUnsafe(address,uint64)
and selector0x9b67b21c
. - setNonce
Unsafe Return - Sets the nonce of an account to an arbitrary value.
Container type for the return parameters of the
setNonceUnsafe(address,uint64)
function. - shuffle
Call - Randomly shuffles an array.
Function with signature
shuffle(uint256[])
and selector0x54f1469c
. - shuffle
Return - Randomly shuffles an array.
Container type for the return parameters of the
shuffle(uint256[])
function. - sign
AndAttach Delegation_ 0Call - Sign an EIP-7702 authorization and designate the next call as an EIP-7702 transaction
Function with signature
signAndAttachDelegation(address,uint256)
and selector0xc7fa7288
. - sign
AndAttach Delegation_ 0Return - Sign an EIP-7702 authorization and designate the next call as an EIP-7702 transaction
Container type for the return parameters of the
signAndAttachDelegation(address,uint256)
function. - sign
AndAttach Delegation_ 1Call - Sign an EIP-7702 authorization and designate the next call as an EIP-7702 transaction for specific nonce
Function with signature
signAndAttachDelegation(address,uint256,uint64)
and selector0xcde3e5be
. - sign
AndAttach Delegation_ 1Return - Sign an EIP-7702 authorization and designate the next call as an EIP-7702 transaction for specific nonce
Container type for the return parameters of the
signAndAttachDelegation(address,uint256,uint64)
function. - sign
Compact_ 0Call - Signs data with a
Wallet
. - sign
Compact_ 0Return - Signs data with a
Wallet
. - sign
Compact_ 1Call - Signs
digest
withprivateKey
using the secp256k1 curve. - sign
Compact_ 1Return - Signs
digest
withprivateKey
using the secp256k1 curve. - sign
Compact_ 2Call - Signs
digest
with signer provided to script using the secp256k1 curve. - sign
Compact_ 2Return - Signs
digest
with signer provided to script using the secp256k1 curve. - sign
Compact_ 3Call - Signs
digest
with signer provided to script using the secp256k1 curve. - sign
Compact_ 3Return - Signs
digest
with signer provided to script using the secp256k1 curve. - sign
Delegation_ 0Call - Sign an EIP-7702 authorization for delegation
Function with signature
signDelegation(address,uint256)
and selector0x5b593c7b
. - sign
Delegation_ 0Return - Sign an EIP-7702 authorization for delegation
Container type for the return parameters of the
signDelegation(address,uint256)
function. - sign
Delegation_ 1Call - Sign an EIP-7702 authorization for delegation for specific nonce
Function with signature
signDelegation(address,uint256,uint64)
and selector0xceba2ec3
. - sign
Delegation_ 1Return - Sign an EIP-7702 authorization for delegation for specific nonce
Container type for the return parameters of the
signDelegation(address,uint256,uint64)
function. - sign
P256 Call - Signs
digest
withprivateKey
using the secp256r1 curve. Function with signaturesignP256(uint256,bytes32)
and selector0x83211b40
. - sign
P256 Return - Signs
digest
withprivateKey
using the secp256r1 curve. Container type for the return parameters of thesignP256(uint256,bytes32)
function. - sign_
0Call - Signs data with a
Wallet
. Function with signaturesign((address,uint256,uint256,uint256),bytes32)
and selector0xb25c5a25
. - sign_
0Return - Signs data with a
Wallet
. Container type for the return parameters of thesign((address,uint256,uint256,uint256),bytes32)
function. - sign_
1Call - Signs
digest
withprivateKey
using the secp256k1 curve. Function with signaturesign(uint256,bytes32)
and selector0xe341eaa4
. - sign_
1Return - Signs
digest
withprivateKey
using the secp256k1 curve. Container type for the return parameters of thesign(uint256,bytes32)
function. - sign_
2Call - Signs
digest
with signer provided to script using the secp256k1 curve. - sign_
2Return - Signs
digest
with signer provided to script using the secp256k1 curve. - sign_
3Call - Signs
digest
with signer provided to script using the secp256k1 curve. - sign_
3Return - Signs
digest
with signer provided to script using the secp256k1 curve. - skip_
0Call - Marks a test as skipped. Must be called at the top level of a test.
Function with signature
skip(bool)
and selector0xdd82d13e
. - skip_
0Return - Marks a test as skipped. Must be called at the top level of a test.
Container type for the return parameters of the
skip(bool)
function. - skip_
1Call - Marks a test as skipped with a reason. Must be called at the top level of a test.
Function with signature
skip(bool,string)
and selector0xc42a80a7
. - skip_
1Return - Marks a test as skipped with a reason. Must be called at the top level of a test.
Container type for the return parameters of the
skip(bool,string)
function. - sleep
Call - Suspends execution of the main thread for
duration
milliseconds. Function with signaturesleep(uint256)
and selector0xfa9d8713
. - sleep
Return - Suspends execution of the main thread for
duration
milliseconds. Container type for the return parameters of thesleep(uint256)
function. - snapshot
Call snapshot
is being deprecated in favor ofsnapshotState
. It will be removed in future versions. Function with signaturesnapshot()
and selector0x9711715a
.- snapshot
GasLast Call_ 0Call - Snapshot capture the gas usage of the last call by name from the callee perspective.
Function with signature
snapshotGasLastCall(string)
and selector0xdd9fca12
. - snapshot
GasLast Call_ 0Return - Snapshot capture the gas usage of the last call by name from the callee perspective.
Container type for the return parameters of the
snapshotGasLastCall(string)
function. - snapshot
GasLast Call_ 1Call - Snapshot capture the gas usage of the last call by name in a group from the callee perspective.
Function with signature
snapshotGasLastCall(string,string)
and selector0x200c6772
. - snapshot
GasLast Call_ 1Return - Snapshot capture the gas usage of the last call by name in a group from the callee perspective.
Container type for the return parameters of the
snapshotGasLastCall(string,string)
function. - snapshot
Return snapshot
is being deprecated in favor ofsnapshotState
. It will be removed in future versions. Container type for the return parameters of thesnapshot()
function.- snapshot
State Call - Snapshot the current state of the evm.
Returns the ID of the snapshot that was created.
To revert a snapshot use
revertToState
. Function with signaturesnapshotState()
and selector0x9cd23835
. - snapshot
State Return - Snapshot the current state of the evm.
Returns the ID of the snapshot that was created.
To revert a snapshot use
revertToState
. Container type for the return parameters of thesnapshotState()
function. - snapshot
Value_ 0Call - Snapshot capture an arbitrary numerical value by name.
The group name is derived from the contract name.
Function with signature
snapshotValue(string,uint256)
and selector0x51db805a
. - snapshot
Value_ 0Return - Snapshot capture an arbitrary numerical value by name.
The group name is derived from the contract name.
Container type for the return parameters of the
snapshotValue(string,uint256)
function. - snapshot
Value_ 1Call - Snapshot capture an arbitrary numerical value by name in a group.
Function with signature
snapshotValue(string,string,uint256)
and selector0x6d2b27d8
. - snapshot
Value_ 1Return - Snapshot capture an arbitrary numerical value by name in a group.
Container type for the return parameters of the
snapshotValue(string,string,uint256)
function. - sort
Call - Sorts an array in ascending order.
Function with signature
sort(uint256[])
and selector0x9ec8b026
. - sort
Return - Sorts an array in ascending order.
Container type for the return parameters of the
sort(uint256[])
function. - split
Call - Splits the given
string
into an array of strings divided by thedelimiter
. Function with signaturesplit(string,string)
and selector0x8bb75533
. - split
Return - Splits the given
string
into an array of strings divided by thedelimiter
. Container type for the return parameters of thesplit(string,string)
function. - start
Broadcast_ 0Call - Has all subsequent calls (at this call depth only) create transactions that can later be signed and sent onchain.
- start
Broadcast_ 0Return - Has all subsequent calls (at this call depth only) create transactions that can later be signed and sent onchain.
- start
Broadcast_ 1Call - Has all subsequent calls (at this call depth only) create transactions with the address
provided that can later be signed and sent onchain.
Function with signature
startBroadcast(address)
and selector0x7fec2a8d
. - start
Broadcast_ 1Return - Has all subsequent calls (at this call depth only) create transactions with the address
provided that can later be signed and sent onchain.
Container type for the return parameters of the
startBroadcast(address)
function. - start
Broadcast_ 2Call - Has all subsequent calls (at this call depth only) create transactions with the private key
provided that can later be signed and sent onchain.
Function with signature
startBroadcast(uint256)
and selector0xce817d47
. - start
Broadcast_ 2Return - Has all subsequent calls (at this call depth only) create transactions with the private key
provided that can later be signed and sent onchain.
Container type for the return parameters of the
startBroadcast(uint256)
function. - start
Debug Trace Recording Call - Records the debug trace during the run.
Function with signature
startDebugTraceRecording()
and selector0x419c8832
. - start
Debug Trace Recording Return - Records the debug trace during the run.
Container type for the return parameters of the
startDebugTraceRecording()
function. - start
Mapping Recording Call - Starts recording all map SSTOREs for later retrieval.
Function with signature
startMappingRecording()
and selector0x3e9705c0
. - start
Mapping Recording Return - Starts recording all map SSTOREs for later retrieval.
Container type for the return parameters of the
startMappingRecording()
function. - start
Prank_ 0Call - Sets all subsequent calls’
msg.sender
to be the input address untilstopPrank
is called. Function with signaturestartPrank(address)
and selector0x06447d56
. - start
Prank_ 0Return - Sets all subsequent calls’
msg.sender
to be the input address untilstopPrank
is called. Container type for the return parameters of thestartPrank(address)
function. - start
Prank_ 1Call - Sets all subsequent calls’
msg.sender
to be the input address untilstopPrank
is called, and thetx.origin
to be the second input. Function with signaturestartPrank(address,address)
and selector0x45b56078
. - start
Prank_ 1Return - Sets all subsequent calls’
msg.sender
to be the input address untilstopPrank
is called, and thetx.origin
to be the second input. Container type for the return parameters of thestartPrank(address,address)
function. - start
Prank_ 2Call - Sets all subsequent delegate calls’
msg.sender
to be the input address untilstopPrank
is called. Function with signaturestartPrank(address,bool)
and selector0x1cc0b435
. - start
Prank_ 2Return - Sets all subsequent delegate calls’
msg.sender
to be the input address untilstopPrank
is called. Container type for the return parameters of thestartPrank(address,bool)
function. - start
Prank_ 3Call - Sets all subsequent delegate calls’
msg.sender
to be the input address untilstopPrank
is called, and thetx.origin
to be the second input. Function with signaturestartPrank(address,address,bool)
and selector0x4eb859b5
. - start
Prank_ 3Return - Sets all subsequent delegate calls’
msg.sender
to be the input address untilstopPrank
is called, and thetx.origin
to be the second input. Container type for the return parameters of thestartPrank(address,address,bool)
function. - start
Snapshot Gas_ 0Call - Start a snapshot capture of the current gas usage by name.
The group name is derived from the contract name.
Function with signature
startSnapshotGas(string)
and selector0x3cad9d7b
. - start
Snapshot Gas_ 0Return - Start a snapshot capture of the current gas usage by name.
The group name is derived from the contract name.
Container type for the return parameters of the
startSnapshotGas(string)
function. - start
Snapshot Gas_ 1Call - Start a snapshot capture of the current gas usage by name in a group.
Function with signature
startSnapshotGas(string,string)
and selector0x6cd0cc53
. - start
Snapshot Gas_ 1Return - Start a snapshot capture of the current gas usage by name in a group.
Container type for the return parameters of the
startSnapshotGas(string,string)
function. - start
State Diff Recording Call - Record all account accesses as part of CREATE, CALL or SELFDESTRUCT opcodes in order,
along with the context of the calls
Function with signature
startStateDiffRecording()
and selector0xcf22e3c9
. - start
State Diff Recording Return - Record all account accesses as part of CREATE, CALL or SELFDESTRUCT opcodes in order,
along with the context of the calls
Container type for the return parameters of the
startStateDiffRecording()
function. - stop
AndReturn Debug Trace Recording Call - Stop debug trace recording and returns the recorded debug trace.
Function with signature
stopAndReturnDebugTraceRecording()
and selector0xced398a2
. - stop
AndReturn Debug Trace Recording Return - Stop debug trace recording and returns the recorded debug trace.
Container type for the return parameters of the
stopAndReturnDebugTraceRecording()
function. - stop
AndReturn State Diff Call - Returns an ordered array of all account accesses from a
vm.startStateDiffRecording
session. Function with signaturestopAndReturnStateDiff()
and selector0xaa5cf90e
. - stop
AndReturn State Diff Return - Returns an ordered array of all account accesses from a
vm.startStateDiffRecording
session. Container type for the return parameters of thestopAndReturnStateDiff()
function. - stop
Broadcast Call - Stops collecting onchain transactions.
Function with signature
stopBroadcast()
and selector0x76eadd36
. - stop
Broadcast Return - Stops collecting onchain transactions.
Container type for the return parameters of the
stopBroadcast()
function. - stop
Expect Safe Memory Call - Stops all safe memory expectation in the current subcontext.
Function with signature
stopExpectSafeMemory()
and selector0x0956441b
. - stop
Expect Safe Memory Return - Stops all safe memory expectation in the current subcontext.
Container type for the return parameters of the
stopExpectSafeMemory()
function. - stop
Mapping Recording Call - Stops recording all map SSTOREs for later retrieval and clears the recorded data.
Function with signature
stopMappingRecording()
and selector0x0d4aae9b
. - stop
Mapping Recording Return - Stops recording all map SSTOREs for later retrieval and clears the recorded data.
Container type for the return parameters of the
stopMappingRecording()
function. - stop
Prank Call - Resets subsequent calls’
msg.sender
to beaddress(this)
. Function with signaturestopPrank()
and selector0x90c5013b
. - stop
Prank Return - Resets subsequent calls’
msg.sender
to beaddress(this)
. Container type for the return parameters of thestopPrank()
function. - stop
Snapshot Gas_ 0Call - Stop the snapshot capture of the current gas by latest snapshot name, capturing the gas used since the start.
Function with signature
stopSnapshotGas()
and selector0xf6402eda
. - stop
Snapshot Gas_ 0Return - Stop the snapshot capture of the current gas by latest snapshot name, capturing the gas used since the start.
Container type for the return parameters of the
stopSnapshotGas()
function. - stop
Snapshot Gas_ 1Call - Stop the snapshot capture of the current gas usage by name, capturing the gas used since the start.
The group name is derived from the contract name.
Function with signature
stopSnapshotGas(string)
and selector0x773b2805
. - stop
Snapshot Gas_ 1Return - Stop the snapshot capture of the current gas usage by name, capturing the gas used since the start.
The group name is derived from the contract name.
Container type for the return parameters of the
stopSnapshotGas(string)
function. - stop
Snapshot Gas_ 2Call - Stop the snapshot capture of the current gas usage by name in a group, capturing the gas used since the start.
Function with signature
stopSnapshotGas(string,string)
and selector0x0c9db707
. - stop
Snapshot Gas_ 2Return - Stop the snapshot capture of the current gas usage by name in a group, capturing the gas used since the start.
Container type for the return parameters of the
stopSnapshotGas(string,string)
function. - store
Call - Stores a value to an address’ storage slot.
Function with signature
store(address,bytes32,bytes32)
and selector0x70ca10bb
. - store
Return - Stores a value to an address’ storage slot.
Container type for the return parameters of the
store(address,bytes32,bytes32)
function. - toBase64URL_
0Call - Encodes a
bytes
value to a base64url string. Function with signaturetoBase64URL(bytes)
and selector0xc8bd0e4a
. - toBase64URL_
0Return - Encodes a
bytes
value to a base64url string. Container type for the return parameters of thetoBase64URL(bytes)
function. - toBase64URL_
1Call - Encodes a
string
value to a base64url string. Function with signaturetoBase64URL(string)
and selector0xae3165b3
. - toBase64URL_
1Return - Encodes a
string
value to a base64url string. Container type for the return parameters of thetoBase64URL(string)
function. - toBase64_
0Call - Encodes a
bytes
value to a base64 string. Function with signaturetoBase64(bytes)
and selector0xa5cbfe65
. - toBase64_
0Return - Encodes a
bytes
value to a base64 string. Container type for the return parameters of thetoBase64(bytes)
function. - toBase64_
1Call - Encodes a
string
value to a base64 string. Function with signaturetoBase64(string)
and selector0x3f8be2c8
. - toBase64_
1Return - Encodes a
string
value to a base64 string. Container type for the return parameters of thetoBase64(string)
function. - toLowercase
Call - Converts the given
string
value to Lowercase. Function with signaturetoLowercase(string)
and selector0x50bb0884
. - toLowercase
Return - Converts the given
string
value to Lowercase. Container type for the return parameters of thetoLowercase(string)
function. - toString_
0Call - Converts the given value to a
string
. Function with signaturetoString(address)
and selector0x56ca623e
. - toString_
0Return - Converts the given value to a
string
. Container type for the return parameters of thetoString(address)
function. - toString_
1Call - Converts the given value to a
string
. Function with signaturetoString(bytes)
and selector0x71aad10d
. - toString_
1Return - Converts the given value to a
string
. Container type for the return parameters of thetoString(bytes)
function. - toString_
2Call - Converts the given value to a
string
. Function with signaturetoString(bytes32)
and selector0xb11a19e8
. - toString_
2Return - Converts the given value to a
string
. Container type for the return parameters of thetoString(bytes32)
function. - toString_
3Call - Converts the given value to a
string
. Function with signaturetoString(bool)
and selector0x71dce7da
. - toString_
3Return - Converts the given value to a
string
. Container type for the return parameters of thetoString(bool)
function. - toString_
4Call - Converts the given value to a
string
. Function with signaturetoString(uint256)
and selector0x6900a3ae
. - toString_
4Return - Converts the given value to a
string
. Container type for the return parameters of thetoString(uint256)
function. - toString_
5Call - Converts the given value to a
string
. Function with signaturetoString(int256)
and selector0xa322c40e
. - toString_
5Return - Converts the given value to a
string
. Container type for the return parameters of thetoString(int256)
function. - toUppercase
Call - Converts the given
string
value to Uppercase. Function with signaturetoUppercase(string)
and selector0x074ae3d7
. - toUppercase
Return - Converts the given
string
value to Uppercase. Container type for the return parameters of thetoUppercase(string)
function. - transact_
0Call - Fetches the given transaction from the active fork and executes it on the current state.
Function with signature
transact(bytes32)
and selector0xbe646da1
. - transact_
0Return - Fetches the given transaction from the active fork and executes it on the current state.
Container type for the return parameters of the
transact(bytes32)
function. - transact_
1Call - Fetches the given transaction from the given fork and executes it on the current state.
Function with signature
transact(uint256,bytes32)
and selector0x4d8abc4b
. - transact_
1Return - Fetches the given transaction from the given fork and executes it on the current state.
Container type for the return parameters of the
transact(uint256,bytes32)
function. - trim
Call - Trims leading and trailing whitespace from the given
string
value. Function with signaturetrim(string)
and selector0xb2dad155
. - trim
Return - Trims leading and trailing whitespace from the given
string
value. Container type for the return parameters of thetrim(string)
function. - tryFfi
Call - Performs a foreign function call via terminal and returns the exit code, stdout, and stderr.
Function with signature
tryFfi(string[])
and selector0xf45c1ce7
. - tryFfi
Return - Performs a foreign function call via terminal and returns the exit code, stdout, and stderr.
Container type for the return parameters of the
tryFfi(string[])
function. - txGas
Price Call - Sets
tx.gasprice
. Function with signaturetxGasPrice(uint256)
and selector0x48f50c0f
. - txGas
Price Return - Sets
tx.gasprice
. Container type for the return parameters of thetxGasPrice(uint256)
function. - unix
Time Call - Returns the time since unix epoch in milliseconds.
Function with signature
unixTime()
and selector0x625387dc
. - unix
Time Return - Returns the time since unix epoch in milliseconds.
Container type for the return parameters of the
unixTime()
function. - warm
Slot Call - Utility cheatcode to mark specific storage slot as warm, simulating a prior read.
Function with signature
warmSlot(address,bytes32)
and selector0xb23184cf
. - warm
Slot Return - Utility cheatcode to mark specific storage slot as warm, simulating a prior read.
Container type for the return parameters of the
warmSlot(address,bytes32)
function. - warp
Call - Sets
block.timestamp
. Function with signaturewarp(uint256)
and selector0xe5d6bf02
. - warp
Return - Sets
block.timestamp
. Container type for the return parameters of thewarp(uint256)
function. - write
File Binary Call - Writes binary data to a file, creating a file if it does not exist, and entirely replacing its contents if it does.
path
is relative to the project root. Function with signaturewriteFileBinary(string,bytes)
and selector0x1f21fc80
. - write
File Binary Return - Writes binary data to a file, creating a file if it does not exist, and entirely replacing its contents if it does.
path
is relative to the project root. Container type for the return parameters of thewriteFileBinary(string,bytes)
function. - write
File Call - Writes data to file, creating a file if it does not exist, and entirely replacing its contents if it does.
path
is relative to the project root. Function with signaturewriteFile(string,string)
and selector0x897e0a97
. - write
File Return - Writes data to file, creating a file if it does not exist, and entirely replacing its contents if it does.
path
is relative to the project root. Container type for the return parameters of thewriteFile(string,string)
function. - write
Json_ 0Call - Write a serialized JSON object to a file. If the file exists, it will be overwritten.
Function with signature
writeJson(string,string)
and selector0xe23cd19f
. - write
Json_ 0Return - Write a serialized JSON object to a file. If the file exists, it will be overwritten.
Container type for the return parameters of the
writeJson(string,string)
function. - write
Json_ 1Call - Write a serialized JSON object to an existing JSON file, replacing a value with key = <value_key.>
This is useful to replace a specific value of a JSON file, without having to parse the entire thing.
Function with signature
writeJson(string,string,string)
and selector0x35d6ad46
. - write
Json_ 1Return - Write a serialized JSON object to an existing JSON file, replacing a value with key = <value_key.>
This is useful to replace a specific value of a JSON file, without having to parse the entire thing.
Container type for the return parameters of the
writeJson(string,string,string)
function. - write
Line Call - Writes line to file, creating a file if it does not exist.
path
is relative to the project root. Function with signaturewriteLine(string,string)
and selector0x619d897f
. - write
Line Return - Writes line to file, creating a file if it does not exist.
path
is relative to the project root. Container type for the return parameters of thewriteLine(string,string)
function. - write
Toml_ 0Call - Takes serialized JSON, converts to TOML and write a serialized TOML to a file.
Function with signature
writeToml(string,string)
and selector0xc0865ba7
. - write
Toml_ 0Return - Takes serialized JSON, converts to TOML and write a serialized TOML to a file.
Container type for the return parameters of the
writeToml(string,string)
function. - write
Toml_ 1Call - Takes serialized JSON, converts to TOML and write a serialized TOML table to an existing TOML file, replacing a value with key = <value_key.>
This is useful to replace a specific value of a TOML file, without having to parse the entire thing.
Function with signature
writeToml(string,string,string)
and selector0x51ac6a33
. - write
Toml_ 1Return - Takes serialized JSON, converts to TOML and write a serialized TOML table to an existing TOML file, replacing a value with key = <value_key.>
This is useful to replace a specific value of a TOML file, without having to parse the entire thing.
Container type for the return parameters of the
writeToml(string,string,string)
function.
Enums§
- Account
Access Kind - The kind of account access that occurred.
- Broadcast
TxType - The transaction type (
txType
) of the broadcast. - Caller
Mode - A modification applied to either
msg.sender
ortx.origin
. Returned byreadCallers
. - Forge
Context - Forge execution contexts.
- VmCalls
- Container for all the
Vm
function calls. - VmErrors
- Container for all the
Vm
custom errors.
Constants§
- CHEATCODES
- All the cheatcodes in this contract.
- VM_
ERRORS - All the custom errors in this contract.