Skip to content

Commit 8340fb5

Browse files
committed
Merge with master
2 parents 17d4aac + 37f3338 commit 8340fb5

File tree

3 files changed

+14
-9
lines changed

3 files changed

+14
-9
lines changed

docs/avs/running-avs-operator.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ This registration process is essential for establishing an identity and enabling
2323
To register, the following command should be executed in the terminal:
2424

2525
```bash
26-
docker run -it public.ecr.aws/y7v2w8b2/avs-othentic-client:90fc014d operator register
26+
docker run --platform linux/amd64 -it public.ecr.aws/y7v2w8b2/avs-othentic-client:f1e34480 operator register
2727
```
2828

2929
After executing the command, the following information will be required:
3030

31-
- **Operator's Private Key**: the private key must be provided to authenticate and secure the operator account.
32-
- **AVS Governance Contract Address**: the following contract address should be entered: [0xfADc5aCf45D7E9ebAB82Dea71E26fe3A9A833337](https://holesky.etherscan.io/address/0xfadc5acf45d7e9ebab82dea71e26fe3a9a833337).
31+
- **Operator's Private Key**: the private key must be provided to authenticate and secure the operator account. The private key should be provided twice: as a private key and as a signing key.
32+
- **AVS Governance Contract Address**: the following contract address should be entered: [0xBA7A7CaEE3b1ed84a98dBc20Ea20fe21FE7D557e](https://holesky.etherscan.io/address/0xBA7A7CaEE3b1ed84a98dBc20Ea20fe21FE7D557e).
3333

3434
## Step 2: Preparing the Configuration File
3535

@@ -44,10 +44,12 @@ DATA_FEED_ID=ETH
4444
L1_RPC= # holesky RPC endpoint
4545
L1_CHAIN=17000
4646

47-
L2_RPC=# amoy RPC endpoint
47+
L2_RPC= # amoy RPC endpoint
4848
L2_CHAIN=80002
4949

50-
TASK_PERFORMER=0x8074Ab463bcDaEE1D87Ec98959084D659d48d4d5
50+
AVS_GOVERNANCE_ADDRESS=0xBA7A7CaEE3b1ed84a98dBc20Ea20fe21FE7D557e
51+
ATTESTATION_CENTER_ADDRESS=0xA8779c817C748b15122EF572c195019601715BBe
52+
TASK_PERFORMER=0x906CD7211CeA5Dc88977c50B015675aB64327728
5153
PRIVATE_KEY= # operator's private key
5254
```
5355

@@ -74,7 +76,8 @@ These images can be launched using the following Docker Compose configuration:
7476
```yaml
7577
services:
7678
operator-attester:
77-
image: public.ecr.aws/y7v2w8b2/avs-othentic-client:90fc014d
79+
image: public.ecr.aws/y7v2w8b2/avs-othentic-client:f1e34480
80+
platform: linux/amd64
7881
command:
7982
[
8083
"node",
@@ -86,7 +89,8 @@ services:
8689
env_file:
8790
- .env
8891
operator-validation-api:
89-
image: public.ecr.aws/y7v2w8b2/avs-validation-api:90fc014d
92+
image: public.ecr.aws/y7v2w8b2/avs-validation-api:f1e34480
93+
platform: linux/amd64
9094
env_file:
9195
- .env
9296
```

docs/data-providers/deploy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Here's a simple example of a `docker-compose.yml` file that you can use to run t
2929
```yaml
3030
services:
3131
redstone-oracle-node:
32-
image: public.ecr.aws/y7v2w8b2/redstone-oracle-node:957ca2a1
32+
image: public.ecr.aws/y7v2w8b2/redstone-oracle-node@sha256:07eb1cc4aa3a4f0275c2ef5c2f9a95af06150e35211e20f66f9b24ab1c05cef7
3333
restart: always
3434
depends_on:
3535
- redstone-kms
@@ -47,7 +47,7 @@ services:
4747

4848
redstone-kms:
4949
restart: always
50-
image: public.ecr.aws/y7v2w8b2/kms@sha256:d5df0ad389c329e541b26b09b3ad18b453342f1fee3837c1bd05f23c4a4264da
50+
image: public.ecr.aws/y7v2w8b2/kms@sha256:d069bc9afcd1b4e6884e2d4e530d90c94db0aaf1a2265d7facb4f4e2d2fefb3d
5151
networks:
5252
- private_network
5353
expose:

docs/get-started/supported-chains.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ You can check the integration with the showroom app [for EVM Chains](https://sho
6363
- Etherlink
6464
- Reya
6565
- Sei
66+
- Ink Sepolia
6667
- And many more...
6768

6869
### We also support a few non-EVM-compatible chains

0 commit comments

Comments
 (0)