You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 14, 2025. It is now read-only.
Then running migrations and tests using truffle in another terminal:
truffle test test/test1.js #truffle is using the ganache network above
these successfully migrate and pass, generating quite some transactions and even awaiting the receipts.
However, no matter what transactions are made on ganache forked networks, init.json always only contains the initial account setups:
Hey @Silur thank you for reporting this issue. Unfortunately, I am going off the grid for the next week or so but I can help triage after that. Appreciate your patience.
update, no transactions are logged at all, independent of whether using truffle, hardhat, or manual transaction sending to either a forked a normal etheno --ganache invocation. init.json always only contains the 10 addresses set by ganache, irrespective to what is happening on the local network
However, if used by connecting etheno into a separate ganache instance, everything works
So with regards to your original comment on grabbing transactions from forked networks, does your truffle config point to port 8546 or 8545? Note that etheno runs on 8546 and sending messages to port 8545 will prevent etheno from logging them.
Etheno basically acts like a proxy between your RPC request and the ganache instance. Thus the flow of data is hardhat/truffle -> etheno -> ganache. It seems like you identified this based on your second comment but was wondering if that fixed all your issues.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Running the following experiment on a truffle project:
etheno --ganache --ganache-args="ganache -f 'https://bsc-dataseed1.defibit.io/' -e 10000" -x init.json
Then running migrations and tests using truffle in another terminal:
these successfully migrate and pass, generating quite some transactions and even awaiting the receipts.
However, no matter what transactions are made on ganache forked networks,
init.json
always only contains the initial account setups:The text was updated successfully, but these errors were encountered: