Skip to content

Commit

Permalink
fix typo in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Lohann committed Sep 28, 2024
1 parent 8bde90d commit c1f0699
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ bytes32 create2hash = keccak256(abi.encodePacked(
create2salt,
hex"0281a97663cf81306691f0800b13a91c4d335e1d772539f127389adae654ffc6"
));
address proxyAddress = address(uint160(uint256(create2hash)));
address create3hash = keccak256(abi.encodePacked(hex"d694", create2addr, uint8(0x01)));
address create3proxy = address(uint160(uint256(create2hash)));
address create3hash = keccak256(abi.encodePacked(hex"d694", create3proxy, uint8(0x01)));
address contractAddress = address(uint160(uint256(create3hash)));
```

Expand Down

0 comments on commit c1f0699

Please sign in to comment.