-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Feature: speed up transaction #1176
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is great! 💯 🔥 🙌
return this.renderEmpty(); | ||
} | ||
|
||
const { submittedTransactions, confirmedTransactions } = this.props; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
const { submittedTransactions, confirmedTransactions, transactions, header } = this.props;
@@ -129,6 +138,110 @@ class TransactionsNotificationManager { | |||
} | |||
} | |||
|
|||
_handleTransactionsWatchTableUpdate = transactionMeta => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we rename this to list instead of table?
locales/es.json
Outdated
"cancel_tx_title": "¿Intentar cancelar?", | ||
"cancel_tx_message": "Enviar este intento no garantiza que su transacción original será cancelada. Si el intento de cancelación es exitoso, se le cobrará la tarifa de transacción anterior.", | ||
"speed_up_tx_title": "¿Intentar acelerar?", | ||
"speed_up_tx_message": "nviar este intento no garantiza que su transacción original se acelerará. Si el intento de acelerar es exitoso, se le cobrará la tarifa de transacción anterior.", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Enviar
locales/es.json
Outdated
"cancel_tx_message": "Enviar este intento no garantiza que su transacción original será cancelada. Si el intento de cancelación es exitoso, se le cobrará la tarifa de transacción anterior.", | ||
"speed_up_tx_title": "¿Intentar acelerar?", | ||
"speed_up_tx_message": "nviar este intento no garantiza que su transacción original se acelerará. Si el intento de acelerar es exitoso, se le cobrará la tarifa de transacción anterior.", | ||
"nevermind": "No importa", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, gracias
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🤷♂
locales/es.json
Outdated
"speed_up_tx_message": "nviar este intento no garantiza que su transacción original se acelerará. Si el intento de acelerar es exitoso, se le cobrará la tarifa de transacción anterior.", | ||
"nevermind": "No importa", | ||
"gas_cancel_fee": "Tarifa de Cancelación", | ||
"gas_speed_up_fee": "Tarifa de Aceleración " |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Extra space at the end
Issue 1: Issue 2: Went to kyberswap.com to transfer some DAI and when I attempted to speed up the txn, tapping on the CTA didn't do anything and there was a warning; seen here = https://recordit.co/yJkggYty9x Issue 3: Went to uniswap trying to get some DAI, and I went to edit my gas to be slow, upon going back to the confirm screen and tapping on the confirm button, I get this; seen here = https://recordit.co/qoY7XwGEnK |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All fixes look good, QA Passed 👍
…tamask-mobile into feature/speed-up-transaction
* render and speed up * parse nonce * wip handle transactions * handle speed up * handle one tx per nonce * perf * filter once * handle notifications * locale * locale es * not timeout * more locale * handle listeners * snaps * handle tx view * status * fix callbacks issue * ignore * missing locale * speed_up * _handleTransactionsWatchListUpdate * locales * props * speedup * locale * keyextractor * fix instapay * fix filter * fix filter for real * fix filter for real for real * move everything one level up on dep tree * snaps * bump gaba * fix imports to new gaba * more import changes
Description
Adds ability to speed up transactions
Checklist
Issue
Resolves #1107