Add scripts for onboarding testnet participants from stage 0 to 1 laconicd chain #2
@ -1,25 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# Exit on error
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# Note: Needs to be run in the go-nitro repository
|
|
||||||
# Example usage:
|
|
||||||
# In go-nitro
|
|
||||||
# /home/user/fixturenet-laconicd-stack/stack-orchestrator/stacks/fixturenet-laconicd/scripts/fetch-account-holdings.sh eth-account-holdings.json
|
|
||||||
|
|
||||||
# Check if output file is provided
|
|
||||||
if [ -z "$1" ]; then
|
|
||||||
echo "Usage: $0 <output_file>"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
OUTPUT_FILE=$1
|
|
||||||
|
|
||||||
# Trust locally-trusted development certificates created by mkcert
|
|
||||||
export NODE_EXTRA_CA_CERTS="$(mkcert -CAROOT)/rootCA.pem"
|
|
||||||
|
|
||||||
# Run the nitro-rpc-client command and process the output with jq
|
|
||||||
npm exec -c "nitro-rpc-client get-all-ledger-channels -p 4006" | jq -s '[.[] | {ethereum_address: .Balance.Them, balance: .Balance.TheirBalance}]' > "$OUTPUT_FILE"
|
|
||||||
|
|
||||||
echo "Ethereum account holdings exported to $OUTPUT_FILE"
|
|
@ -3,47 +3,67 @@
|
|||||||
# Exit on error
|
# Exit on error
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Prerequisite: a json file with ETH accounts holdings
|
# Prerequisite: nitro-rpc-client package installed globally
|
||||||
|
# https://github.com/cerc-io/go-nitro/blob/main/packages/nitro-rpc-client/readme.md
|
||||||
|
|
||||||
# Check if output file is provided
|
# Check args
|
||||||
if [ "$#" -ne 2 ]; then
|
if [ "$#" -ne 1 ]; then
|
||||||
echo "Usage: $0 <stage0-deployment-dir-absolute> <eth-account-holdings-json-file>"
|
echo "Usage: $0 <stage0-deployment-dir-absolute>"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
STAGE0_DEPLOYMENT_DIR="$1"
|
STAGE0_DEPLOYMENT_DIR="$1"
|
||||||
ETH_ACCOUNT_HOLDINGS_FILE="$2"
|
|
||||||
|
|
||||||
STAGE1_GENESIS_DIR=stage1-genesis
|
STAGE1_GENESIS_DIR=stage1-genesis
|
||||||
|
|
||||||
# Create a target directory
|
# Create a temporary target directory
|
||||||
mkdir -p $STAGE1_GENESIS_DIR
|
mkdir -p $STAGE1_GENESIS_DIR
|
||||||
|
|
||||||
|
# --------
|
||||||
|
|
||||||
|
# Fetch ETH account holdings from the bridge node
|
||||||
|
|
||||||
|
# Trust locally-trusted development certificates created by mkcert
|
||||||
|
export NODE_EXTRA_CA_CERTS="$(mkcert -CAROOT)/rootCA.pem"
|
||||||
|
|
||||||
|
# Run the nitro-rpc-client command and process the output with jq
|
||||||
|
eth_account_holdings=$(nitro-rpc-client get-all-ledger-channels -p 4006 | jq -s '[.[] | {nitro_address: .Balance.Them, balance: .Balance.TheirBalance}]')
|
||||||
|
|
||||||
|
echo "Fetched Ethereum account holdings"
|
||||||
|
|
||||||
|
# --------
|
||||||
|
|
||||||
# Export onboarding module state from stage0 laconicd chain
|
# Export onboarding module state from stage0 laconicd chain
|
||||||
|
|
||||||
onboarding_state_file="$STAGE1_GENESIS_DIR/stage0-onboarding-state.json"
|
onboarding_state_file="$STAGE1_GENESIS_DIR/stage0-onboarding-state.json"
|
||||||
docker run -it \
|
docker run -it \
|
||||||
-v ${STAGE0_DEPLOYMENT_DIR}/data/laconicd-data:/root/stage0-deployment/.laconicd \
|
-v ${STAGE0_DEPLOYMENT_DIR}/data/laconicd-data:/root/stage0-deployment/.laconicd \
|
||||||
cerc/laconic2d:local bash -c "laconicd export --home /root/stage0-deployment/.laconicd" \
|
cerc/laconic2d:local bash -c "laconicd export --home /root/stage0-deployment/.laconicd" \
|
||||||
| jq .app_state.onboarding > "$onboarding_state_file"
|
| jq .app_state.onboarding > "$onboarding_state_file"
|
||||||
|
|
||||||
eth_account_holdings=$(cat "$ETH_ACCOUNT_HOLDINGS_FILE")
|
|
||||||
stage0_participants=$(cat "$onboarding_state_file" | jq .participants)
|
stage0_participants=$(cat "$onboarding_state_file" | jq .participants)
|
||||||
|
|
||||||
|
echo "Exported onboarding module state from stage 0 chain"
|
||||||
|
|
||||||
|
# --------
|
||||||
|
|
||||||
# For each participant, using ETH account holdings, figure out balance allocation for stage1
|
# For each participant, using ETH account holdings, figure out balance allocation for stage1
|
||||||
# TODO Check what happens if participant is missing
|
|
||||||
stage1_allocations_file="$STAGE1_GENESIS_DIR/stage1-allocations.json"
|
stage1_allocations_file="$STAGE1_GENESIS_DIR/stage1-allocations.json"
|
||||||
jq -n --argjson holdings "$eth_account_holdings" --argjson participants "$stage0_participants" '
|
jq -n --argjson holdings "$eth_account_holdings" --argjson participants "$stage0_participants" '
|
||||||
[
|
[
|
||||||
$holdings[] |
|
$holdings[] |
|
||||||
. as $holding |
|
. as $holding |
|
||||||
$participants[] |
|
$participants[] |
|
||||||
select((.ethereum_address | ascii_downcase) == ($holding.ethereum_address | ascii_downcase)) |
|
select((.nitro_address | ascii_downcase) == ($holding.nitro_address | ascii_downcase)) |
|
||||||
{
|
{
|
||||||
cosmos_address: .cosmos_address,
|
cosmos_address: .cosmos_address,
|
||||||
balance: $holding.balance
|
balance: $holding.balance
|
||||||
}
|
}
|
||||||
]' > $stage1_allocations_file
|
]' > $stage1_allocations_file
|
||||||
|
|
||||||
|
echo "Calculated allocations for stage 1 chain"
|
||||||
|
|
||||||
|
# --------
|
||||||
|
|
||||||
# Run a script with cerc/laconic2d:local to generate the genesis file
|
# Run a script with cerc/laconic2d:local to generate the genesis file
|
||||||
# with onboarding module state and given allocations
|
# with onboarding module state and given allocations
|
||||||
docker run -it \
|
docker run -it \
|
||||||
@ -55,7 +75,10 @@ docker run -it \
|
|||||||
OUTPUT_DIR=output
|
OUTPUT_DIR=output
|
||||||
mkdir -p $OUTPUT_DIR
|
mkdir -p $OUTPUT_DIR
|
||||||
cp ./stage1-genesis/config/genesis.json $OUTPUT_DIR/genesis.json
|
cp ./stage1-genesis/config/genesis.json $OUTPUT_DIR/genesis.json
|
||||||
|
|
||||||
echo "Genesis file for stage1 written to $OUTPUT_DIR/genesis.json"
|
echo "Genesis file for stage1 written to $OUTPUT_DIR/genesis.json"
|
||||||
|
|
||||||
|
# --------
|
||||||
|
|
||||||
# Clean up
|
# Clean up
|
||||||
echo "Please remove the temporary data directory: sudo rm -rf stage1-genesis"
|
echo "Please remove the temporary data directory: sudo rm -rf stage1-genesis"
|
||||||
|
@ -2,7 +2,7 @@ version: "1.0"
|
|||||||
name: fixturenet-laconicd
|
name: fixturenet-laconicd
|
||||||
description: "A laconicd fixturenet"
|
description: "A laconicd fixturenet"
|
||||||
repos:
|
repos:
|
||||||
- github.com/deep-stack/laconic2d@testnet-onboarding
|
- git.vdb.to/cerc-io/laconic2d
|
||||||
containers:
|
containers:
|
||||||
- cerc/laconic2d
|
- cerc/laconic2d
|
||||||
pods:
|
pods:
|
||||||
|
Loading…
Reference in New Issue
Block a user