Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

scripts/local_testnet: add explorer service + review image refs (#38) #95

Merged
merged 1 commit into from
Mar 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion scripts/local_testnet/network_params.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,27 @@ participants:
el_image: qrledger/go-zond:stable
cl_type: qrysm
cl_image: qrledger/qrysm:beacon-chain-latest
# local build
# cl_image: theqrl-dev/qrysm-beacon-chain:latest
vc_type: qrysm
vc_image: qrledger/qrysm:validator-latest
# local build
# vc_image: theqrl-dev/qrysm-validator:latest
count: 2
# use_remote_signer: true
# remote_signer_type: clef
network_params:
preset: "mainnet"
prefunded_accounts: '{"Z25941dC771bB64514Fc8abBce970307Fb9d477e9": {"balance": "10ETH"}, "Z4107be99052d895e3ee461C685b042Aa975ab5c0": {"balance": "1ETH"}, "Z2099d76d9a34cdd2694c4dc703930a6fbbc1d402": {"balance": "2000000ETH"}, "Z2018DcfF6a42061E4203d3b8cbF48E9B890Cbdf2": {"balance": "2000000ETH"}}'

# global_log_level: debug

# additional_services:
# - full_beaconchain_explorer
# - tx_spammer

# tx_spammer_params:
# image: theqrl/zond-tx-spammer:latest
# image: qrledger/zond-tx-spammer:latest
# scenario: eoatx
# throughput: 100
# max_pending: 100
Expand Down
2 changes: 0 additions & 2 deletions scripts/local_testnet/start_local_testnet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ set -Eeuo pipefail
SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
ENCLAVE_NAME=local-testnet
NETWORK_PARAMS_FILE=$SCRIPT_DIR/network_params.yaml
# TODO(now.youtrack.cloud/issue/TQ-35)
ZOND_PKG_VERSION=main

BUILD_IMAGE=true
Expand Down Expand Up @@ -95,7 +94,6 @@ if [ "$KEEP_ENCLAVE" = false ]; then
kurtosis enclave rm -f $ENCLAVE_NAME 2>/dev/null || true
fi

# TODO(now.youtrack.cloud/issue/TQ-35)
kurtosis run --enclave $ENCLAVE_NAME github.com/theQRL/zond-package@$ZOND_PKG_VERSION --args-file $NETWORK_PARAMS_FILE

echo "Started!"