-
Notifications
You must be signed in to change notification settings - Fork 101
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
[AIP-45][Discussion] Safe Burning of User-owned Objects #232
Comments
@davidiw does this break supply tracking for |
No, it shouldn't. So the reason why this is considered "safe burning" is that no assets are actually deleted or lost. An admin of a coin type, could reclaim "burned" coins. In effect, this is basically like moving the data or asset to an account that doesn't exist. |
@davidiw Got it, thank you for the clarification. Would a more appropriate term then be "rejection", "quarantine", or similar? Typically "burn" is associated with destruction, rather than just moving to an offsite storage facility |
Hmm... in Ethereum burn is just a transfer to a specific address. |
The AIP says:
Is it possible to avoid reserving an ad-hoc address for this? If future AIPs will similarly require reserving an address (for some purpose that serves them), it could become tricky to keep track of these. For example, it might complicate indexer logic, etc. |
@alinush I favor the approach of not reserving an ad-hoc address, in lieu of an approach that truly removes the objects from existence |
The AIP reviews 3 approaches. The only truly viable pure on-chain solution is a burn address. Burn addresses are pretty common in other Web3 ecosystems. Yes, it is sad to have a reserved address, but we already have 11 (0x0 -- 0xa). I'd be happy to discuss more rigorous solutions such as allowing deletes directly but without or trait-based dispatch, I cannot conceive a pattern that would actually allow an owner to safely reclaim storage. If you have a counter proposal, happy to discuss. |
e.g. allowing dropping of structs without the I'd guess this would just be a VM-level exception that only gets invoked in response to a special txn type |
AIP-45 Discussion
Summary
As a byproduct of the objects, users can acquired undesirable and unmovable content associated with their account address on Aptos. Currently, most applications on Aptos will typically share all Digital Assets and Fungible Assets associated with an account both to the account holder and those viewing the account. Because objects can be rendered undeletable, also known as soul bound, a user may be victim to undesired airdrops. To mitigate this issue, we propose leveraging a mechanism that allows users to unilaterally transfer any owned-object to a global burn address.
Goals
As a result of this AIP, users will be empowered to manage the data associated with their accounts on Aptos by removing direct linkage from undesired data to their account by moving its ownership to a safe burn address. In order to do this, all objects will have the ability to be transferred to the burn address.
If we delay enacting this, users will need to wait until their applications adopt allow-list frameworks to render content.
Out of Scope
This is only a mitigation, a victim cannot opt-out of receiving unsolicited content nor automatically remove this content. Burning also does not result in the burner receiving a refund, but the cost of doing so is expected to be negligible, that is, the cost of transferring a digital
Read more about this AIP here
The text was updated successfully, but these errors were encountered: