379cb741ed
This commit systematically rebrands various references from Parity Technologies' Polkadot/Substrate ecosystem to PezkuwiChain within the kurdistan-sdk. Key changes include: - Updated external repository URLs (zombienet-sdk, parity-db, parity-scale-codec, wasm-instrument) to point to pezkuwichain forks. - Modified internal documentation and code comments to reflect PezkuwiChain naming and structure. - Replaced direct references to with or specific paths within the for XCM, Pezkuwi, and other modules. - Cleaned up deprecated issue and PR references in various and files, particularly in and modules. - Adjusted image and logo URLs in documentation to point to PezkuwiChain assets. - Removed or rephrased comments related to external Polkadot/Substrate PRs and issues. This is a significant step towards fully customizing the SDK for the PezkuwiChain ecosystem.
51 lines
1.1 KiB
Bash
Executable File
51 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# this script runs the pezkuwi-teyrchain after fetching
|
|
# appropriate bootnode IDs
|
|
#
|
|
# this is _not_ a general-purpose script; it is closely tied to the
|
|
# root docker-compose.yml
|
|
|
|
set -e -o pipefail
|
|
|
|
ctpc="/usr/bin/pezkuwi-teyrchain"
|
|
|
|
if [ ! -x "$ctpc" ]; then
|
|
echo "FATAL: $ctpc does not exist or is not executable"
|
|
exit 1
|
|
fi
|
|
|
|
# name the variable with the incoming args so it isn't overwritten later by function calls
|
|
args=( "$@" )
|
|
|
|
alice="172.28.1.1"
|
|
bob="172.28.1.2"
|
|
p2p_port="30333"
|
|
rpc_port="9933"
|
|
|
|
|
|
get_id () {
|
|
node="$1"
|
|
/wait-for-it.sh "$node:$rpc_port" -t 10 -s -- \
|
|
curl -sS \
|
|
-H 'Content-Type: application/json' \
|
|
--data '{"id":1,"jsonrpc":"2.0","method":"system_networkState"}' \
|
|
"$node:$rpc_port" |\
|
|
jq -r '.result.peerId'
|
|
}
|
|
|
|
bootnode () {
|
|
node="$1"
|
|
id=$(get_id "$node")
|
|
if [ -z "$id" ]; then
|
|
echo >&2 "failed to get id for $node"
|
|
exit 1
|
|
fi
|
|
echo "/ip4/$node/tcp/$p2p_port/p2p/$id"
|
|
}
|
|
|
|
args+=( "--" "--bootnodes=$(bootnode "$alice")" "--bootnodes=$(bootnode "$bob")" )
|
|
|
|
set -x
|
|
"$ctpc" "${args[@]}"
|