-
Notifications
You must be signed in to change notification settings - Fork 106
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
Namadillo: Transaction history list #1250
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 looks great!
I left quite a few comments, but the main thing I think is that we could simplify a lot by using the information we already have about a tx instead of parsing it from the RPC response, or even dropping it altogether if the information is not needed (e.g. possibly resultTxHash
).
But I think this looks really good, and just waiting for a couple of fixes where things aren't working for approval.
ffd9e26
to
480e996
Compare
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.
tx as IbcTransferTransactionData, | ||
changeTransaction | ||
); | ||
} |
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.
…instead of Asset object
480e996
to
2795790
Compare
This PR adds a transaction history page and all the necessary structure behind it.
It also creates a confirmation screen and its implementation with IBC Transfers.
Added
useTransactionWatcher
hook polls the rpc every x seconds to check if the pending transaction has new events / related txsuseTransactionActions
: helper hook to interact with the transaction local storage/transaction/:hash
and/history
routesOther Changes
types.d.ts
was renamed totypes.ts
and all type errors were fixedTokenCurrency
now acceptssymbol
instead of anAsset
Closes #1186
Closes #1184
Closes #1199