Problem Path erigon3.0.6 and integrate erigon app #15615
hyroshyack
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello everyone,
I’m completely stuck with Erigon 3.0.6 in my crypto arbitrage application on Windows 11 Ultimate Edition (Intel Core i5, 32 GB RAM, Crucial X9 4 TB SSD). My app, coded in Python 3.11 with PyQt5 (~13,000 lines), needs to launch an Ethereum node in full sync mode with snapshots from an integrated console and interact via Web3.py. However, I keep running into errors with Erigon’s flags, and I can’t get the node to work properly.
My setup:
Commands tested and errors:
E:\erigon\erigon-3.0.6\build\bin\erigon.exe --datadir E:\erigon_data --snapshots E:\erigon_data\snapshots --authrpc.jwtsecret E:\erigon_data\jwt.hex --http --http.api=eth,debug,net,trace,web3,erigon --http.port=8545 --http.addr=127.0.0.1 --authrpc.port=8551 --authrpc.addr=127.0.0.1 --maxpeers=64 --cache=16384
Error: flag provided but not defined: -snapshots
.\erigon.exe --datadir E:\erigon_data --authrpc.jwtsecret E:\erigon_data\jwt.hex --http --http.api=eth,debug,net,trace,web3,erigon --http.port=8545 --http.addr=127.0.0.1 --authrpc.port=8551 --authrpc.addr=127.0.0.1 --maxpeers=64 --cache=16384 --db.tempdir E:\erigon_data\temp
Error: flag provided but not defined: -cache
.\erigon.exe --datadir E:\erigon_data --authrpc.jwtsecret E:\erigon_data\jwt.hex --http --http.api=eth,debug,net,trace,web3,erigon --http.port=8545 --http.addr=127.0.0.1 --authrpc.port=8551 --authrpc.addr=127.0.0.1 --maxpeers=64 --state.cache=16384M --db.tempdir E:\erigon_data\temp --ethash.dagdir E:\erigon_data\ethash
Error: flag provided but not defined: -db.tempdir
.\erigon.exe snapshots --datadir E:\erigon_data
Error: flag provided but not defined: -datadir
My questions:
What I want:
I want to launch Erigon 3.0.6 from my app’s console, use my snapshots to speed up sync, and interact with the node via Web3.py on http://127.0.0.1:8545. I’m really struggling with the flags and configuration, and I need help to resolve this.
Thank you so much for your time and advice! Your help would be invaluable to get my node running in my crypto arbitrage app.
Beta Was this translation helpful? Give feedback.
All reactions