From f90dc83619166c392144f8cbd8fe33cebae2f308 Mon Sep 17 00:00:00 2001 From: whb Date: Thu, 26 Oct 2023 15:25:52 +0800 Subject: [PATCH] Clearing up and undeploying everything --- lib/ethereum/README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/lib/ethereum/README.md b/lib/ethereum/README.md index 098d92b8..5a5f2765 100644 --- a/lib/ethereum/README.md +++ b/lib/ethereum/README.md @@ -126,7 +126,7 @@ Note: the snapshot backup process will automatically run ever day at midnight ti 2. Give the new RPC nodes about 30 minutes (up to 2 hours for Erigon) to initialize and then run the following query against the load balancer behind the RPC node created ```bash - export ETH_RPC_ABL_URL=$(cat rpc-node-deploy.json | jq -r '..|.ALBURL? | select(. != null)') + export ETH_RPC_ABL_URL=$(cat rpc-node-deploy.json | jq -r '..|.alburl? | select(. != null)') echo $ETH_RPC_ABL_URL # We query token balance of Beacon deposit contract: https://etherscan.io/address/0x00000000219ab540356cbb839cbe05303d7705fa @@ -165,13 +165,14 @@ The result should be like this (the actual balance might change): # Make sure you are in aws-blockchain-node-runners/lib/ethereum # Undeploy RPC Nodes - cdk destroy rpc-nodes-stack + cdk destroy eth-rpc-nodes # Undeploy Sync Node - cdk destroy sync-node-stack + cdk destroy eth-sync-node + # You need to manually delete an s3 bucket with a name similar to 'eth-snapshots-$accountid-eth-nodes-common' on the console,firstly empty the bucket,secondly delete the bucket,and then execute # Delete all common components like IAM role and Security Group - cdk destroy common-stack + cdk destroy eth-common ``` 2. Follow steps to delete the Cloud9 instance in [Cloud9 Setup](../../doc/setup-cloud9.md)