clabby
clabby
## Overview Adds a new inspector to the test runner to detect calls to a cheatcode address. Cheatcodes can be invoked by sending a staticcall to `0x00000000000000000000000000000000bEefbabe` with the following...
# Overview As it stands, the lexer is the longest stage of the compilation process by a large margin. We should optimize it or rewrite it before the production build....
## Overview Adds helper macros to `Errors.huff` for asserting equality / inequality of stack items, words in memory, and words in storage slots. Also merges `main` into `dev`
# Overview Merges the `dev` branch into `main`. ## PRs * #32 by @clabby * #33 by @clabby
Adds a class in `bitcore-node`'s ETH module that enables multiple web3 JSON rpc connections per network & cycles through which one is chosen when `getWeb3` is called for loadbalancing between...
Adds better support for regtest networks in BWC/BWS/Bitcore-lib.
# Overview At the moment, the SafeTransferLib implementation uses right padded function selectors (see: https://github.com/pentagonxyz/huffmate/blob/main/src/utils/SafeTransferLib.huff#L25). Instead, we should follow the original Solady method of storing a non-padded selector and using...
# Overview Creates separate implementations of the token contracts that allow for a dynamically sized `name` via the new `__CODECOPY_DYN_ARG` builtin. Leaves `symbol` untouched because it will probably never be...
# Overview The initial implementation is complete, but there are many points where the library can be gas optimized. Should do a second scan of the implementation, remove unnecessary ops,...