[Ethereum] How to i connect the private blockchain network with public ERC20 token

private-blockchaintokens

I have setted up a private blockchain network which is running in my server. I am ok with the process of creating smart contracts. We have to create a token that can be available in exchanges.

Question 1:
Can i connect with main network token using my private blockchain network?

Question 2:
How can i manage the token's transaction process with my private blockchain network?

Best Answer

  • Question 1 : Can i connect with main network token using my private blockchain network?

    No. Currently, different chains are not able to interconnect directly. You would need a middleware to handle that (like a nodeJS server with web3js).

  • Question 2: How can i manage the token's transaction process with my private blockchain network?

I don't really understand what you mean. Transaction are handled by the chain itself. But from my point of view, if people can buy tokens on your PRIVATE CHAIN , you will need to assign them an address. There are several javascript librairies that can do that. You would also need a user interface to show the balance tu the user.

Note: ICO (are you an other scam? Please don't tell me you have a white paper...) are not very "good" on private chain, because the token is worth nothing and not tradable with token exchanges. If you really want do build a PUBLIC token, just do it on main net.

Related Topic