From 615c2302c06f37b7bf221ff003694ba20cf3c6fa Mon Sep 17 00:00:00 2001 From: RogerLamTd Date: Fri, 13 Sep 2024 16:04:07 -0700 Subject: [PATCH 1/3] docs(docs): update docs for new instructions --- docs/README_Docker_and_RA.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/docs/README_Docker_and_RA.md b/docs/README_Docker_and_RA.md index f32805623..f22e6a0bd 100644 --- a/docs/README_Docker_and_RA.md +++ b/docs/README_Docker_and_RA.md @@ -294,7 +294,7 @@ You can continue on with the following steps as usual after this. Do not do `doc docker image ls ``` -You should see at least two images, `gcr.io/evmchain/raiko` and `gcr.io/evmchain/pccs`. +You should see at least two images, `us-docker.pkg.dev/evmchain/raiko` and `us-docker.pkg.dev/evmchain/pccs`. 7. If both are present, bootstrap Raiko with the following command: @@ -324,10 +324,11 @@ You've now prepared your machine for running Raiko through Docker. Now, you need ## On-Chain RA -1. Clone [taiko-mono](https://github.com/taikoxyz/taiko-mono/tree/main) and navigate to the scripts +1. Clone [taiko-mono](https://github.com/taikoxyz/taiko-mono/tree/main), checkout the appropriate tag (protocol-v1.9.0 for hekla) and navigate to the protocol directory. ``` git clone https://github.com/taikoxyz/taiko-mono.git +git checkout tags/{release-tag} cd taiko-mono/packages/protocol ``` @@ -353,7 +354,7 @@ pnpm compile export PRIVATE_KEY={PROVER_PRIVATE_KEY} ``` -4. Ensure the values in the `script/config_dcap_sgx_verifier.sh` script match whichever network you are registering for. +4. Ensure the values in the `script/layer1/config_dcap_sgx_verifier.sh` script match whichever network you are registering for. Hekla Addresses: `SGX_VERIFIER_ADDRESS`=0x532EFBf6D62720D0B2a2Bb9d11066E8588cAE6D9 @@ -379,7 +380,9 @@ You can find it with `cat ~/.config/raiko/config/bootstrap.json` as shown above. Copy your quote and use in the following step. -6. In the `script/config_dcap_sgx_verifier.sh` script, replace `--fork-url https://any-holesky-rpc-url/` with the RPC URL of the respective network. +> **_NOTE:_** If you are on `protocol-v1.9.0`, the script is located at `script/layer1/config_dcap_sgx_verifier.sh`. Use this for the following steps. + +6. In the `script/config_dcap_sgx_verifier.sh` script, replace `--fork-url https://any-holesky-rpc-url/` with the RPC URL of the respective network. Alternatively, export it like so: `export FORK_URL="https://any-holesky-rpc-url/"`. 7. Call the script with `PRIVATE_KEY=0x{YOUR_PRIVATE_KEY} ./script/config_dcap_sgx_verifier.sh --quote {YOUR_QUOTE_HERE}`. From 21e5703651d876c432971429302d71fecef183ad Mon Sep 17 00:00:00 2001 From: RogerLamTd Date: Fri, 13 Sep 2024 16:06:29 -0700 Subject: [PATCH 2/3] fix --- docs/README_Docker_and_RA.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/README_Docker_and_RA.md b/docs/README_Docker_and_RA.md index f22e6a0bd..1b2db94d5 100644 --- a/docs/README_Docker_and_RA.md +++ b/docs/README_Docker_and_RA.md @@ -354,7 +354,7 @@ pnpm compile export PRIVATE_KEY={PROVER_PRIVATE_KEY} ``` -4. Ensure the values in the `script/layer1/config_dcap_sgx_verifier.sh` script match whichever network you are registering for. +4. Ensure the values in the `script/config_dcap_sgx_verifier.sh` script match whichever network you are registering for. (`script/layer1/config_dcap_sgx_verifier.sh` for `protocol-v1.9.0` release.) Hekla Addresses: `SGX_VERIFIER_ADDRESS`=0x532EFBf6D62720D0B2a2Bb9d11066E8588cAE6D9 From 7d0fc92e2a2072f2946492cd3edbbeaced17c083 Mon Sep 17 00:00:00 2001 From: Roger <50648015+RogerLamTd@users.noreply.github.com> Date: Fri, 13 Sep 2024 18:43:00 -0700 Subject: [PATCH 3/3] feat(repo): ignore CHANGELOG.md to unblock workflow (#372) --- _typos.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_typos.toml b/_typos.toml index a33bbaa8d..1acbc5e66 100644 --- a/_typos.toml +++ b/_typos.toml @@ -14,4 +14,4 @@ extend-ignore-identifiers-re = [ ] [files] -extend-exclude = [] +extend-exclude = ["CHANGELOG.md"]