- 
                Notifications
    You must be signed in to change notification settings 
- Fork 1.8k
[XRP] Add support for Escrow transactions #3572
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
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.
Thank you for the contribution! Only one note
| } | ||
|  | ||
| TEST(TWAnySignerRipple, SignEscrowCreate) { | ||
| // https://testnet.xrpl.org/transactions/3F581927C742D5FAE65FB0759D0F04EF3B64B4A087911B07975816ECCB59915B | 
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.
Transaction not found. Also could you please broadcast the transactions on mainnet?
The checklist contains the step to broadcast at least one transaction on mainnet:
https://developer.trustwallet.com/developer/wallet-core/newblockchain#blockchain-checklist
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.
The transactions are definitely there. Maybe a temporary problem with the explorer? Seems to work now.
I assumed the mainnet transaction would only be necessary when adding an entirely new blockchain, but I'll see what I can do about that.
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.
Non of the links in the PR still do not work for me
https://testnet.xrpl.org/transactions/3F581927C742D5FAE65FB0759D0F04EF3B64B4A087911B07975816ECCB59915B
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.
It seems indeed unreliable. Depending on which backend node is selected, the transaction history might not be available. I added a bunch of main net transactions, hope that helps.
| Hi @rikublock, I made this PR ready to review and merged master to run the CI checks | 
| @rikublock could you please update  | 
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.
LGTM, thank you for the contribution!
* add XRP escrow proto defs * XRP escrow transaction encoding * update XRP signer * XRP escrow transaction tests * add XRP mainnet escrow transaction tests * [KMP]: Bump to 4.0.10 --------- Co-authored-by: satoshiotomakan <127754187+satoshiotomakan@users.noreply.github.com>
* add XRP escrow proto defs * XRP escrow transaction encoding * update XRP signer * XRP escrow transaction tests * add XRP mainnet escrow transaction tests * [KMP]: Bump to 4.0.10 --------- Co-authored-by: satoshiotomakan <127754187+satoshiotomakan@users.noreply.github.com>
Description
Add support for the following XRP Ledger transaction types:
EscrowCreate: https://xrpl.org/escrowcreate.htmlEscrowCancel: https://xrpl.org/escrowcancel.htmlEscrowFinish: https://xrpl.org/escrowfinish.htmlHow to test
Types of changes
Open questions
Checklist