Page MenuHomePhabricator

[Cashtab] Parse PayButton txs in tx history
ClosedPublic

Authored by bytesofman on Jan 29 2024, 18:14.

Details

Reviewers
Klakurka
Fabien
Group Reviewers
Restricted Project
Commits
rABC7ac2848ddcda: [Cashtab] Parse PayButton txs in tx history
Summary

T3423

Parse PayButton txs in tx history

Note: this will still render such txs as 'external msgs', but they will at least be legible. Will handle the msg titling issue in a separate diff, as parseChronikTx should be refactored to give an app name instead of a series of app flags.

Test Plan

npm test

Diff Detail

Repository
rABC Bitcoin ABC
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

Can you put this on the dev URL?

Klakurka requested changes to this revision.Jan 30 2024, 00:56
Klakurka added inline comments.
cashtab/src/chronik/index.js
662 ↗(On Diff #44697)

I think it's worth creating a new task to better control the behaviour of the entire "payment details" div. An example of what we could eventually do:

image.png (208×700 px, 20 KB)

Let me know what you think.

For the purposes of getting something simple working, how about:

image.png (241×685 px, 28 KB)

If the payment ID is missing, omit it entirely.

If the custom data section is missing, omit it entirely.

This revision now requires changes to proceed.Jan 30 2024, 00:56
cashtab/src/chronik/index.js
662 ↗(On Diff #44697)

I think it's worth creating a new task to better control the behaviour of the entire "payment details" div. An example of what we could eventually do:

yes. need to refactor this parsing function first to get it to recognize each app tx. but then pretty straightforward from there.

If the payment ID is missing, omit it entirely.

done

If the custom data section is missing, omit it entirely.

done

if no data or no payment id, do not render

if no data or no payment id, do not render

This is now live at https://cashtab-local-dev.netlify.app

Fabien requested changes to this revision.Jan 30 2024, 09:20
Fabien added a subscriber: Fabien.
Fabien added inline comments.
cashtab/src/chronik/fixtures/vectors.js
153 ↗(On Diff #44705)

This has a payment id

158 ↗(On Diff #44705)

There is no test for no nonce but with data. Is that only a possible valid combination ?

cashtab/src/chronik/index.js
643 ↗(On Diff #44705)

remove

651–657 ↗(On Diff #44705)
This revision now requires changes to proceed.Jan 30 2024, 09:20

remove debug log, add mocks, support opReturnMessage as partial string in parseChronikTx

remove if/else pattern and use break

Fabien requested changes to this revision.Jan 30 2024, 15:26
Fabien added inline comments.
cashtab/src/chronik/index.js
609 ↗(On Diff #44724)
613 ↗(On Diff #44724)

This is unrelated to this diff

This revision now requires changes to proceed.Jan 30 2024, 15:26

toString everything did not need to be fixed here

Klakurka requested changes to this revision.Jan 30 2024, 18:27

I'm not seeing any of the custom data anymore in the latest commit -- it was working in the first one. Only the payment ID is coming through.

This revision now requires changes to proceed.Jan 30 2024, 18:27

I'm not seeing any of the custom data anymore in the latest commit -- it was working in the first one. Only the payment ID is coming through.

can you give some example txids?

I'm not seeing any of the custom data anymore in the latest commit -- it was working in the first one. Only the payment ID is coming through.

can you give some example txids?

They're all the same for me (only showing the payment id) but here's one:

a2f68195404f5cf8113d75a0677bc32a0db38919ba240141ae639ea5fbeb9644

I'm not seeing any of the custom data anymore in the latest commit -- it was working in the first one. Only the payment ID is coming through.

can you give some example txids?

They're all the same for me (only showing the payment id) but here's one:

a2f68195404f5cf8113d75a0677bc32a0db38919ba240141ae639ea5fbeb9644

this tx only has a payment id and no data ... so this is expected behavior right?

(only showing the payment id)

6a0450415900000008beabd2394024aaaf
6a is op return
04 + 50415900
00 op 0 for version push
00 op 0 in data push means no data
08 + beabd2394024aaaf is payment id

Nevermind -- looks good.

This revision is now accepted and ready to land.Feb 3 2024, 21:07