diff --git a/docker-compose.yml b/docker-compose.yml index 59391f0..0aeefc1 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -36,6 +36,7 @@ services: ports: - 30304:30304/tcp - 30304:30304/udp + - 127.0.0.1:8545:8545/tcp - 9005:9005/udp - 127.0.0.1:8003:8003 - 80:80 #Let's Encrypt diff --git a/run_node.sh b/run_node.sh index f5555e1..1ca9250 100644 --- a/run_node.sh +++ b/run_node.sh @@ -66,6 +66,7 @@ exec /usr/bin/wakunode\ --pubsub-topic=/waku/2/rs/1/7\ --filter=true\ --lightpush=true\ + --rpc-admin=true\ --keep-alive=true\ --max-connections=150\ --cluster-id=1\ @@ -76,6 +77,8 @@ exec /usr/bin/wakunode\ --discv5-udp-port=9005\ --discv5-enr-auto-update=True\ --log-level=DEBUG\ + --rpc-port=8545\ + --rpc-address=0.0.0.0\ --tcp-port=30304\ --metrics-server=True\ --metrics-server-port=8003\