-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Reduce number of calls to send txs via connectors #3545
Comments
The final get latest gas price call to build the summary has now been eliminated in #3559. Estimating and funding a TX can only be improved from a DX POV, by performing this optimistically. This will be outlined by #3495 where it will implement #3541. This process then builds the result solely from the However for users that don't use that flow, there is an opportunity to remove a redundant get tx with receipts call if we can return a |
Agreed @arboleya |
Superseded by outcome of #3577 |
Note
This may have crossover issues in the connectors repo, still TBD
For a basic transaction, submitted via the
FuelConnector
, the following network requests are made:Part of this can be mitigated through tx pre bundling (#3495, #3539) and offering less abstract approaches for consumers (#3541), but we should also investigate the source of the problems in our primary flows (
call()
->waitForResult()
etc.) to improve performance for the majority of our consumers.The text was updated successfully, but these errors were encountered: