@@ -6,10 +6,10 @@ import {console} from "forge-std/console.sol";
66import {Fees} from "socket-protocol/contracts/protocol/utils/common/Structs.sol " ;
77import {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