Skip to content

Commit

Permalink
Merge branch 'release-0.4' into 0.4-master
Browse files Browse the repository at this point in the history
  • Loading branch information
izqui committed Jan 9, 2023
2 parents 64b0aba + 3eb533b commit a2c7dbb
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
5 changes: 5 additions & 0 deletions deployments/testinprod.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@
"firmFactory": "0x74dBa876C971b05B36806F67bd749f1abe8B4f7b",
"modulesFactory": "0xCb3Dee447443B7F34aCd640AC8e304188512c2EC",
"blockNumber": 34868283
},
"v0.4.0": {
"firmFactory": "0x860ff9c3E9cd3A5666Cb9a5E0Ce6027D6627CD1b",
"modulesFactory": "0x2dd8DA68D62a01Db1B29e87ed6A42E099a7C12E4",
"blockNumber": 37024174
}
}
}
7 changes: 7 additions & 0 deletions scripts/TestinprodDeploy.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,15 @@ import {GnosisSafeProxyFactory} from "gnosis-safe/proxies/GnosisSafeProxyFactory

import {TestinprodFactory, UpgradeableModuleProxyFactory} from "src/factory/TestinprodFactory.sol";
import {FirmRelayer} from "src/metatx/FirmRelayer.sol";

import {Roles} from "src/roles/Roles.sol";

import {Budget} from "src/budget/Budget.sol";
import {LlamaPayStreams, LlamaPayFactory} from "src/budget/modules/streams/LlamaPayStreams.sol";

import {Captable} from "src/captable/Captable.sol";
import {VestingController} from "src/captable/controllers/VestingController.sol";

abstract contract DeployBase is Test {
function baseContracts() internal virtual returns (address safeProxyFactory, address safeImpl, address llamaPayFactory);

Expand All @@ -24,6 +29,8 @@ abstract contract DeployBase is Test {
moduleFactory.register(new Roles());
moduleFactory.register(new Budget());
moduleFactory.register(new LlamaPayStreams(LlamaPayFactory(llamaPayFactory)));
moduleFactory.register(new Captable());
moduleFactory.register(new VestingController());

factory = new TestinprodFactory(
GnosisSafeProxyFactory(safeProxyFactory),
Expand Down

0 comments on commit a2c7dbb

Please sign in to comment.