Skip to content

Commit 46fde59

Browse files
chore: update agent tag to agents-v2.2.0
- Update agent Docker image tag to agents-v2.2.0 - Updated in all documentation files
1 parent 396388d commit 46fde59

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

docs/guides/chains/deploy-hyperlane-with-local-agents.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ To learn more about all the parameters you can change, read the [agent configura
190190
Now that you understand more about configuring validator arguments, pull the latest docker image:
191191

192192
```bash
193-
docker pull --platform linux/amd64 ghcr.io/hyperlane-xyz/hyperlane-agent:agents-v2.1.0
193+
docker pull --platform linux/amd64 ghcr.io/hyperlane-xyz/hyperlane-agent:agents-v2.2.0
194194
```
195195

196196
Before running, ensure that all directories you need to mount are present. This may involve creating `hyperlane_db_validator_<your_chain_name>` if it does not exist yet.
@@ -208,7 +208,7 @@ To learn more about all the parameters you can change, read the [agent configura
208208
--mount type=bind,source=$CONFIG_FILES,target=/config/agent-config.json,readonly \
209209
--mount type=bind,source="$(pwd)"/hyperlane_db_validator_<your_chain_name>,target=/hyperlane_db \
210210
--mount type=bind,source="$(pwd)"/$VALIDATOR_SIGNATURES_DIR,target=/tmp/validator-signatures \
211-
ghcr.io/hyperlane-xyz/hyperlane-agent:agents-v2.1.0 \
211+
ghcr.io/hyperlane-xyz/hyperlane-agent:agents-v2.2.0 \
212212
./validator \
213213
--db /hyperlane_db \
214214
--originChainName <your_chain_name> \
@@ -358,7 +358,7 @@ To learn more about all the parameters you can change, read the [agent configura
358358
If you haven't already pulled the Docker image, do this now by running:
359359

360360
```bash
361-
docker pull --platform linux/amd64 ghcr.io/hyperlane-xyz/hyperlane-agent:agents-v2.1.0
361+
docker pull --platform linux/amd64 ghcr.io/hyperlane-xyz/hyperlane-agent:agents-v2.2.0
362362
```
363363

364364
Before running, ensure that all directories you need to mount are present. This may involve creating `hyperlane_db_relayer` if it does not exist yet.
@@ -376,7 +376,7 @@ To learn more about all the parameters you can change, read the [agent configura
376376
--mount type=bind,source=$CONFIG_FILES,target=/config/agent-config.json,readonly \
377377
--mount type=bind,source="$(pwd)"/hyperlane_db_relayer,target=/hyperlane_db \
378378
--mount type=bind,source="$(pwd)"/$VALIDATOR_SIGNATURES_DIR,target=/tmp/validator-signatures,readonly \
379-
ghcr.io/hyperlane-xyz/hyperlane-agent:agents-v2.1.0 \
379+
ghcr.io/hyperlane-xyz/hyperlane-agent:agents-v2.2.0 \
380380
./relayer \
381381
--db /hyperlane_db \
382382
--relayChains <chain_1_name>,<chain_2_name> \

docs/operate/guides/docker-quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ SERVICE_NAME=ethereum
9090

9191
```yaml
9292
x-common-attributes: &common-validator
93-
image: ghcr.io/hyperlane-xyz/hyperlane-agent:agents-v2.1.0
93+
image: ghcr.io/hyperlane-xyz/hyperlane-agent:agents-v2.2.0
9494
command: ./validator
9595
container_name: ${SERVICE_NAME}-validator
9696
environment:

docs/operate/relayer/run-relayer.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ The recommended installation method for a production environment is using a Dock
157157
First download the docker image:
158158

159159
```bash
160-
docker pull --platform linux/amd64 ghcr.io/hyperlane-xyz/hyperlane-agent:agents-v2.1.0
160+
docker pull --platform linux/amd64 ghcr.io/hyperlane-xyz/hyperlane-agent:agents-v2.2.0
161161
```
162162

163163
</Tab>
@@ -211,7 +211,7 @@ For a refresher, check out the [Agent Keys](/docs/operate/set-up-agent-keys) gui
211211
-e AWS_ACCESS_KEY_ID=ABCDEFGHIJKLMNOP \
212212
-e AWS_SECRET_ACCESS_KEY=xX-haha-nice-try-Xx \
213213
--mount ... \
214-
ghcr.io/hyperlane-xyz/hyperlane-agent:agents-v2.1.0 \
214+
ghcr.io/hyperlane-xyz/hyperlane-agent:agents-v2.2.0 \
215215
./relayer \
216216
--db /hyperlane_db \
217217
--relayChains <chain_1_name>,<chain_2_name> \
@@ -232,7 +232,7 @@ For a refresher, check out the [Agent Keys](/docs/operate/set-up-agent-keys) gui
232232
--mount type=bind,source=$CONFIG_FILES,target=/config/agent-config.json,readonly \
233233
--mount type=bind,source="$(pwd)"/hyperlane-validator-signatures-ethereum,target=/tmp/hyperlane-validator-signatures-ethereum,readonly \
234234
--mount type=bind,source="$(pwd)"/hyperlane_db,target=/hyperlane_db \
235-
ghcr.io/hyperlane-xyz/hyperlane-agent:agents-v2.1.0 \
235+
ghcr.io/hyperlane-xyz/hyperlane-agent:agents-v2.2.0 \
236236
./relayer \
237237
--db /hyperlane_db \
238238
--relayChains ethereum,polygon,avalanche \

docs/operate/validators/run-validators.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ The recommended installation method for a production environment is using a Dock
223223
First download the docker image:
224224

225225
```bash
226-
docker pull --platform linux/amd64 ghcr.io/hyperlane-xyz/hyperlane-agent:agents-v2.1.0
226+
docker pull --platform linux/amd64 ghcr.io/hyperlane-xyz/hyperlane-agent:agents-v2.2.0
227227
```
228228

229229
</Tab>
@@ -278,7 +278,7 @@ docker run \
278278
-e AWS_ACCESS_KEY_ID=ABCDEFGHIJKLMNOP \
279279
-e AWS_SECRET_ACCESS_KEY=xX-haha-nice-try-Xx \
280280
--mount ... \
281-
ghcr.io/hyperlane-xyz/hyperlane-agent:agents-v2.1.0 \
281+
ghcr.io/hyperlane-xyz/hyperlane-agent:agents-v2.2.0 \
282282
./validator \
283283
--db /hyperlane_db \
284284
--originChainName <your_chain_name> \

0 commit comments

Comments
 (0)