fix: align deployment manifest schema

This commit is contained in:
golem
2026-08-21 02:55:41 -06:00
parent be8f01ea4e
commit c6bf8a683f
8 changed files with 389 additions and 139 deletions
+2 -2
View File
@@ -15,8 +15,8 @@ contract SeedV1Demo is DemoScript {
(uint256 aliceKey, address alice) = _deriveLocalActor(block.chainid, 1);
(uint256 bobKey, address bob) = _deriveLocalActor(block.chainid, 2);
_assertAddress("owner actor", manifest.owner, owner);
_assertAddress("Alice actor", manifest.actors[1], alice);
_assertAddress("Bob actor", manifest.actors[2], bob);
_assertAddress("Alice actor", manifest.actors[1].address_, alice);
_assertAddress("Bob actor", manifest.actors[2].address_, bob);
MockUSDC token = MockUSDC(manifest.token);
BankV1 bank = BankV1(manifest.proxy);