Skip to content

Commit

Permalink
Use Pre-Deployed Unified CREATE3 Deployer (#323)
Browse files Browse the repository at this point in the history
  • Loading branch information
kingster-will authored Nov 28, 2024
1 parent 4b756d8 commit 4bd1147
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions contracts/lib/AccessPermission.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ pragma solidity 0.8.26;
/// @notice Library for IPAccount access control permissions.
/// These permissions are used by the AccessController.
library AccessPermission {
/// @notice ABSTAIN means not having enough information to make a decision at the current level, the deferred decision to up
/// level permission.
/// @notice ABSTAIN means not having enough information to make a decision at the current level,
/// the deferred decision to up level permission.
uint8 public constant ABSTAIN = 0;

/// @notice ALLOW means the permission is granted to transaction signer to call the function.
Expand Down
2 changes: 1 addition & 1 deletion script/foundry/deployment/Main.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { DeployHelper } from "../utils/DeployHelper.sol";

contract Main is DeployHelper {
address internal ERC6551_REGISTRY = 0x000000006551c19487814612e58FE06813775758;
address internal CREATE3_DEPLOYER = 0x384a891dFDE8180b054f04D66379f16B7a678Ad6;
address internal CREATE3_DEPLOYER = 0x9fBB3DF7C40Da2e5A0dE984fFE2CCB7C47cd0ABf;
uint256 internal CREATE3_DEFAULT_SEED = 6;
address internal IP_GRAPH_ACL = 0x680E66e4c7Df9133a7AFC1ed091089B32b89C4ae;
// For arbitration policy
Expand Down

0 comments on commit 4bd1147

Please sign in to comment.