Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

Commit

Permalink
Add storage layout diff checks (hyperlane-xyz#2991)
Browse files Browse the repository at this point in the history
  • Loading branch information
yorhodes committed Nov 30, 2023
1 parent f44589e commit 3501755
Show file tree
Hide file tree
Showing 9 changed files with 111 additions and 19 deletions.
6 changes: 6 additions & 0 deletions .changeset/smooth-swans-wave.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@hyperlane-xyz/sdk': patch
'@hyperlane-xyz/core': patch
---

Rename StaticProtocolFee hook to ProtocolFee for clarity
66 changes: 66 additions & 0 deletions .github/workflows/storage-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
name: Check Storage Layout Changes

on:
pull_request:
branches: [main]
paths:
- 'solidity/**'
workflow_dispatch:

jobs:
diff-check:
runs-on: ubuntu-latest

steps:
# Checkout the PR branch
- name: Checkout PR branch
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
submodules: recursive

- uses: actions/setup-node@v3
with:
node-version: 18

- name: yarn-cache
uses: actions/cache@v3
with:
path: |
**/node_modules
.yarn
key: ${{ runner.os }}-yarn-cache-${{ hashFiles('./yarn.lock') }}

- name: yarn-install
run: yarn install

- name: foundry-install
uses: onbjerg/foundry-toolchain@v1

# Run the command on PR branch
- name: Run command on PR branch
run: yarn workspace @hyperlane-xyz/core storage HEAD-storage

# Checkout the target branch (base)
- name: Checkout target branch (base) contracts
env:
BASE_REF: ${{ github.event.pull_request.base.sha }}
run: |
git fetch origin $BASE_REF
git checkout $BASE_REF -- solidity/contracts
# Run the command on the target branch
- name: Run command on target branch
run: yarn workspace @hyperlane-xyz/core storage base-storage

# Compare outputs
- name: Compare outputs
run: diff --unified solidity/base-storage solidity/HEAD-storage > layout.diff

- name: Comment PR with layout diff
uses: yorhodes/actions-comment-pull-request@v2.4.6
with:
header: Storage Layout Diff
filePath: layout.diff
mdLanguage: diff
comment_tag: storagelayoutdiff
1 change: 1 addition & 0 deletions solidity/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ types/
dist/
coverage/
coverage.json
storage/
.env
*lcov.info
# Foundry
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ import {Address} from "@openzeppelin/contracts/utils/Address.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";

/**
* @title StaticProtocolFee
* @title ProtocolFee
* @notice Collects a static protocol fee from the sender.
*/
contract StaticProtocolFee is AbstractPostDispatchHook, Ownable {
contract ProtocolFee is AbstractPostDispatchHook, Ownable {
using StandardHookMetadata for bytes;
using Address for address payable;
using Message for bytes;
Expand Down Expand Up @@ -97,7 +97,7 @@ contract StaticProtocolFee is AbstractPostDispatchHook, Ownable {
) internal override {
require(
msg.value >= protocolFee,
"StaticProtocolFee: insufficient protocol fee"
"ProtocolFee: insufficient protocol fee"
);

uint256 refund = msg.value - protocolFee;
Expand All @@ -123,7 +123,7 @@ contract StaticProtocolFee is AbstractPostDispatchHook, Ownable {
function _setProtocolFee(uint256 _protocolFee) internal {
require(
_protocolFee <= MAX_PROTOCOL_FEE,
"StaticProtocolFee: exceeds max protocol fee"
"ProtocolFee: exceeds max protocol fee"
);
protocolFee = _protocolFee;
}
Expand All @@ -133,10 +133,7 @@ contract StaticProtocolFee is AbstractPostDispatchHook, Ownable {
* @param _beneficiary The new beneficiary.
*/
function _setBeneficiary(address _beneficiary) internal {
require(
_beneficiary != address(0),
"StaticProtocolFee: invalid beneficiary"
);
require(_beneficiary != address(0), "ProtocolFee: invalid beneficiary");
beneficiary = _beneficiary;
}
}
1 change: 1 addition & 0 deletions solidity/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
"coverage": "./coverage.sh",
"docs": "forge doc",
"flatten": "./flatten.sh",
"storage": "./storage.sh",
"prettier": "prettier --write ./contracts ./test",
"test": "hardhat test && forge test -vvv",
"gas": "forge snapshot",
Expand Down
21 changes: 21 additions & 0 deletions solidity/storage.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/bin/bash
OUTPUT_PATH=${1:-storage}
EXCLUDE="test|mock|interfaces|libs|upgrade|README|Abstract|Static"

IFS=$'\n'
CONTRACT_FILES=($(find ./contracts -type f))
unset IFS

echo "Generating layouts in $OUTPUT_PATH"
mkdir -p $OUTPUT_PATH

for file in "${CONTRACT_FILES[@]}";
do
if [[ $file =~ .*($EXCLUDE).* ]]; then
continue
fi

contract=$(basename "$file" .sol)
echo "Generating storage layout of $contract"
forge inspect "$contract" storage --pretty > "$OUTPUT_PATH/$contract.md"
done
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ import {MessageUtils} from "../isms/IsmTestUtils.sol";
import {StandardHookMetadata} from "../../contracts/hooks/libs/StandardHookMetadata.sol";
import {IPostDispatchHook} from "../../contracts/interfaces/hooks/IPostDispatchHook.sol";

import {StaticProtocolFee} from "../../contracts/hooks/StaticProtocolFee.sol";
import {ProtocolFee} from "../../contracts/hooks/ProtocolFee.sol";

contract StaticProtocolFeeTest is Test {
contract ProtocolFeeTest is Test {
using TypeCasts for address;

StaticProtocolFee internal fees;
ProtocolFee internal fees;

address internal alice = address(0x1); // alice the user
address internal bob = address(0x2); // bob the beneficiary
Expand All @@ -27,7 +27,7 @@ contract StaticProtocolFeeTest is Test {
bytes internal testMessage;

function setUp() public {
fees = new StaticProtocolFee(MAX_FEE, FEE, bob, address(this));
fees = new ProtocolFee(MAX_FEE, FEE, bob, address(this));

testMessage = _encodeTestMessage();
}
Expand Down Expand Up @@ -63,7 +63,7 @@ contract StaticProtocolFeeTest is Test {
10 * fees.MAX_PROTOCOL_FEE()
);

vm.expectRevert("StaticProtocolFee: exceeds max protocol fee");
vm.expectRevert("ProtocolFee: exceeds max protocol fee");
fees.setProtocolFee(fee);

assertEq(fees.protocolFee(), FEE);
Expand Down Expand Up @@ -95,7 +95,7 @@ contract StaticProtocolFeeTest is Test {
uint256 balanceBefore = alice.balance;

vm.prank(alice);
vm.expectRevert("StaticProtocolFee: insufficient protocol fee");
vm.expectRevert("ProtocolFee: insufficient protocol fee");
fees.postDispatch{value: feeSent}("", "");

assertEq(alice.balance, balanceBefore);
Expand Down
6 changes: 3 additions & 3 deletions typescript/sdk/src/hook/HyperlaneHookDeployer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import {
IL1CrossDomainMessenger__factory,
OPStackHook,
OPStackIsm,
ProtocolFee,
StaticAggregationHook__factory,
StaticProtocolFee,
} from '@hyperlane-xyz/core';
import { Address, addressToBytes32 } from '@hyperlane-xyz/utils';

Expand Down Expand Up @@ -90,8 +90,8 @@ export class HyperlaneHookDeployer extends HyperlaneDeployer<
async deployProtocolFee(
chain: ChainName,
config: ProtocolFeeHookConfig,
): Promise<StaticProtocolFee> {
this.logger('Deploying StaticProtocolFeeHook for %s', chain);
): Promise<ProtocolFee> {
this.logger('Deploying ProtocolFeeHook for %s', chain);
return this.deployContract(chain, HookType.PROTOCOL_FEE, [
config.maxProtocolFee,
config.protocolFee,
Expand Down
4 changes: 2 additions & 2 deletions typescript/sdk/src/hook/contracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ import {
InterchainGasPaymaster__factory,
MerkleTreeHook__factory,
OPStackHook__factory,
ProtocolFee__factory,
StaticAggregationHook__factory,
StaticProtocolFee__factory,
} from '@hyperlane-xyz/core';

import { HookType } from './types';

export const hookFactories = {
[HookType.MERKLE_TREE]: new MerkleTreeHook__factory(),
[HookType.PROTOCOL_FEE]: new StaticProtocolFee__factory(),
[HookType.PROTOCOL_FEE]: new ProtocolFee__factory(),
[HookType.INTERCHAIN_GAS_PAYMASTER]: new InterchainGasPaymaster__factory(), // unused
[HookType.AGGREGATION]: new StaticAggregationHook__factory(), // unused
[HookType.OP_STACK]: new OPStackHook__factory(),
Expand Down

0 comments on commit 3501755

Please sign in to comment.