Skip to content

Commit fac57bc

Browse files
committed
Update Inbox deployment script
1 parent be73e87 commit fac57bc

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

script/deployment-mistakes/DeployEVMxDeploymentMistakesApp.s.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {ETH_ADDRESS, FAST} from "socket-protocol/contracts/protocol/utils/common
99
import {DeploymentMistakesAppGateway} from "../../src/deployment-mistakes/DeploymentMistakesAppGateway.sol";
1010
import {DeploymentMistakesDeployer} from "../../src/deployment-mistakes/DeploymentMistakesDeployer.sol";
1111

12-
contract DeployMistakes is Script {
12+
contract DeployEVMxContracts is Script {
1313
function run() external {
1414
address addressResolver = vm.envAddress("ADDRESS_RESOLVER");
1515
address auctionManager = vm.envAddress("AUCTION_MANAGER");

script/inbox/DeployEVMxInbox.s.sol

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ import {console} from "forge-std/console.sol";
66
import {Fees} from "socket-protocol/contracts/protocol/utils/common/Structs.sol";
77
import {ETH_ADDRESS, FAST} from "socket-protocol/contracts/protocol/utils/common/Constants.sol";
88

9-
import {InboxGateway} from "../src/inbox/InboxGateway.sol";
10-
import {InboxDeployer} from "../src/inbox/InboxDeployer.sol";
9+
import {InboxGateway} from "../../src/inbox/InboxGateway.sol";
10+
import {InboxDeployer} from "../../src/inbox/InboxDeployer.sol";
1111

12-
contract CounterDeploy is Script {
12+
contract DeployEVMxContracts is Script {
1313
function run() external {
1414
address addressResolver = vm.envAddress("ADDRESS_RESOLVER");
1515
address auctionManager = vm.envAddress("AUCTION_MANAGER");
@@ -19,14 +19,14 @@ contract CounterDeploy is Script {
1919
uint256 deployerPrivateKey = vm.envUint("PRIVATE_KEY");
2020
vm.startBroadcast(deployerPrivateKey);
2121

22-
// Setting fee payment on Arbitrum Sepolia
2322
Fees memory fees = Fees({feePoolChain: 421614, feePoolToken: ETH_ADDRESS, amount: 0.001 ether});
23+
2424
InboxDeployer deployer = new InboxDeployer(addressResolver, auctionManager, FAST, fees);
2525

2626
InboxGateway gateway = new InboxGateway(addressResolver, address(deployer), auctionManager, fees);
2727

28-
console.log("Inbox deployed:");
29-
console.log("InboxDeployer:", address(deployer));
30-
console.log("InboxGateway:", address(gateway));
28+
console.log("Contracts deployed:");
29+
console.log("Deployer:", address(deployer));
30+
console.log("AppGateway:", address(gateway));
3131
}
3232
}

0 commit comments

Comments
 (0)