If you do not have an account on Alchemy, open an account and click Create App
.
wget -O StarknetEN.sh https://raw.githubusercontent.com/thisislexar/Starknet-Node/main/StarknetEN.sh && chmod +x StarknetEN.sh && ./StarknetEN.sh
You can also install the node manually to improve your Node knowledge.
screen -S starknet
mkdir -p $HOME/pathfinder
docker run \
--rm \
-p 9545:9545 \
--user "$(id -u):$(id -g)" \
-e RUST_LOG=info \
-e PATHFINDER_ETHEREUM_API_URL="<HTTPS URL FROM ALCHEMY>" \
-v $HOME/pathfinder:/usr/share/pathfinder/data \
eqlabs/pathfinder
Here is a sample command.
mkdir -p $HOME/pathfinder
docker run \
--rm \
-p 9545:9545 \
--user "$(id -u):$(id -g)" \
-e RUST_LOG=info \
-e PATHFINDER_ETHEREUM_API_URL="https://eth-mainnet.g.alchemy.com/v2/COsy1IzxkLxxxkRyxxxIpxwJxxxx" \
-v $HOME/pathfinder:/usr/share/pathfinder/data \
eqlabs/pathfinder