mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-07 06:08:03 +00:00
15 lines
519 B
Bash
Executable File
15 lines
519 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Run a development instance of the Rococo Substrate bridge node.
|
|
# To override the default port just export ROCOCO_PORT=9955
|
|
#
|
|
# Note: This script will not work out of the box with the bridges
|
|
# repo since it relies on a Polkadot binary.
|
|
|
|
ROCOCO_PORT="${ROCOCO_PORT:-9955}"
|
|
|
|
RUST_LOG=runtime=trace,runtime::bridge=trace \
|
|
./target/debug/polkadot --chain=rococo-local --alice --tmp \
|
|
--rpc-cors=all --unsafe-rpc-external --unsafe-ws-external \
|
|
--port 33044 --rpc-port 9934 --ws-port $ROCOCO_PORT \
|