From 39136b6e55e44ea050605bb7be88a8ac1de3f3db Mon Sep 17 00:00:00 2001 From: PatStiles Date: Tue, 26 Nov 2024 12:11:36 -0300 Subject: [PATCH] add rpc-url to guide --- docs/0_internal/setting_aggregator_address.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/0_internal/setting_aggregator_address.md b/docs/0_internal/setting_aggregator_address.md index 058e39a98..546ade5d5 100644 --- a/docs/0_internal/setting_aggregator_address.md +++ b/docs/0_internal/setting_aggregator_address.md @@ -38,7 +38,7 @@ export ALIGNED_SERVICE_MANAGER_ADDRESS= ## Check the current value of `alignedAggregator` within AlignedServiceManager.sol ``` -cast call $ALIGNED_SERVICE_MANAGER_ADDRESS "alignedAggregator()(address)" +cast call --rpc-url $ALIGNED_SERVICE_MANAGER_ADDRESS "alignedAggregator()(address)" ``` You should see that the printed address matches the returned address matches the address from `./contracts/script/output//aligned_deployment_output.json` @@ -53,7 +53,7 @@ make set_aggregator_address ## Verify the Aligend Aggreagtor Address has changed ``` -cast call $ALIGNED_SERVICE_MANAGER_ADDRESS "alignedAggregator()(address)" +cast call --rpc-url $ALIGNED_SERVICE_MANAGER_ADDRESS "alignedAggregator()(address)" ``` You should observe that the printed address matches the address in `AGGREGATOR_ADDRESS`. \ No newline at end of file