QA wallet
#1142
Replies: 1 comment
-
Seems like there's Rivet https://github.com/paradigmxyz/rivet in that niche. Haven't got it to work with my dApp yet, though. |
Beta Was this translation helpful? Give feedback.
0 replies
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!
While dwelling on Quality Assurance in a few web3 setups, I often wondered how to perform manual tests of dApps on real data.
Quite a few pieces fall together:
anvil
anvil_impersonateAccount
anvil_setBalance
However, it's all good when sending transactions from code, or from shell. But that doesn't allow to do button-clicking in a dApp, because one piece is missing: a browser / mobile / etc wallet that can work with
anvil_impersonateAccount
, ie without actually knowing user's private key.So basically let Metamask to import test accounts without private key and send transactions via
anvil_impersonateAccount
instead ofeth_sendTransaction
.What do you think of such an approach? Is there any chance it is possible right now?
I think that would be invaluable for Quality Assurance.
Beta Was this translation helpful? Give feedback.
All reactions