Skip to content

Commit

Permalink
deployed
Browse files Browse the repository at this point in the history
  • Loading branch information
mejango committed Feb 23, 2024
1 parent 1260fec commit c3cb86b
Show file tree
Hide file tree
Showing 6 changed files with 46 additions and 44 deletions.
34 changes: 17 additions & 17 deletions broadcast/Deploy.s.sol/11155111/run-latest.json

Large diffs are not rendered by default.

30 changes: 15 additions & 15 deletions broadcast/Deploy.s.sol/11155420/run-latest.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ optimizer_runs = 100000000
block_number = 14126430
block_timestamp = 1643802347
runs = 4096
fs_permissions = [{ access = "read", path = "lib/juice-contracts-v4/broadcast/Deploy.s.sol" }] # Get the deployment addresses to base the hook on.
fs_permissions = [{ access = "read", path = "node_modules/@bananapus/core/broadcast/Deploy.s.sol" }] # Get the deployment addresses to base the hook on.
libs = ["node_modules", "lib"]

[profile.fork] # run via FOUNDRY_PROFILE=fork foundry test
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bananapus/buyback-hook",
"version": "0.0.2",
"version": "0.0.3",
"license": "MIT",
"repository": {
"type": "git",
Expand All @@ -16,7 +16,7 @@
"deploy:optimism-sepolia": "source .env && forge script Deploy --chain-id 11155420 --rpc-url $RPC_OPTIMISM_SEPOLIA --broadcast --verify --etherscan-api-key $OPTIMISTIC_ETHERSCAN_API_KEY --interactives 1 --sender $SENDER_OPTIMISM_SEPOLIA -vvv"
},
"dependencies": {
"@bananapus/core": "^0.0.5",
"@bananapus/core": "^0.0.6",
"@bananapus/permission-ids": "^0.0.2",
"@exhausted-pigeon/uniswap-v3-forge-quoter": "^1.0.1",
"@openzeppelin/contracts": "^5.0.1",
Expand Down
6 changes: 4 additions & 2 deletions script/Deploy.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,13 @@ contract Deploy is Script {
}

address directoryAddress = _getDeploymentAddress(
string.concat("@bananapus/core/broadcast/Deploy.s.sol/", chain, "/run-latest.json"), "JBDirectory"
string.concat("node_modules/@bananapus/core/broadcast/Deploy.s.sol/", chain, "/run-latest.json"),
"JBDirectory"
);

address controllerAddress = _getDeploymentAddress(
string.concat("@bananapus/core/broadcast/Deploy.s.sol/", chain, "/run-latest.json"), "JBController"
string.concat("node_modules/@bananapus/core/broadcast/Deploy.s.sol/", chain, "/run-latest.json"),
"JBController"
);

vm.broadcast();
Expand Down

0 comments on commit c3cb86b

Please sign in to comment.