Skip to content

Commit

Permalink
add updated deploys
Browse files Browse the repository at this point in the history
  • Loading branch information
snreynolds committed Sep 11, 2024
1 parent 35e0011 commit b8fa900
Show file tree
Hide file tree
Showing 7 changed files with 149 additions and 84 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ cache/
foundry-out/
.vscode/
broadcast/*/*/dry-run/*.json
broadcast/*/*/run-[0-9]*.json
broadcast/*/*/run-[0-9]*.json
.env
50 changes: 24 additions & 26 deletions broadcast/01_PoolManager.s.sol/11155111/run-latest.json

Large diffs are not rendered by default.

43 changes: 24 additions & 19 deletions broadcast/02_PoolModifyLiquidityTest.s.sol/11155111/run-latest.json

Large diffs are not rendered by default.

43 changes: 24 additions & 19 deletions broadcast/03_PoolSwapTest.s.sol/11155111/run-latest.json

Large diffs are not rendered by default.

56 changes: 56 additions & 0 deletions broadcast/DeployPosm.s.sol/11155111/run-latest.json

Large diffs are not rendered by default.

34 changes: 17 additions & 17 deletions broadcast/DeployStateView.s.sol/11155111/run-latest.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions script/DeployPosm.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {StateView} from "../src/lens/StateView.sol";
import {PositionManager} from "../src/PositionManager.sol";
import {IAllowanceTransfer} from "permit2/src/interfaces/IAllowanceTransfer.sol";

contract DeployPosmTest is Script {
contract DeployPosm is Script {
function setUp() public {}

function run(address poolManager, address permit2, uint256 unsubscribeGasLimit)
Expand All @@ -18,7 +18,7 @@ contract DeployPosmTest is Script {
{
vm.startBroadcast();

posm = new PositionManager{salt: hex"03"}(
posm = new PositionManager{salt: hex"01"}(
IPoolManager(poolManager), IAllowanceTransfer(permit2), unsubscribeGasLimit
);
console2.log("PositionManager", address(posm));
Expand Down

0 comments on commit b8fa900

Please sign in to comment.