-
Notifications
You must be signed in to change notification settings - Fork 40
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/add coin xrp #3
base: master
Are you sure you want to change the base?
Conversation
Codecov Report
@@ Coverage Diff @@
## master #3 +/- ##
==========================================
- Coverage 61.96% 61.64% -0.33%
==========================================
Files 47 49 +2
Lines 2190 2401 +211
Branches 201 221 +20
==========================================
+ Hits 1357 1480 +123
- Misses 765 848 +83
- Partials 68 73 +5
Continue to review full report at Codecov.
|
There is a problem I am facing with bignumber when used by airgap-coin-lib in the vault 👎.
|
lib/serializer/index.ts
Outdated
@@ -34,7 +37,8 @@ export function signedTransactionSerializerByProtocolIdentifier(protocolIdentifi | |||
btc: BitcoinSignedTransactionSerializer, | |||
// grs: BitcoinSignedTransactionSerializer, | |||
ae: AeternitySignedTransactionSerializer, | |||
xtz: TezosSignedTransactionSerializer | |||
xtz: TezosSignedTransactionSerializer, | |||
XRP: XrpSignedTransactionSerializer |
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.
why uppercase?
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.
why uppercase?
It somehow did not work for me in the unit tests. Having a second look I think in this case this should just be the same as the protocol Identifier. Small tweak I guess.
Hi, thank you for opening this pull request and investing your time into improving our library. It's much appreciated! I didn't have much time to look at it, but the base already looks solid. A couple of issues:
Thanks again for taking your time to work on this. |
ok so one by one:
So a big subnotes:
|
So I finally managed to clean up the branch we've been working on internally and make it public on github. You can find it here: https://github.com/airgap-it/airgap-coin-lib/tree/release/v0.5.0 It's still a work in progress, but the overall structure shouldn't change much. There are a lot of changes, but most of them are related to linting and the structure of the project:
There are 2 more things we have planned that are not yet started, but will happen soon:
|
Hi all,
I am working on adding XRP to airgap-coiin-lib and airgap wallet in general.
Currently I belive I have finished the coin-lib part. Any suggestions welcome as I do not use TypeScript (at all up till now) and Javascript (ok I had some time with it once). Not to mention this cross app framework and npm ;).