Is it possible to 'destroy' a wallet?












5















I have a few wallets (tz1...), but I would like to only use one. Is it possible to delete a wallet? If so, does the blockchain record this action?



Is there actually any benefit for the blockchain for deleting accounts? The number of unique wallets is of course very very high, enough to satisfy any potential demand, so releasing account numbers is unlikely to be of any help. Perhaps, adding information of deletion of wallets to the blockchain might just add redundant information to it, unnecessarily increasing its size.










share|improve this question





























    5















    I have a few wallets (tz1...), but I would like to only use one. Is it possible to delete a wallet? If so, does the blockchain record this action?



    Is there actually any benefit for the blockchain for deleting accounts? The number of unique wallets is of course very very high, enough to satisfy any potential demand, so releasing account numbers is unlikely to be of any help. Perhaps, adding information of deletion of wallets to the blockchain might just add redundant information to it, unnecessarily increasing its size.










    share|improve this question



























      5












      5








      5


      1






      I have a few wallets (tz1...), but I would like to only use one. Is it possible to delete a wallet? If so, does the blockchain record this action?



      Is there actually any benefit for the blockchain for deleting accounts? The number of unique wallets is of course very very high, enough to satisfy any potential demand, so releasing account numbers is unlikely to be of any help. Perhaps, adding information of deletion of wallets to the blockchain might just add redundant information to it, unnecessarily increasing its size.










      share|improve this question
















      I have a few wallets (tz1...), but I would like to only use one. Is it possible to delete a wallet? If so, does the blockchain record this action?



      Is there actually any benefit for the blockchain for deleting accounts? The number of unique wallets is of course very very high, enough to satisfy any potential demand, so releasing account numbers is unlikely to be of any help. Perhaps, adding information of deletion of wallets to the blockchain might just add redundant information to it, unnecessarily increasing its size.







      wallets blockchain






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Feb 28 at 16:52









      double-beep

      165211




      165211










      asked Feb 28 at 9:22









      luchonacholuchonacho

      553217




      553217






















          2 Answers
          2






          active

          oldest

          votes


















          6














          I am talking from memory of the transition from proto 002 to proto 003 so hopefully I got it right.



          If you go on tzscan you will see that there is a counter for addresses



          https://tzscan.io/tz1hAYfexyzPGG6RhZZMpDvAHifubsbb6kgn



          When this counter is not zero it means the address is « alive » which means in practice that it has a non-zero balance and on practical terms it is taking a non-zero space in the blockchain context.



          You can create tons of addresses but as long as they do have 0 balance they do not take any space in the context (and the counter stays at 0). Also if you empty an account there is no longer a storage associated with it and the counter goes back to 0.



          Now in order to put balance into an empty address or to bring back the balance of a non-empty account back to 0 costs a fee (since proto 003 and I believe the amount is 0.257xtz).



          All in all I would say that bring the balance back to 0 is the closest you can get to « destroy » an address since it does no longer consume any space in the blockchain’s context.



          Please note that all of the above applies to implicit addresses (tz...). Originated contracts (KT..) cannot be deleted even with 0 balance (as of proto 003)






          share|improve this answer

































            3














            If there has been any transactions to or from any of these wallets they will be on the chain forever.



            You can "forget" them on your tezos node using:



            tezos-client forget address <name> -f


            The -f (force) option will remove the keys from disk (if present).






            share|improve this answer



















            • 1





              Of course there will be a registry of transactions with the wallet forever (whole point of the blockchain). But is it possible to tell the blockchain a wallet has been destroyed? Is it ever useful?

              – luchonacho
              Feb 28 at 9:31






            • 1





              Not to my knowledge, no.

              – asbjornenge
              Feb 28 at 10:32












            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "698"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            noCode: true, onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftezos.stackexchange.com%2fquestions%2f629%2fis-it-possible-to-destroy-a-wallet%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            6














            I am talking from memory of the transition from proto 002 to proto 003 so hopefully I got it right.



            If you go on tzscan you will see that there is a counter for addresses



            https://tzscan.io/tz1hAYfexyzPGG6RhZZMpDvAHifubsbb6kgn



            When this counter is not zero it means the address is « alive » which means in practice that it has a non-zero balance and on practical terms it is taking a non-zero space in the blockchain context.



            You can create tons of addresses but as long as they do have 0 balance they do not take any space in the context (and the counter stays at 0). Also if you empty an account there is no longer a storage associated with it and the counter goes back to 0.



            Now in order to put balance into an empty address or to bring back the balance of a non-empty account back to 0 costs a fee (since proto 003 and I believe the amount is 0.257xtz).



            All in all I would say that bring the balance back to 0 is the closest you can get to « destroy » an address since it does no longer consume any space in the blockchain’s context.



            Please note that all of the above applies to implicit addresses (tz...). Originated contracts (KT..) cannot be deleted even with 0 balance (as of proto 003)






            share|improve this answer






























              6














              I am talking from memory of the transition from proto 002 to proto 003 so hopefully I got it right.



              If you go on tzscan you will see that there is a counter for addresses



              https://tzscan.io/tz1hAYfexyzPGG6RhZZMpDvAHifubsbb6kgn



              When this counter is not zero it means the address is « alive » which means in practice that it has a non-zero balance and on practical terms it is taking a non-zero space in the blockchain context.



              You can create tons of addresses but as long as they do have 0 balance they do not take any space in the context (and the counter stays at 0). Also if you empty an account there is no longer a storage associated with it and the counter goes back to 0.



              Now in order to put balance into an empty address or to bring back the balance of a non-empty account back to 0 costs a fee (since proto 003 and I believe the amount is 0.257xtz).



              All in all I would say that bring the balance back to 0 is the closest you can get to « destroy » an address since it does no longer consume any space in the blockchain’s context.



              Please note that all of the above applies to implicit addresses (tz...). Originated contracts (KT..) cannot be deleted even with 0 balance (as of proto 003)






              share|improve this answer




























                6












                6








                6







                I am talking from memory of the transition from proto 002 to proto 003 so hopefully I got it right.



                If you go on tzscan you will see that there is a counter for addresses



                https://tzscan.io/tz1hAYfexyzPGG6RhZZMpDvAHifubsbb6kgn



                When this counter is not zero it means the address is « alive » which means in practice that it has a non-zero balance and on practical terms it is taking a non-zero space in the blockchain context.



                You can create tons of addresses but as long as they do have 0 balance they do not take any space in the context (and the counter stays at 0). Also if you empty an account there is no longer a storage associated with it and the counter goes back to 0.



                Now in order to put balance into an empty address or to bring back the balance of a non-empty account back to 0 costs a fee (since proto 003 and I believe the amount is 0.257xtz).



                All in all I would say that bring the balance back to 0 is the closest you can get to « destroy » an address since it does no longer consume any space in the blockchain’s context.



                Please note that all of the above applies to implicit addresses (tz...). Originated contracts (KT..) cannot be deleted even with 0 balance (as of proto 003)






                share|improve this answer















                I am talking from memory of the transition from proto 002 to proto 003 so hopefully I got it right.



                If you go on tzscan you will see that there is a counter for addresses



                https://tzscan.io/tz1hAYfexyzPGG6RhZZMpDvAHifubsbb6kgn



                When this counter is not zero it means the address is « alive » which means in practice that it has a non-zero balance and on practical terms it is taking a non-zero space in the blockchain context.



                You can create tons of addresses but as long as they do have 0 balance they do not take any space in the context (and the counter stays at 0). Also if you empty an account there is no longer a storage associated with it and the counter goes back to 0.



                Now in order to put balance into an empty address or to bring back the balance of a non-empty account back to 0 costs a fee (since proto 003 and I believe the amount is 0.257xtz).



                All in all I would say that bring the balance back to 0 is the closest you can get to « destroy » an address since it does no longer consume any space in the blockchain’s context.



                Please note that all of the above applies to implicit addresses (tz...). Originated contracts (KT..) cannot be deleted even with 0 balance (as of proto 003)







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Mar 1 at 3:27

























                answered Feb 28 at 11:51









                EzyEzy

                3,002633




                3,002633























                    3














                    If there has been any transactions to or from any of these wallets they will be on the chain forever.



                    You can "forget" them on your tezos node using:



                    tezos-client forget address <name> -f


                    The -f (force) option will remove the keys from disk (if present).






                    share|improve this answer



















                    • 1





                      Of course there will be a registry of transactions with the wallet forever (whole point of the blockchain). But is it possible to tell the blockchain a wallet has been destroyed? Is it ever useful?

                      – luchonacho
                      Feb 28 at 9:31






                    • 1





                      Not to my knowledge, no.

                      – asbjornenge
                      Feb 28 at 10:32
















                    3














                    If there has been any transactions to or from any of these wallets they will be on the chain forever.



                    You can "forget" them on your tezos node using:



                    tezos-client forget address <name> -f


                    The -f (force) option will remove the keys from disk (if present).






                    share|improve this answer



















                    • 1





                      Of course there will be a registry of transactions with the wallet forever (whole point of the blockchain). But is it possible to tell the blockchain a wallet has been destroyed? Is it ever useful?

                      – luchonacho
                      Feb 28 at 9:31






                    • 1





                      Not to my knowledge, no.

                      – asbjornenge
                      Feb 28 at 10:32














                    3












                    3








                    3







                    If there has been any transactions to or from any of these wallets they will be on the chain forever.



                    You can "forget" them on your tezos node using:



                    tezos-client forget address <name> -f


                    The -f (force) option will remove the keys from disk (if present).






                    share|improve this answer













                    If there has been any transactions to or from any of these wallets they will be on the chain forever.



                    You can "forget" them on your tezos node using:



                    tezos-client forget address <name> -f


                    The -f (force) option will remove the keys from disk (if present).







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Feb 28 at 9:29









                    asbjornengeasbjornenge

                    1,122214




                    1,122214








                    • 1





                      Of course there will be a registry of transactions with the wallet forever (whole point of the blockchain). But is it possible to tell the blockchain a wallet has been destroyed? Is it ever useful?

                      – luchonacho
                      Feb 28 at 9:31






                    • 1





                      Not to my knowledge, no.

                      – asbjornenge
                      Feb 28 at 10:32














                    • 1





                      Of course there will be a registry of transactions with the wallet forever (whole point of the blockchain). But is it possible to tell the blockchain a wallet has been destroyed? Is it ever useful?

                      – luchonacho
                      Feb 28 at 9:31






                    • 1





                      Not to my knowledge, no.

                      – asbjornenge
                      Feb 28 at 10:32








                    1




                    1





                    Of course there will be a registry of transactions with the wallet forever (whole point of the blockchain). But is it possible to tell the blockchain a wallet has been destroyed? Is it ever useful?

                    – luchonacho
                    Feb 28 at 9:31





                    Of course there will be a registry of transactions with the wallet forever (whole point of the blockchain). But is it possible to tell the blockchain a wallet has been destroyed? Is it ever useful?

                    – luchonacho
                    Feb 28 at 9:31




                    1




                    1





                    Not to my knowledge, no.

                    – asbjornenge
                    Feb 28 at 10:32





                    Not to my knowledge, no.

                    – asbjornenge
                    Feb 28 at 10:32


















                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Tezos Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftezos.stackexchange.com%2fquestions%2f629%2fis-it-possible-to-destroy-a-wallet%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    How do I know what Microsoft account the skydrive app is syncing to?

                    When does type information flow backwards in C++?

                    Grease: Live!