How to keep wallet address of an ERC20 token holder private?












0















This is the interface that is required for a token to be an ERC20 token



contract ERC20Interface {
function totalSupply() public constant returns (uint);
function balanceOf(address tokenOwner) public constant returns (uint balance);
function allowance(address tokenOwner, address spender) public constant returns (uint remaining);
function transfer(address to, uint tokens) public returns (bool success);
function approve(address spender, uint tokens) public returns (bool success);
function transferFrom(address from, address to, uint tokens) public returns (bool success);

event Transfer(address indexed from, address indexed to, uint tokens);
event Approval(address indexed tokenOwner, address indexed spender, uint tokens);
}


I want to keep private the address of who owns my token. So I deleted the Transfer event and the Approval event. I also made the balanceOf function private.



Is there still some way for a public person to find out who owns one of my tokens? Also is there some way for a public person to know when a trade has taken place?










share|improve this question


















  • 1





    This is the keyword for you research on: zk snarks.

    – Zulhilmi Zainudin
    Nov 13 '18 at 6:07
















0















This is the interface that is required for a token to be an ERC20 token



contract ERC20Interface {
function totalSupply() public constant returns (uint);
function balanceOf(address tokenOwner) public constant returns (uint balance);
function allowance(address tokenOwner, address spender) public constant returns (uint remaining);
function transfer(address to, uint tokens) public returns (bool success);
function approve(address spender, uint tokens) public returns (bool success);
function transferFrom(address from, address to, uint tokens) public returns (bool success);

event Transfer(address indexed from, address indexed to, uint tokens);
event Approval(address indexed tokenOwner, address indexed spender, uint tokens);
}


I want to keep private the address of who owns my token. So I deleted the Transfer event and the Approval event. I also made the balanceOf function private.



Is there still some way for a public person to find out who owns one of my tokens? Also is there some way for a public person to know when a trade has taken place?










share|improve this question


















  • 1





    This is the keyword for you research on: zk snarks.

    – Zulhilmi Zainudin
    Nov 13 '18 at 6:07














0












0








0








This is the interface that is required for a token to be an ERC20 token



contract ERC20Interface {
function totalSupply() public constant returns (uint);
function balanceOf(address tokenOwner) public constant returns (uint balance);
function allowance(address tokenOwner, address spender) public constant returns (uint remaining);
function transfer(address to, uint tokens) public returns (bool success);
function approve(address spender, uint tokens) public returns (bool success);
function transferFrom(address from, address to, uint tokens) public returns (bool success);

event Transfer(address indexed from, address indexed to, uint tokens);
event Approval(address indexed tokenOwner, address indexed spender, uint tokens);
}


I want to keep private the address of who owns my token. So I deleted the Transfer event and the Approval event. I also made the balanceOf function private.



Is there still some way for a public person to find out who owns one of my tokens? Also is there some way for a public person to know when a trade has taken place?










share|improve this question














This is the interface that is required for a token to be an ERC20 token



contract ERC20Interface {
function totalSupply() public constant returns (uint);
function balanceOf(address tokenOwner) public constant returns (uint balance);
function allowance(address tokenOwner, address spender) public constant returns (uint remaining);
function transfer(address to, uint tokens) public returns (bool success);
function approve(address spender, uint tokens) public returns (bool success);
function transferFrom(address from, address to, uint tokens) public returns (bool success);

event Transfer(address indexed from, address indexed to, uint tokens);
event Approval(address indexed tokenOwner, address indexed spender, uint tokens);
}


I want to keep private the address of who owns my token. So I deleted the Transfer event and the Approval event. I also made the balanceOf function private.



Is there still some way for a public person to find out who owns one of my tokens? Also is there some way for a public person to know when a trade has taken place?







token tokenize ethereum erc20






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 13 '18 at 0:29









Test1 Test2Test1 Test2

706




706








  • 1





    This is the keyword for you research on: zk snarks.

    – Zulhilmi Zainudin
    Nov 13 '18 at 6:07














  • 1





    This is the keyword for you research on: zk snarks.

    – Zulhilmi Zainudin
    Nov 13 '18 at 6:07








1




1





This is the keyword for you research on: zk snarks.

– Zulhilmi Zainudin
Nov 13 '18 at 6:07





This is the keyword for you research on: zk snarks.

– Zulhilmi Zainudin
Nov 13 '18 at 6:07












2 Answers
2






active

oldest

votes


















0














Yes, one of the major features of Bitcoin and Ethereum are that they are public. When anyone uses your smart contract, all their actions are recorded, necessarily and by design, in the blockchain.



See this tx which called a smart contract method. Notice how I can see who sent what to whom, what function was called, and with what parameters.






share|improve this answer































    0














    Is it private?



    No




    Is there still some way for a public person to find out who owns one of my tokens? Also is there some way for a public person to know when a trade has taken place?




    The storage of the contract can be inspected, and the transaction data can be inspected. This data is necessarily public. The best you can do is make it harder for your median user to find this information (although the people who know what they're doing could dig it out and then publish it).



    Is it an ERC20 token?



    No




    This is the interface that is required for a token to be an ERC20 token... I deleted the Transfer event and the Approval event. I also made the balanceOf function private.




    Note that deleting those things makes it not an ERC20 token anymore. Those are required in the ERC20 spec.



    What now?



    Transactions that are private on a public blockchain is an ongoing area of research. If you really want to implement this, it will take diving into the current research in the space, getting familiar with things like ZK-SNARKS and alternatives.






    share|improve this answer























      Your Answer






      StackExchange.ifUsing("editor", function () {
      StackExchange.using("externalEditor", function () {
      StackExchange.using("snippets", function () {
      StackExchange.snippets.init();
      });
      });
      }, "code-snippets");

      StackExchange.ready(function() {
      var channelOptions = {
      tags: "".split(" "),
      id: "1"
      };
      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: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      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
      },
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      });


      }
      });














      draft saved

      draft discarded


















      StackExchange.ready(
      function () {
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53272076%2fhow-to-keep-wallet-address-of-an-erc20-token-holder-private%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









      0














      Yes, one of the major features of Bitcoin and Ethereum are that they are public. When anyone uses your smart contract, all their actions are recorded, necessarily and by design, in the blockchain.



      See this tx which called a smart contract method. Notice how I can see who sent what to whom, what function was called, and with what parameters.






      share|improve this answer




























        0














        Yes, one of the major features of Bitcoin and Ethereum are that they are public. When anyone uses your smart contract, all their actions are recorded, necessarily and by design, in the blockchain.



        See this tx which called a smart contract method. Notice how I can see who sent what to whom, what function was called, and with what parameters.






        share|improve this answer


























          0












          0








          0







          Yes, one of the major features of Bitcoin and Ethereum are that they are public. When anyone uses your smart contract, all their actions are recorded, necessarily and by design, in the blockchain.



          See this tx which called a smart contract method. Notice how I can see who sent what to whom, what function was called, and with what parameters.






          share|improve this answer













          Yes, one of the major features of Bitcoin and Ethereum are that they are public. When anyone uses your smart contract, all their actions are recorded, necessarily and by design, in the blockchain.



          See this tx which called a smart contract method. Notice how I can see who sent what to whom, what function was called, and with what parameters.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 13 '18 at 1:15









          Tyler ZellerTyler Zeller

          1045




          1045

























              0














              Is it private?



              No




              Is there still some way for a public person to find out who owns one of my tokens? Also is there some way for a public person to know when a trade has taken place?




              The storage of the contract can be inspected, and the transaction data can be inspected. This data is necessarily public. The best you can do is make it harder for your median user to find this information (although the people who know what they're doing could dig it out and then publish it).



              Is it an ERC20 token?



              No




              This is the interface that is required for a token to be an ERC20 token... I deleted the Transfer event and the Approval event. I also made the balanceOf function private.




              Note that deleting those things makes it not an ERC20 token anymore. Those are required in the ERC20 spec.



              What now?



              Transactions that are private on a public blockchain is an ongoing area of research. If you really want to implement this, it will take diving into the current research in the space, getting familiar with things like ZK-SNARKS and alternatives.






              share|improve this answer




























                0














                Is it private?



                No




                Is there still some way for a public person to find out who owns one of my tokens? Also is there some way for a public person to know when a trade has taken place?




                The storage of the contract can be inspected, and the transaction data can be inspected. This data is necessarily public. The best you can do is make it harder for your median user to find this information (although the people who know what they're doing could dig it out and then publish it).



                Is it an ERC20 token?



                No




                This is the interface that is required for a token to be an ERC20 token... I deleted the Transfer event and the Approval event. I also made the balanceOf function private.




                Note that deleting those things makes it not an ERC20 token anymore. Those are required in the ERC20 spec.



                What now?



                Transactions that are private on a public blockchain is an ongoing area of research. If you really want to implement this, it will take diving into the current research in the space, getting familiar with things like ZK-SNARKS and alternatives.






                share|improve this answer


























                  0












                  0








                  0







                  Is it private?



                  No




                  Is there still some way for a public person to find out who owns one of my tokens? Also is there some way for a public person to know when a trade has taken place?




                  The storage of the contract can be inspected, and the transaction data can be inspected. This data is necessarily public. The best you can do is make it harder for your median user to find this information (although the people who know what they're doing could dig it out and then publish it).



                  Is it an ERC20 token?



                  No




                  This is the interface that is required for a token to be an ERC20 token... I deleted the Transfer event and the Approval event. I also made the balanceOf function private.




                  Note that deleting those things makes it not an ERC20 token anymore. Those are required in the ERC20 spec.



                  What now?



                  Transactions that are private on a public blockchain is an ongoing area of research. If you really want to implement this, it will take diving into the current research in the space, getting familiar with things like ZK-SNARKS and alternatives.






                  share|improve this answer













                  Is it private?



                  No




                  Is there still some way for a public person to find out who owns one of my tokens? Also is there some way for a public person to know when a trade has taken place?




                  The storage of the contract can be inspected, and the transaction data can be inspected. This data is necessarily public. The best you can do is make it harder for your median user to find this information (although the people who know what they're doing could dig it out and then publish it).



                  Is it an ERC20 token?



                  No




                  This is the interface that is required for a token to be an ERC20 token... I deleted the Transfer event and the Approval event. I also made the balanceOf function private.




                  Note that deleting those things makes it not an ERC20 token anymore. Those are required in the ERC20 spec.



                  What now?



                  Transactions that are private on a public blockchain is an ongoing area of research. If you really want to implement this, it will take diving into the current research in the space, getting familiar with things like ZK-SNARKS and alternatives.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 13 '18 at 22:21









                  carvercarver

                  938215




                  938215






























                      draft saved

                      draft discarded




















































                      Thanks for contributing an answer to Stack Overflow!


                      • 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%2fstackoverflow.com%2fquestions%2f53272076%2fhow-to-keep-wallet-address-of-an-erc20-token-holder-private%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

                      Florida Star v. B. J. F.

                      Error while running script in elastic search , gateway timeout

                      Adding quotations to stringified JSON object values