-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
implement transaction call
#60
Comments
Isn't that what |
Yes, but call has a different signature: provider.call(tx) |
Ah okay, so if I'm understanding correctly, the method you're looking to add to the ethereum wrapper would be something like: callStatic(
tx: TxRequest!
connection: Connection
): StaticTxResponse! ? |
Yes, exactly |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
based on https://docs.ethers.org/v5/api/providers/provider/#Provider-call
This allows users to get the return value from a transaction, rather than just a transaction hash
The text was updated successfully, but these errors were encountered: