Skip to content
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

[Discussion] Consider removing the tx_extra field #6668

Open
tevador opened this issue Jun 20, 2020 · 175 comments
Open

[Discussion] Consider removing the tx_extra field #6668

tevador opened this issue Jun 20, 2020 · 175 comments

Comments

@tevador
Copy link
Contributor

tevador commented Jun 20, 2020

First discussed here: monero-project/meta#356

We should consider removing the tx_extra field from all non-coinbase transactions.

Main reasons:

  1. Enhanced fungibility due to a more uniform transaction format.
  2. Protection from the risks of arbitrary data on the blockchain, e.g. copyrighted material, privacy violations, politically sensitive or illegal content etc.

Required data that is currently stored in tx_extra (e.g. transaction public key) could be moved to a dedicated field.

Miner (coinbase) transactions could still allow the tx_extra field for the following reasons:

  • coinbase transactions are already distinguishable
  • the risk of harmful content is lower because it would require mining a block
  • tx_extra is needed for merged mining

Disadvantages of removing the tx_extra field:

  • losing the ability to soft-fork the transaction format
@fluffypony
Copy link
Contributor

I support this. I'm perpetually worried about someone wanting to pack stuff into tx_extra unnecessarily.

@ghost
Copy link

ghost commented Jun 20, 2020

Are you suggesting giving mining pools the privilege to store arbitrary data into the blockchain?

@sumogr
Copy link
Contributor

sumogr commented Jun 20, 2020

afaik there is a proposal (an open pr) already from mooo to make use of extra to encrypt recipient's private data into it which is quite interesting #6410

@tevador
Copy link
Contributor Author

tevador commented Jun 20, 2020

Are you suggesting giving mining pools the privilege to store arbitrary data into the blockchain?

No. Currently anyone can store arbitrary data on the blockchain. We could either completely remove this option or keep it just for miners (e.g. for merged mining).

afaik there is a proposal (an open pr) already from mooo to make use of extra to encrypt recipient's private data into it which is quite interesting #6410

The problem is that the consensus mechanism cannot force the data in tx_extra to be encrypted. A malicious sender can still include arbitrary data and claim that it's the ciphertext. Additionally, even the mere presence of encrypted data is a distinguishing factor for transactions (unless all transactions include data of the same length).

@sumogr
Copy link
Contributor

sumogr commented Jun 20, 2020

The problem is that the consensus mechanism cannot force the data in tx_extra to be encrypted. A malicious sender can still include arbitrary data and claim that it's the ciphertext. Additionally, even the mere presence of encrypted data is a distinguishing factor for transactions (unless all transactions include data of the same length).

There's supposed to be an off-chain agreement-trust between sender and receiver already, for this to be working, i agree with that, that's the point (assuming i understood mooo's intentions correctly). Padding of arbitrary data up to a pre-specified size was already suggested for uniformity, indeed.

@tevador
Copy link
Contributor Author

tevador commented Jun 20, 2020

There's supposed to be an off-chain agreement-trust between sender and receiver

A malicious sender doesn't need an agreement with anyone. As an extreme example, imagine a KYC exchange started sending the recipient's name and amount in tx_extra.

@sumogr
Copy link
Contributor

sumogr commented Jun 20, 2020

There's supposed to be an off-chain agreement-trust between sender and receiver

A malicious sender doesn't need an agreement with anyone. As an extreme example, imagine a KYC exchange started sending the recipient's name and amount in tx_extra.

there i agree but i already can encode in the tx extra my name or yours, if i knew it, into any tx. Anyway it will be an interesting discussion, lets see

@ghost
Copy link

ghost commented Jun 20, 2020

@tevador

We could either completely remove this option

I like this.

@hyc
Copy link
Collaborator

hyc commented Jun 20, 2020

* losing the ability to soft-fork the transaction format

This bothers me a bit, but really, when have we soft-forked anything? So far all changes have been hard forks.

@SomaticFanatic
Copy link
Contributor

SomaticFanatic commented Jun 20, 2020

Also support removing tx_extra. Increasing fungibility is always a good thing. Is this a holdover from Bitcoins way of doing things? What, do people imagine, was the motivation for including it in the first place?

@tevador
Copy link
Contributor Author

tevador commented Jun 20, 2020

This proposal by @UkoeHB is also relevant: #6456

It suggests removing all non-optional parts of a transaction from the tx_extra field.

@UkoeHB
Copy link
Contributor

UkoeHB commented Jun 20, 2020

My argument against removing the extra field completely (copy pasted from #6456):

The Monero core team cannot see the future nor evaluate all possible usecases of Monero. To a large extent, it is up to users how Monero actually gets used. If there is a feature which only a subset of Monero users find valuable, it requires adding data to transactions, and the core team either isn't interested or does not have the resources to implement it, then the only way that feature can exist without a fork is with something like the extra field. Moreover, if for some reason periodic hard forks become no longer feasible, then without an extra field the Monero transaction structure will be frozen for eternity. Just as Monero is changing today, who knows how it will change in the future. An extra field permits changes that don't depend on hard forks.

@tevador
Copy link
Contributor Author

tevador commented Jun 20, 2020

If there is a feature which only a subset of Monero users find valuable, it requires adding data to transactions, and the core team either isn't interested or does not have the resources to implement it, then the only way that feature can exist without a fork is with something like the extra field

If such feature is only used by a subset of transactions, it will affect the privacy of everyone using Monero. In theory, there could be dozens of these extensions in the future, which could be enough to tag users based on the specific set of extensions they use. Do we want this?

@UkoeHB
Copy link
Contributor

UkoeHB commented Jun 20, 2020

If such feature is only used by a subset of transactions, it will affect the privacy of everyone using Monero. In theory, there could be dozens of these extensions in the future, which could be enough to tag users based on the specific set of extensions they use. Do we want this?

The biggest problem is if a feature clearly improves the Monero user experience in some way, but for a reason we don't know about today a hardfork isn't possible, then that feature can't be implemented without the extra field. It's painful from a privacy perspective, but I feel we shouldn't underestimate the danger of backing ourselves into a corner by mistake. Imo the extra field is an insurance policy that acknowledges our fallibility as protocol designers.

@fluffypony
Copy link
Contributor

You don’t need tx_extra for that, you can use the range proofs for data storage and all sorts. If we’re going to go down the road of ossifying our tx format then the current one is woefully unsuitable, with or without tx_extra.

@moneromooo-monero
Copy link
Collaborator

That's not a good argument, since it's relying on extra removal not preventing the thing that was sought to be prevented in the first place.

@ghost
Copy link

ghost commented Jun 20, 2020

you can use the range proofs for data storage and all sorts

Can you explain what you mean or give some reference?

@UkoeHB
Copy link
Contributor

UkoeHB commented Jun 20, 2020

That's not a good argument, since it's relying on extra removal not preventing the thing that was sought to be prevented in the first place.

@moneromooo-monero can you clarify this statement?

@moneromooo-monero
Copy link
Collaborator

"You don’t need tx_extra for [embedding extra data for future use]" implies removing extra will not prevent people putting custom data in a tx, which was the intent of the issue. The comment was used in support of extra removal though, so it relies on the intent of the issue being made moot.

@Gingeropolous
Copy link
Collaborator

I favor removing tx_extra for tx uniformity. A potential hybrid approach that would allow opt-in tx_data is a secondary chain/database that is linked to the main monero chain.

Basically, you have the tx, and then you have a data packet that sticks onto the tx by referencing its tx_hash. Thus, if a node wants to participate in relaying these data packets, they can signal that they offer this service. Otherwise, the node just relays the tx without the data packet. The data packet isn't mined into the chain, instead it exists as a separate database linked to the chain.

Well, this might be tangential.

@SamsungGalaxyPlayer
Copy link
Collaborator

While I really like removing tx_extra for uniformity, I strongly recommend that we take a cautious approach here. We should aggressively solicit feedback from services to make sure they have no intended use for tx_extra. Sadly I am aware of at least one service that plans to use tx_extra in some capacity as a stopgap for Travel Rule compliance until industry tools are available and adopted. To any outsider observer reading this, services should really prefer to use off-chain solutions. However, we may see creative (undesired) use of tx_extra to aid compliance before the industry gets its shit together.

@tevador
Copy link
Contributor Author

tevador commented Jun 23, 2020

I suggest to at least make an announcement that Monero is planning to discontinue the tx_extra field in the near future to discourage new implementations. We can then discuss the details, e.g. if we allow it for coinbase transactions and if we phase out integrated addresses at the same time.

Keeping tx_extra for coinbase txs could alleviate some of the concerns regarding the ability to soft-fork. Future extensions could be placed there by miners similar to how SegWit works in Bitcoin.

@UkoeHB
Copy link
Contributor

UkoeHB commented Jun 23, 2020

and if we phase out integrated addresses at the same time.

@knaccc expressed concern during discussion of #6456 that moving encrypted payment IDs out of the extra field would make them harder to deprecate.

@SamsungGalaxyPlayer
Copy link
Collaborator

It's my recommendation that we announce a plan to phase out tx_extra by late 2021, and solicit feedback like we did for address types.

@Mitchellpkt
Copy link

An arbitrary plaintext data payload in a system whose privacy relies on indistinguishably is like a screen door on a submarine. 😂 ❤️

@Mitchellpkt
Copy link

Hahah, Neptune and I analyzed tx_extra use and found some interesting on-chain data 😆

High-level overview:

  • 350+ dates
  • 80+ email addresses
  • 10+ URLs
  • 100+ variations on "X is the best X"
  • 250+ messages

Examples

Dates

Multiple formats observed, including:

  • Repeating YYYY-MM-DD: 2017-05-22DM2017-05-22DM2017-05-
  • "ID" + YYYYMMDD + tag: ID201904060422492k5oCZ1K71J8ZODB9d
  • YYYYMMDDhhmmss + tag: 20190406042249vxBGF5xa5jqbb3GT1Q

These dates and PIDs are often repeated, probably for convenient transaction linkability.

Email addresses

There are a large number of email addresses, including personal domains, and several widely-known cryptocurrency ecosystem contributors.

URLs

There are a variety of URLs including:

X is the best X

There are boatloads of transactions with variations on "X is the best X", a few examples including:

  • fluffypony is tge best pony ever
  • fluffypony is tha best pony ever
  • fluffypony is the best pony eveB
  • fluffypony is the best pony ever
  • fluffypony isbsýìûr5st pony ewww
  • fluffypony&86(G(e best pony etRû
  • xmrscott is the best Scott

Messages

There are hundreds of messages, ranging from jokes to vulgarity. MANY include PII such as names, handles, transaction amounts, credit card info, and contact information (not included below):

  • LEALANA 5 XMR RCT( û(bí)ì 1C!2S(
  • <*> Joins [#xmrchain] ->Guest1
  • FUCK BINANCE FUCK CHAINALYSIS
  • Mining Payout
  • Here, have some kitt-katt - -
  • 1000000 Monero blocks - XMR4ever
  • ThisthebestpaymntIDwehaveeverhad
  • anycoin040820190441anycoin040820
  • 50X.COM Best Exchange "ç
  • For guns, drugs and prostitutes!
  • RouziLovesPLGuitarAndLSMusic
  • MONERO.RS 100 XMR Giveaway W#1
  • This is a test transaction
  • @@~:good luck in life:~@@
  • DEADINSIDETID4
  • ¡¿¡They are watching you
  • This tx was generated by Coinomi
  • Fuck-your-donations,assholes!
  • trololololipopspaymentidmymoscow
  • Monero is AWSOME!!!
  • FUCK THE SYSTEM
  • ETCheckThisOutHereIsYourFirstXMR
  • EPOL Group 2 #ICSSS2019 Victory!
  • Here'sAnotherMoneroFundTransfer!
  • Sic semper tyrannis!
  • hallohallo eine neue monero tro�
  • Everyone should use Monero!!!!!!
  • SleezyMacMoonster(1800-225-5324)
  • hei dette er meg
  • warm summer buffer zone
  • minexmrcomdevfeeminexmrcomdevfee
  • thanks for everything
  • Test 0.1 XMR to Personal Account
  • Yet another uneventful hardfork
  • thanks a lot for sharing ideas!!
  • 13 tx.s: ASCII_EPOL.html.tar.bz2
  • im the king of monero fuckyouall
  • >>FUCK YOU BYTECOIN SCAM PIGS!<<
  • THANK YOU!
  • #Egö !"#$%&'()0123456
  • Thou shalt not track my Monero!!
  • myfirstmonerodonationtopiratebay
  • This is the end my friend again8
  • forgot to send this a while ago!
  • WE WANT TO USE MONERO TO UPGRADE
  • Istanbul 1st monero meetup
  • To the Moonero!
  • I\'d like to eat some bananasyoy
  • ADD-BITCOIN-AND-MONERO-PAYMENTS
  • Electroneum Wallet----Payment ID
  • Drugs@FBI-Catch-me-if-you-can
  • LOL@Chainalysis@LOL
  • thisismypaymentidyoufucker!
  • DONATION FOR AN AMAZING SERVICE!
  • We are the champions, my friends
  • XMR IS ANONYMOUS. TRACK MY COCK!
  • Thanks for the helphavesome beer
  • ICSSS-2019-EUROPOL-GROUP2-FTW!:)
  • WhenIwasachildIspakeasachildIun
  • Hallo Hallo das ist ein test f�r
  • it's been a pleasure trading w/u
  • We need more DOGE smut for ads
  • thanks for the graphs theyrecool
  • monerogenesismining

@TheCharlatan
Copy link
Contributor

This is great! I'm surprised there are not more malicious payloads, which I guess is what <*> Joins [#xmrchain] ->Guest1 tried to achieve, targeted at whatever is indexing the transactions.

@tevador
Copy link
Contributor Author

tevador commented Dec 7, 2020

Any progress on this issue? Is there consensus to put this on the roadmap for a future protocol update?

@Burnsedia
Copy link

@trymeouteh we could use fixed compression with a default message/data in the tx_extra, so all blocks have the same size, and all wallets in the ring signature are the same. there are non-NFT uses for having the ability to store data in any blockchain, but if tx_extra is kept, we need to anonymize it as much as possible.

@hyc
Copy link
Collaborator

hyc commented Mar 22, 2023

You'd have to use a fairly primitive compressor, like Huffman Squeeze. LZW-based compressors don't just fail on uncompressible data, they make it larger. The usual approach taken by standard compression programs is to pass the original data through unmodified when this happens, but we have to guarantee that the unmodified data is never passed through.

@Burnsedia
Copy link

Burnsedia commented Mar 22, 2023

Ok, my bad. Maybe instead of on-chain storage, use an RPC with something like Gunjs to store data. Use the transition information from the monero rpc to generate the seed data in gunjs and key-value pair.

@kayabaNerve
Copy link

This does not open the door for "Tracking Organizations" to flood Monero to increase traceability. That is a distinctly possible issue due to the decoy model.

I'd encourage community members without a clear understanding of the actual technicalities to withhold their commentary.

@Burnsedia
Copy link

Burnsedia commented Mar 23, 2023

I am just throwing out ideas; I am new to blockchain development. If they are dumb, please tell me why.

@kayabaNerve
Copy link

I was responding to dylanthall, who treated the transaction flooding attack present under the decoy model as being premised on TX extra when it isn't. Any bad actor can flood Monero with outputs in order to achieve a large amount of decoys, and Monero has prior experienced such attacks. They did not rely on TX extra. Removing TX extra would actually increase the amount of low quality decoys by non-malicious actors under practical use cases.

If you, or anyone else, wants to learn more, I'd encourage reading through the entire issue and potentially asking around the IRC channels.

For your (Burnsedia) commentary specifically, I'd point out your idea mentions compression yet doesn't actually use compression AFAICT. It suggests a fixed-size TX extra, which isn't achievable with compression, yet with a commitment or with padding.

if tx_extra is kept, we need to anonymize it as much as possible.

Is a generic comment prior stated many times throughout this very long issue, without a new contribution. While I don't want to be too harsh on community members trying to contribute, I'm personally frustrated by some comments making this very long issue longer (which is why I haven't replied to all of them, as now I'm making the issue longer. I only do so here per request).

@LocalMonero
Copy link
Contributor

LocalMonero commented Mar 23, 2023

Removing TX extra would actually increase the amount of low quality decoys by non-malicious actors under practical use cases.

@kayabaNerve is it my correct understanding that you can steg into CLSAG with essentially no network privacy implications, as CLSAG steg only reveals the decoys to the receiver instead of any observer like with output steg?

@kayabaNerve
Copy link

kayabaNerve commented Mar 24, 2023

It depends on what exactly you do. If you write raw data in there, it'll still damage network privacy. It also reveals decoys to the receiver, which I personally don't consider acceptable.

Output steganography would also only reveal its data to the intended sender if encrypted, and appear normal to everyone else, so

instead of any observer like with output steg

is incorrect.

@LocalMonero
Copy link
Contributor

LocalMonero commented Mar 24, 2023

Right, the question was operating under the assumption of stegging encrypted data in CLSAG vs encrypted data in outputs and the impacts on decoys. Meaning that assuming you're stegging encrypted data into CLSAG you're affecting network privacy to a lesser extent than if you stegged into outputs.

Though, in the case of Serai specifically it doesn't really matter as you're revealing the encryption keys anyway, from what I understand.

@kayabaNerve
Copy link

Encrypted data in CLSAG/outputs is indistinguishable to outside observers. In CLSAG, the receiver learn the decoys. In outputs, there's no privacy loss of the sender, though there are more outputs 'contributing' to the decoy set. The outputs only damage network privacy if they're known to be meaningless (such as if the sender publishes their recipient). There are also network privacy implication if the receiver of a message in CLSAG publishes the message, as it harms the tree Monero transactions form.

@kkarhan
Copy link

kkarhan commented Mar 31, 2023

TLDR:
OPINION: tx_extra should be removed completely.


Reasoning:

As someone interested in Monero and considering to mine it, the tx_extra field is a legal liability amidst the amount of documented abuse of said function.

Notwithstanding the technological disadvantages like the fact that Ordinals as a means to do NFTs will baloon the block- and chainsize and harm legitimate users wanting to use Monero as actual online payment this can and will be used as a nail in the coffin for payment providers to reject it's use, cuz the last thing any bona-fide business [i.e. in Germany] wants to be associated with is "distribution of CSAM" which is a felony.

This is why Ahmia only releases hashes of the onion sites they blacklist which are almost exclusively CSAM so other search engines can do the same or at the very least compare their index and decide what they want to blacklist.

I think that Monero's prime goal was to be an actually fungible currency and a better option than PayPal.

Considering that @fluffypony went out of the project based off solely on random accusations was a clear sign that like OpenBSD, Monero would not compromise it's security at all and would rather go out of it's way to shed staff/personnel/contributors/maintainers and features than lessen it's security.

As a matter of fact tx_extra data (or the absense of it) not only can but will likely be weaponized against users to the point that it'll harm everyone's privacy.

So as much as I hate it, removing it seems to be the only feasible option to do so.
After all, Monero isn't intended or designed to be used as a Messenger or something else but a payment & transaction system.

If anyone wanted to communicate something like "This Transaction is a Payment to B for Purchase X from Customer A" that's not part of the payment system and not only can be handled sufficiently by other communications [i.e. Accounting System] but in many places (again thanks to German Bureaucracy) must be handled by a seperate system as per law, thus tx_extra already falls flat in terms of bona-fide use-cases.

At the end of the day it would be far easier and simpler to just copy & paste the txid and block_id for the completed transaction as proof of payment and sent it to the seller by eMail or Messenger or whatever.

After all, Monero can be otherwise operated completely legal and compliant with accounting regulations using the ViewKey. It's not perfect and it should also show outgoing transactions and has severe security and privacy drawbacks but that's outside the scope of this, since this feature isn't bad per-se and has valid use cases, is opt-in per wallet.

Unlike choosing to use a "lite wallet", the use or rather abuse tx_extra isn't something the reciever can actually deny or prevent, copying the whole TornadoCash prank issues and not only incentivize bloatware like MetaMask that should not exist to begin with but will inevitably get us NFT-Malware that exists in the wild already...

I mean there's a reason why there ain't Smart Contracts on Monero:
Because for any "Smart Contract" to work would inevitably need privacy to be weakened and expose at least the wallets and amounts to be interacted with, reducing the privacy for everyone else when Multisig can basically do the same as a private smart contract and is pretty straight-forward.

For those that want to use NFTs [which I don't but that doesn't matter!] there are better and more efficient blockchains like Solana to handle those.

Similar to the clear stance against ASICs by Monero there should also be a clear stance against "Ordinals" / NFTs that are exploiting tx_extra and attacks that tried to distinguish transactions by reducing the ringsize to 0 or allowing for different and/or distinguishable ringsizes, thus making transactions stand out.

After all, if people wanted "scarcity" on a privacy blockchain, they could just use Wownero or opt-in privacy chains like Dash or Zcash instead.

I'll await the decision re: this issue before considering to contribute anything further...


Addendum:

If someone wants to self-d0x their income in Monero, then that's their choice by publishing the ViewingKey...
But Ordinals like NFTs threaten the fungibility of Monero and the privacy of everyone else, thus are non-consensual anti-anonymity exploits that should be regarded with the same severity as past issues and thus fixed accordingly.

We ain't on Ringsize 3 anymore for very good reasons!

@UkoeHB
Copy link
Contributor

UkoeHB commented Mar 31, 2023

@kkarhan The problem you describe can never be resolved by consensus rules. You can always encode at least some data in a transaction using user-defined data fields in ways that cannot be prevented or 'forcibly privatized' using consensus rules.

@bt4599
Copy link

bt4599 commented Apr 1, 2023

@UkoeHB You may be confusing user submitted data with arbitrary data. Fields with a defined purpose can potentially have such a purpose enforced at consensus level since the range of allowed values can be smaller than the range of numerically possible values.
For example, placing arbitrary data in the decoys could be made much more difficult by requiring - and checking at consensus level - that the decoys really are decoys, e.g. that they actually exist on chain, that there are no duplicates in the selected decoys and so on.
Even if some data can still be encoded, the amount can be reduced.

@kayabaNerve
Copy link

and checking at consensus level - that the decoys really are decoys, e.g. that they actually exist on chain, that there are no duplicates in the selected decoys and so on.

These properties are already checked. Monero would have an infinite mint bug if we didn't.

Please don't make me tap the sign: #6668 (comment)

@bt4599
Copy link

bt4599 commented Apr 1, 2023

@kayabaNerve Which is why i said "for example". It was just one of the easiest ways to illustrate the difference between user submitted and arbitrary data. The "amount that could be reduced" was not referring to the specific example.

@UkoeHB
Copy link
Contributor

UkoeHB commented Apr 1, 2023

Fields with a defined purpose can potentially have such a purpose enforced at consensus level since the range of allowed values can be smaller than the range of numerically possible values.

This doesn't solve anything, because there are still bits available for encoding data even if you constrain everything as much as possible. In practice, a large amount of tx output data is semantically unenforcable.

You may be confusing user submitted data with arbitrary data.

This is just an arbitrary distinction with no functional value in terms of security analysis. All unchecked/uncheckable data is arbitrary data. Even parts of a tx that are highly-checked, like signatures, can be brute-forced to encode information.

@Rucknium
Copy link

I analyzed the privacy impact of Mordinal "NFTs" that store data in tx_extra: https://www.reddit.com/r/Monero/comments/12kv5m0/empirical_privacy_impact_of_mordinals_monero_nfts/

@kkarhan
Copy link

kkarhan commented Apr 18, 2023

I analyzed the privacy impact of Mordinal "NFTs" that store data in tx_extra: https://www.reddit.com/r/Monero/comments/12kv5m0/empirical_privacy_impact_of_mordinals_monero_nfts/

Thanks @Rucknium for that deep dive analysis.

Percentage of Monero Transactions that are Coinbases and/or Mordinals
Average Empirical Ringsize per Monero Transaction
Effective Ringsize for the unluckiest 5% of Monero Rings

This CONFIRMS my fears that this not only can but actually decreases the security of Monero:

"[...] attacks that tried to distinguish transactions by reducing the ringsize to 0 or allowing for different and/or distinguishable ringsizes, thus making transactions stand out. [...]"

I don't want to sound alarmist, but this could be the state-sponsored attacks by Chainalysis et. al. who got awarded $625k from the IRS
After all, they don't need to break the chain entirely from one day to the other, but slowly downgrade it's privacy to be useless.

The data suggests that this is partially successful to the point that it undoes the ringsize upgrade for quite a significant chunk of transactions.

Which brings me to the next point:

What we've not considered is the abuseability by regulators!
Imagine if - due to it's widespread use - Regulators and Exchanges give up on discriminating and trying to ban Monero but instead make up arbitrary bs rules like requiring individuals and businesses i.e. to add their Tax-ID to every tx_extra field when they sent something...
Kinda like the ham-fisted approach to cannabis relegalization in Germany being landmined with regulatory bs compared to tobacco and alcohol.

Cuz that would be another "well-meant" but actually cyberfacist & dysthopian law and not be used to enforce taxation of i.e. billionare wankers but go after small coin investors with - compared to Banksters - basically nonexistant wealth.

[Okay, legit businesses would likely have to provide bulk access to their accounting systems and accounts when audited but that would not impact the privacy and security of Monero as a Payment System in General]...

My opinion still stands:
tx_extra should be deprecated as it's a security issue - period!

@Burnsedia
Copy link

Burnsedia commented Apr 27, 2023 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests