From 8f750bf3296a81f3719c820d7e2ccbcd546dc62c Mon Sep 17 00:00:00 2001 From: IshaVenikar Date: Wed, 14 Aug 2024 17:13:09 +0530 Subject: [PATCH] Add instructions to re-publish records in stage1 --- ops/stage0-to-stage1.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/ops/stage0-to-stage1.md b/ops/stage0-to-stage1.md index 56550aa..7c94479 100644 --- a/ops/stage0-to-stage1.md +++ b/ops/stage0-to-stage1.md @@ -69,6 +69,34 @@ Once all the participants have completed their onboarding, stage0 laconicd chain cp ~/cerc/fixturenet-laconicd-stack/stack-orchestrator/stacks/fixturenet-laconicd/output/genesis.json stage1-deployment/data/genesis-config/genesis.json ``` +* Republish records in stage1: + + * Create bond + + ```bash + ALICE_PK=$(echo y | laconic-so deployment --dir /srv/laconicd/stage1-deployment exec laconicd "laconicd keys export alice --unarmored-hex --unsafe") + laconic-so deployment --dir laconic-console-deployment exec cli "laconic registry bond create --type alnt --quantity 1000000000000 --user-key $ALICE_PK" | jq -r '.bondId' + ``` + + * Update CLI config + + ```bash + BOND_ID=c5ce12710a0ba7bf01f085a24b23dc78936e8d63ba3ce9d4b9d8f789e5b2f265 + laconic-so deployment --dir laconic-console-deployment exec cli "CERC_LACONICD_USER_KEY=${ALICE_PK} CERC_LACONICD_BOND_ID=${BOND_ID} CERC_LACONICD_GAS=500000 CERC_LACONICD_FEES=500000alnt /app/create-config.sh" + ``` + + * Copy records + + ```bash + cp -r /srv/laconicd/testnet-repo-records laconic-console-deployment/data/laconic-registry-data/testnet-repo-records + ``` + + * Publish + + ```bash + laconic-so deployment --dir laconic-console-deployment exec cli "yarn ts-node demo/scripts/publish-records.ts --config config.yml --records /laconic-registry-data/testnet-repo-records" + ``` + * Start the stage1 deployment: ```bash