mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-07 07:18:03 +00:00
15 lines
529 B
Bash
Executable File
15 lines
529 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=9966
|
|
#
|
|
# Note: This script will not work out of the box with the bridges
|
|
# repo since it relies on a Polkadot binary.
|
|
|
|
ROCOCO_BOB_PORT="${ROCOCO_BOB_PORT:-9966}"
|
|
|
|
RUST_LOG=runtime=trace,runtime::bridge=trace \
|
|
./target/debug/polkadot --chain=rococo-local --bob --tmp \
|
|
--rpc-cors=all --unsafe-rpc-external --unsafe-ws-external \
|
|
--port 33055 --rpc-port 9935 --ws-port $ROCOCO_BOB_PORT \
|