diff --git a/contracts/script/SetUpEigenDA.s.sol b/contracts/script/SetUpEigenDA.s.sol index 82d63ea130..1476b5059d 100644 --- a/contracts/script/SetUpEigenDA.s.sol +++ b/contracts/script/SetUpEigenDA.s.sol @@ -176,9 +176,8 @@ contract SetupEigenDA is EigenDADeployer, EigenLayerUtils { } - // Register Reservations for client 0 and 1 as the eigenDACommunityMultisig - clientPrivateKeys[0] = 0x0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcded; + clientPrivateKey = 0x0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcded; IPaymentVault.Reservation memory reservation = IPaymentVault.Reservation({ symbolsPerSecond: 452198, startTimestamp: uint64(block.timestamp), @@ -186,25 +185,20 @@ contract SetupEigenDA is EigenDADeployer, EigenLayerUtils { quorumNumbers: hex"0001", quorumSplits: hex"3232" }); - vm.broadcast(clientPrivateKeys[0]); - address reservedClient = address(uint160(uint256(keccak256(abi.encodePacked(clientPrivateKeys[0]))))); + vm.broadcast(clientPrivateKey); + address reservedClient = address(uint160(uint256(keccak256(abi.encodePacked(clientPrivateKey))))); // vm.prank(eigenDACommunityMultisig); paymentVault.setReservation(reservedClient, reservation); - vm.broadcast(clientPrivateKeys[1]); - address reservedClient1 = address(uint160(uint256(keccak256(abi.encodePacked(clientPrivateKeys[1]))))); - // vm.prank(eigenDACommunityMultisig); - paymentVault.setReservation(reservedClient1, reservation); + // vm.broadcast(clientPrivateKey); + // address reservedClient1 = address(uint160(uint256(keccak256(abi.encodePacked(clientPrivateKey))))); + // paymentVault.setReservation(reservedClient1, reservation); // Deposit OnDemand for client 0 and 2 - vm.broadcast(operatorPrivateKeys[0]); - address ondemandClient = address(uint160(uint256(keccak256(abi.encodePacked(operatorPrivateKeys[0]))))); + vm.broadcast(operatorPrivateKey); + address ondemandClient = address(uint160(uint256(keccak256(abi.encodePacked(operatorPrivateKey))))); vm.prank(ondemandClient); paymentVault.depositOnDemand{value: 0.1 ether}(ondemandClient); - // vm.broadcast(operatorPrivateKeys[2]); - // address ondemandClient2 = address(uint160(uint256(keccak256(abi.encodePacked(operatorPrivateKeys[2]))))); - // vm.prank(ondemandClient2); - // PaymentVault.depositOnDemand{value: 1 ether}(ondemandClient2); // Deposit stakers into EigenLayer and delegate to operators for (uint256 i = 0; i < stakerPrivateKeys.length; i++) {