Skip to content

Instantly share code, notes, and snippets.

@PaulRBerg
PaulRBerg / PRBProxyRegistry.bytecode
Created August 9, 2023 16:41
Bytecode for PRBProxyRegistry v4.0.1
6080806040523461001657612599908161001c8239f35b600080fdfe60806040818152600491823610156200001757600080fd5b60009260e08435811c928363092af8131462000fa2575082631ddef5b91462000eef5782634bddd93a1462000b9f5782635cabcdf71462000ada57826361be48591462000a7e5782636383afb214620008e057826366b0182d14620007d957826374912cd2146200074c578263775c300c14620006cd5782639d1bd1591462000608578263aa4b826a1462000525578263b31d1b9914620004bb578263b7fba4d3146200047b578263b96784031462000417578263fa557e9314620001e857508163fb4a4d081462000145575063ffa1ad7414620000f457600080fd5b34620001415781600319360112620001415780516200013d916200011882620011b1565b6005825264342e302e3160d81b602083015251918291602083526020830190620011f1565b0390f35b5080fd5b905034620001e4576020366003190112620001e457620001646200104a565b33845260066020528284205490926001600160a01b0392909183169081620001b8575050620001b1620001aa602095835190620001a18262001194565b8152336200131e565b93620017b6565b5191168152f35b825163bf0b215b60e01b8152339181019182526001600160a01b03909216602082015281906040010390fd
@PaulRBerg
PaulRBerg / IERC165.sol
Created June 23, 2023 12:26
Interfaces for IERC165
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.4;
/// @notice Interface of the ERC165 standard, as defined in https://eips.ethereum.org/EIPS/eip-165. Implementers can
/// declare support of contract interfaces, which can then be queried by other contracts.
/// @dev Credits to OpenZeppelin under MIT license.
interface IERC165 {
/// @notice Returns true if this contract implements the interface defined by `interfaceId`. See the EIP to learn
/// more about how these ids are created.
///
@PaulRBerg
PaulRBerg / viaIR.md
Created May 30, 2023 13:55
Explanation of `--via-ir` setup

Via IR Setup

The contracts will be deployed to the production chains with the --via-ir flag enabled.

Using the Via IR compilation pipeline enables a host of powerful optimizations, albeit at the expense of significantly slower compilation times, which can hinder local development efficiency. However, it is crucial to test our contracts against this optimized version, as this is what end users will ultimately interact with.

In order to strike a balance, we have come up with a setup that allows for efficient development and testing on local machines, while still ensuring compatibility with the IR-enabled version. Our approach involves building and testing the contracts normally on local machines, while leveraging the CI environment to build and test the IR-enabled contracts. This ensures rapid development and testing while providing confidence that the contracts function as intended when deployed (with tests passing both with and without IR enabled).

@PaulRBerg
PaulRBerg / goCherryPick.sh
Created May 21, 2023 15:10
Checkout a temporary branch, cherry pick the provided commit(s), and finally switch to the provided branch name
# Checkout a temporaru branch `tmp`, cherry pick the provided commit(s), and
# finally switch to the provided branch name
# $1 = branch name
# $2 = first commit
# $3 = second commit for forming a range (optional)
function goCherryPick() {
if [ -z "$1" ]; then
echo "Branch name not provided, aborting"
return;
fi
@PaulRBerg
PaulRBerg / SignatureVerification-verify.sol
Created May 15, 2023 11:51
Reducing the control flow nesting depth of
function verify(bytes calldata signature, bytes32 hash, address claimedSigner) internal view {
bytes32 r;
bytes32 s;
uint8 v;
if (claimedSigner.code.length > 0) {
bytes4 magicValue = IERC1271(claimedSigner).isValidSignature(hash, signature);
if (magicValue != IERC1271.isValidSignature.selector) revert InvalidContractSignature();
return;
}
@PaulRBerg
PaulRBerg / IWrappedNativeAsset.sol
Last active May 15, 2023 09:43
Generic interface for wrapping native assets into ERC-20 form
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.19;
import { IERC20 } from "@openzeppelin/token/ERC20/IERC20.sol";
/// @notice An interface for contracts that wrap native assets in ERC-20 form, such as WETH.
/// @dev A generic name is used instead of "WETH" to accommodate chains with different native assets.
interface IWrappedNativeAsset is IERC20 {
/// @notice Deposits native assets to receive ERC-20 wrapped assets.
function deposit() external payable;
@PaulRBerg
PaulRBerg / eslint.config.js
Last active July 27, 2024 20:50
Experimental flat config `eslint.config.js` for my TypeScript template
import js from "@eslint/js";
import globals from "globals";
import prettierConfig from "eslint-config-prettier";
import typescriptEslintRecommended from "@typescript-eslint/eslint-plugin/configs/recommended";
import typescriptEslint from "@typescript-eslint/eslint-plugin";
export default [
js.configs.recommended,
typescriptEslintRecommended,
prettierConfig,
@PaulRBerg
PaulRBerg / git-cm.toml
Created March 6, 2023 10:23
Git alias to copy the message of a commit SHA
[alias]
# Copy message of provided commit: git cm COMMIT_SHA
cm = !"git rev-list --format=%B --max-count=1 $1 | tail +2 | pbcopy"
@PaulRBerg
PaulRBerg / AbiEncode.sol
Created February 25, 2023 21:36
Toy example to see how `abi.encode` works with zero values
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.19;
contract Contract {
function foo(bytes32 seed) external view returns (bytes memory) {
return abi.encode(tx.origin, seed);
}
function getBytes32(uint256 number) external pure returns (bytes32) {
return bytes32(number);
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.19;
import { Script } from "forge-std/Script.sol";
abstract contract BaseScript is Script {
/// @dev Included to enable compilation of the script without a $MNEMONIC environment variable.
string internal constant TEST_MNEMONIC = "test test test test test test test test test test test junk";
/// @dev Needed for the deterministic deployments.