mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-09 11:47:59 +00:00
fcc1574aac
(git subtree add --prefix=bridges bridges master --squash)
12 lines
375 B
Bash
Executable File
12 lines
375 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Run a development instance of the Rialto Substrate bridge node.
|
|
# To override the default port just export RIALTO_PORT=9944
|
|
|
|
RIALTO_PORT="${RIALTO_PORT:-9944}"
|
|
|
|
RUST_LOG=runtime=trace \
|
|
./target/debug/rialto-bridge-node --dev --tmp \
|
|
--rpc-cors=all --unsafe-rpc-external --unsafe-ws-external \
|
|
--port 33033 --rpc-port 9933 --ws-port $RIALTO_PORT \
|