Skip to content

Commit f005a93

Browse files
committed
rm headers
1 parent a67e399 commit f005a93

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/0_internal/7_a_setting_aggregator_address.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This doc contains a guide on how to call `setAggregator(address)` to set the `al
44
### NOTE:
55
- This guide assumes the Aligned layer contracts have been sucessfully deployed and the deployment outputs are within `./contracts/script/output/<DEPLOYMENT_FOLDER>`
66

7-
### 1. Locate the deployed Aligned Aggregator Address
7+
1. Locate the deployed Aligned Aggregator Address
88

99
The address of Aligned Aggregator can be found in `./contracts/script/output/<DEPLOYMENT_FOLDER>/aligned_deployment_output.json` within:
1010
```
@@ -15,7 +15,7 @@ The address of Aligned Aggregator can be found in `./contracts/script/output/<DE
1515
}
1616
```
1717

18-
### 2. Locate the Aligned Service Manager Address
18+
2. Locate the Aligned Service Manager Address
1919

2020
The address of Aligned Service Manager can be found in `./contracts/script/output/<DEPLOYMENT_FOLDER>/aligned_deployment_output.json` within:
2121
```
@@ -26,7 +26,7 @@ The address of Aligned Service Manager can be found in `./contracts/script/outpu
2626
}
2727
```
2828

29-
### 3. Set Environment Variables
29+
3. Set Environment Variables
3030

3131
To run the make targets specified in this guide, you must first set the following env vars within `./contracts/scripts/.env.<NETWORK>`:
3232
```
@@ -35,23 +35,23 @@ PRIVATE_KEY=<aligned_service_manager_owner_private_key>
3535
ALIGNED_SERVICE_MANAGER_ADDRESS=<aligned_service_manager_address>
3636
```
3737

38-
### 4. Check the current value of `alignedAggregator` within AlignedServiceManager.sol
38+
4. Check the current value of `alignedAggregator` within AlignedServiceManager.sol
3939

4040
```
4141
cast call --rpc-url <RPC_URL> $ALIGNED_SERVICE_MANAGER_ADDRESS "alignedAggregator()(address)"
4242
```
4343

4444
You should see that the returned address matches the address from `./contracts/script/output/<DEPLOYMENT_FOLDER>/aligned_deployment_output.json`
4545

46-
### 5. Change the value of `alignedAggregator` within AlignedServiceManager.sol
46+
5. Change the value of `alignedAggregator` within AlignedServiceManager.sol
4747

4848
Set the environment variable `AGGREGATOR_ADDRESS` to the new address of the aggregator.
4949
```
5050
export AGGREGATOR_ADDRESS=<aggregator_address>
5151
make set_aggregator_address
5252
```
5353

54-
### 6. Verify the Aligned Aggreagtor Address has changed
54+
6. Verify the Aligned Aggreagtor Address has changed
5555
```
5656
cast call --rpc-url <RPC_URL> $ALIGNED_SERVICE_MANAGER_ADDRESS "alignedAggregator()(address)"
5757
```

0 commit comments

Comments
 (0)