You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Concept
Sometimes users make transactions to themselves. It's inappropriate to label this as outgoing or incoming so we need a new category. I suggest reorganization to match the terminology used in the Cardano Wallet Spec.
Motivation for such transactions
Sometimes a wallet has a large UTXO that they would want to split into many small UTXO. Doing such makes your payment-to-change ration closer to 1.0 which helps improve privacy on transactions.
Sometimes a wallet has a lot of dust they would like to group together
Once we have smart contracts in the SL layer, some utxo may be associated with special meaning. You would need to reorganize your UTXO to give special meaning to a UTXO of the right amount.
Using a chimeric ledge means you would have to do transactions with yourself to convert between transaction-based and utxo-based models.
This will require a UI change (new icon, new way to display the fees, etc)
The current UI for this is at best misleading and depending on your definition also a bug.
The text was updated successfully, but these errors were encountered:
The bug is much more serious than just the UI labelling, unfortunately:
In the case of a reorg tx - its value is calculated all wrong, just because code checks that there are our inputs, but does not check if there are our outputs too, and therefore transaction shows something like -100 even of we got -99 back to the same wallet.
In the same case also wallet does not recognise ALL the outputs to the same wallet (my guess would be because it is hardcoded logic that there's expected to be only one [change] output to the same wallet, and so code stops after first found output like that). It means that if we have transaction from our address A to our addresses B and C - funds on either B or C might get locked out of wallet until next restoration, just because code does not checks if it's ours or not.
We gotta do something similar to how it's solved in our mobile apps with:
Concept
Sometimes users make transactions to themselves. It's inappropriate to label this as
outgoing
orincoming
so we need a new category. I suggestreorganization
to match the terminology used in the Cardano Wallet Spec.Motivation for such transactions
This will require a UI change (new icon, new way to display the fees, etc)
The current UI for this is at best misleading and depending on your definition also a bug.
The text was updated successfully, but these errors were encountered: