https://github.com/sambacha/solidity-console
hevm + hardhat console + etc
https://github.com/sambacha/solidity-console
dapptools forge foundry hardhat hevm
Last synced: about 1 month ago
JSON representation
hevm + hardhat console + etc
- Host: GitHub
- URL: https://github.com/sambacha/solidity-console
- Owner: sambacha
- Created: 2021-09-08T02:05:29.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-01-10T05:42:15.000Z (over 4 years ago)
- Last Synced: 2025-06-24T09:50:15.518Z (11 months ago)
- Topics: dapptools, forge, foundry, hardhat, hevm
- Language: Solidity
- Homepage:
- Size: 155 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Contract Testing Library
### LibHEVM
```json
{
"kind": "user",
"methods": {
"addr(uint256)": {
"notice": "Gets address for a given private key, (privateKey) => (address)"
},
"deal(address,uint256)": {
"notice": "Sets an address' balance, (who, newBalance)"
},
"etch(address,bytes)": {
"notice": "Sets an address' code, (who, newCode)"
},
"expectRevert(bytes)": {
"notice": "Expects an error on next call"
},
"fee(uint256)": {
"notice": "Set block.basefee (newBasefee)"
},
"ffi(string[])": {
"notice": "Performs a foreign function call via terminal, (stringInputs) => (result)"
},
"load(address,bytes32)": {
"notice": "Loads a storage slot from an address (who, slot)"
},
"prank(address)": {
"notice": "Sets the *next* call's msg.sender to be the input address"
},
"roll(uint256)": {
"notice": "Set block.height (newHeight)"
},
"sign(uint256,bytes32)": {
"notice": "Signs data, (privateKey, digest) => (r, v, s)"
},
"startPrank(address)": {
"notice": "Sets all subsequent calls' msg.sender to be the input address until `stopPrank` is called"
},
"stopPrank()": {
"notice": "Resets subsequent calls' msg.sender to be `address(this)`"
},
"store(address,bytes32,bytes32)": {
"notice": "Stores a value to an address' storage slot, (who, slot, value)"
},
"warp(uint256)": {
"notice": "Set block.timestamp (newTimestamp)"
}
},
"version": 1
}