Skip to content

Commit c2101d4

Browse files
committed
feat: deploy batcher payment service
1 parent d4a006c commit c2101d4

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

contracts/script/deploy/config/sepolia/batcher-payment-service.sepolia.config.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"address": {
3-
"batcherWallet": "<batcher_wallet_address>",
4-
"alignedLayerServiceManager": "<aligned_layer_service_manager_address>"
3+
"batcherWallet": "0xBd924Fd31b960C2a1fd261F952B304b13A6922F1",
4+
"alignedLayerServiceManager": "0xFf731AB7b3653dc66878DC77E851D174f472d137"
55
},
66
"permissions": {
7-
"owner": "<owner_address>"
7+
"owner": "0x771C1aB81C81A774B66C4386Eb50D6DFC8538106"
88
},
99
"eip712": {
1010
"noncedVerificationDataTypeHash": "0x41817b5c5b0c3dcda70ccb43ba175fdcd7e586f9e0484422a2c6bba678fdf4a3"

contracts/script/output/sepolia/alignedlayer_deployment_output.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
"registryCoordinatorImplementation": "0x7f7F66B3FbeaFeF6e7F4219F2fa807808d854125",
1414
"serviceManagerRouter": "0xb30aD4Fe5Fc5424670828Ee0D1d740A588644210",
1515
"stakeRegistry": "0xe87cB8f9C74264BD446835F899e15c3AE1209C34",
16-
"stakeRegistryImplementation": "0x83286078696eE5F6833701c94Ba7E4B2A6bCddb6"
16+
"stakeRegistryImplementation": "0x83286078696eE5F6833701c94Ba7E4B2A6bCddb6",
17+
"batcherPaymentService": "0x403dE630751e148bD71BFFcE762E5667C0825399",
18+
"batcherPaymentServiceImplementation": "0xCDafa6c553AFE700964Adf04B577517b2BAe8318"
1719
},
1820
"chainInfo": {
1921
"chainId": 11155111,
@@ -27,4 +29,4 @@
2729
"alignedLayerPauser": "0x771C1aB81C81A774B66C4386Eb50D6DFC8538106",
2830
"alignedLayerUpgrader": "0x771C1aB81C81A774B66C4386Eb50D6DFC8538106"
2931
}
30-
}
32+
}

contracts/scripts/deploy_batcher_payment_service.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ forge script script/deploy/BatcherPaymentServiceDeployer.s.sol \
2020
--legacy \
2121
--verify \
2222
--etherscan-api-key $ETHERSCAN_API_KEY \
23-
--sig "run(string memory batcherConfigPath, string memory outputPath)"
23+
--sig "run(string memory batcherConfigPath, string memory outputPath)" \
24+
--slow
2425

2526
# Extract the batcher payment service values from the output
2627
batcher_payment_service_proxy=$(jq -r '.addresses.batcherPaymentService' $BATCHER_PAYMENT_SERVICE_OUTPUT_PATH)

0 commit comments

Comments
 (0)