Skip to content

Commit a123dd1

Browse files
committed
Reduce minimum fees
1 parent 7776660 commit a123dd1

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

script/deployment-mistakes/DeployEVMxDeploymentMistakesApp.s.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ contract DeployEVMxContracts is Script {
1717
uint256 deployerPrivateKey = vm.envUint("PRIVATE_KEY");
1818
vm.startBroadcast(deployerPrivateKey);
1919

20-
Fees memory fees = Fees({feePoolChain: 421614, feePoolToken: ETH_ADDRESS, amount: 0.001 ether});
20+
Fees memory fees = Fees({feePoolChain: 421614, feePoolToken: ETH_ADDRESS, amount: 0.0005 ether});
2121

2222
DeploymentMistakesAppGateway appGateway = new DeploymentMistakesAppGateway(addressResolver, fees);
2323

script/inbox/DeployEVMxInbox.s.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ contract DeployEVMxContracts is Script {
1717
uint256 deployerPrivateKey = vm.envUint("PRIVATE_KEY");
1818
vm.startBroadcast(deployerPrivateKey);
1919

20-
Fees memory fees = Fees({feePoolChain: 421614, feePoolToken: ETH_ADDRESS, amount: 0.001 ether});
20+
Fees memory fees = Fees({feePoolChain: 421614, feePoolToken: ETH_ADDRESS, amount: 0.0005 ether});
2121

2222
InboxAppGateway appGateway = new InboxAppGateway(addressResolver, fees);
2323

script/read/DeployEVMxReadTests.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ contract DeployEVMxContracts is Script {
1717
uint256 deployerPrivateKey = vm.envUint("PRIVATE_KEY");
1818
vm.startBroadcast(deployerPrivateKey);
1919

20-
Fees memory fees = Fees({feePoolChain: 421614, feePoolToken: ETH_ADDRESS, amount: 0.001 ether});
20+
Fees memory fees = Fees({feePoolChain: 421614, feePoolToken: ETH_ADDRESS, amount: 0.0005 ether});
2121

2222
ReadAppGateway appGateway = new ReadAppGateway(addressResolver, fees);
2323

script/robust/DeployEVMxRobustnessTests.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ contract DeployEVMxContracts is Script {
1717
uint256 deployerPrivateKey = vm.envUint("PRIVATE_KEY");
1818
vm.startBroadcast(deployerPrivateKey);
1919

20-
Fees memory fees = Fees({feePoolChain: 421614, feePoolToken: ETH_ADDRESS, amount: 0.001 ether});
20+
Fees memory fees = Fees({feePoolChain: 421614, feePoolToken: ETH_ADDRESS, amount: 0.0005 ether});
2121

2222
RobustnessAppGateway appGateway = new RobustnessAppGateway(addressResolver, fees);
2323

0 commit comments

Comments
 (0)