mirror of
https://github.com/pezkuwichain/pezkuwi-runtime-templates.git
synced 2026-04-21 23:47:56 +00:00
033cf12f34
* update version for antora * improving zombienet guide (#280) * update docs version to 2.0.1 (#315) * Change all references from rococo to paseo (#330) * remove rococo-native featire from cargo.toml and other doc changes * use evm compatible accounts, and fix properties for chain spec (#326) * doc changes * bump node and docs versions * impl_runtime_apis need to be in the same file with construct runtime for the moment * account type fix * zombienet script update * slot duration fix --------- Co-authored-by: Nikita Khateev <nikita.khateev@gmail.com> Co-authored-by: Özgün Özerk <ozgunozerk.elo@gmail.com> Co-authored-by: Gustavo Gonzalez <gustavo.gonzalez@openzeppelin.com> ---------
109 lines
2.9 KiB
Bash
Executable File
109 lines
2.9 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
ZOMBIENET_V=v1.3.106
|
|
POLKADOT_V=stable2407-1
|
|
|
|
# Detect the operating system
|
|
case "$(uname -s)" in
|
|
Linux*) MACHINE=Linux;;
|
|
Darwin*) MACHINE=Mac;;
|
|
*) exit 1
|
|
esac
|
|
|
|
# Detect the architecture
|
|
ARCH=$(uname -m)
|
|
|
|
# Set the executable name based on the OS and architecture
|
|
if [ $MACHINE = "Linux" ]; then
|
|
if [ $ARCH = "x86_64" ]; then
|
|
ZOMBIENET_BIN=zombienet-linux-x64
|
|
elif [ $ARCH = "arm64" ] || [ $ARCH = "aarch64" ]; then
|
|
ZOMBIENET_BIN=zombienet-linux-arm64
|
|
else
|
|
echo "Unsupported Linux architecture: $ARCH"
|
|
exit 1
|
|
fi
|
|
elif [ $MACHINE = "Mac" ]; then
|
|
if [ $ARCH = "x86_64" ]; then
|
|
ZOMBIENET_BIN=zombienet-macos-x86
|
|
elif [ $ARCH = "arm64" ]; then
|
|
ZOMBIENET_BIN=zombienet-macos-arm64
|
|
else
|
|
echo "Unsupported macOS architecture: $ARCH"
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
echo "Using binary: $ZOMBIENET_BIN"
|
|
|
|
BIN_DIR=bin-$POLKADOT_V
|
|
|
|
build_polkadot() {
|
|
echo "cloning polkadot repository..."
|
|
CWD=$(pwd)
|
|
mkdir -p "$BIN_DIR"
|
|
pushd /tmp
|
|
git clone https://github.com/paritytech/polkadot-sdk.git
|
|
pushd polkadot-sdk
|
|
git checkout polkadot-$POLKADOT_V
|
|
echo "building polkadot executable..."
|
|
cargo build --release --features fast-runtime
|
|
cp target/release/polkadot "$CWD/$BIN_DIR"
|
|
cp target/release/polkadot-execute-worker "$CWD/$BIN_DIR"
|
|
cp target/release/polkadot-prepare-worker "$CWD/$BIN_DIR"
|
|
popd
|
|
popd
|
|
}
|
|
|
|
zombienet_init() {
|
|
if [ ! -f $ZOMBIENET_BIN ]; then
|
|
echo "fetching zombienet executable..."
|
|
curl -LO https://github.com/paritytech/zombienet/releases/download/$ZOMBIENET_V/$ZOMBIENET_BIN
|
|
chmod +x $ZOMBIENET_BIN
|
|
fi
|
|
}
|
|
|
|
zombienet_build() {
|
|
if [ ! -f $ZOMBIENET_BIN ]; then
|
|
echo "fetching zombienet executable..."
|
|
curl -LO https://github.com/paritytech/zombienet/releases/download/$ZOMBIENET_V/$ZOMBIENET_BIN
|
|
chmod +x $ZOMBIENET_BIN
|
|
fi
|
|
if [ ! -f $BIN_DIR/polkadot ]; then
|
|
build_polkadot
|
|
fi
|
|
}
|
|
|
|
zombienet_devnet() {
|
|
zombienet_init
|
|
cargo build --release
|
|
echo "spawning paseo-local relay chain plus devnet as a parachain..."
|
|
local dir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
./$ZOMBIENET_BIN spawn "$dir/../zombienet-config/devnet.toml" -p native
|
|
}
|
|
|
|
|
|
print_help() {
|
|
echo "This is a shell script to automate the execution of zombienet."
|
|
echo ""
|
|
echo "$ ./zombienet.sh init # fetches zombienet and polkadot executables"
|
|
echo "$ ./zombienet.sh build # builds polkadot executables from source"
|
|
echo "$ ./zombienet.sh devnet # spawns a paseo-local relay chain plus parachain devnet-local as a parachain"
|
|
}
|
|
|
|
SUBCOMMAND=$1
|
|
case $SUBCOMMAND in
|
|
"" | "-h" | "--help")
|
|
print_help
|
|
;;
|
|
*)
|
|
shift
|
|
zombienet_${SUBCOMMAND} $@
|
|
if [ $? = 127 ]; then
|
|
echo "Error: '$SUBCOMMAND' is not a known SUBCOMMAND." >&2
|
|
echo "Run './zombienet.sh --help' for a list of known subcommands." >&2
|
|
exit 1
|
|
fi
|
|
;;
|
|
esac
|