Tokens

ERC20 Ropsten - 我如何查看代幣餘額?

  • July 1, 2018

我已經向 Ropsten 測試網路發布了眾籌合約,它位於此處:https ://ropsten.etherscan.io/address/0x5b15b8f8238b9ec9e9c50e9f9bfcee6073349a96

我一直在努力使用 ABI 編碼的建構子參數,因此我將初始值直接硬編碼到程式碼中 - 你可以看到Contract Source Code Verified

我已經將0.01535測試 ETH 發送到合約地址*(我的時間是 15:35,我想跟踪)*,現在我希望看到代幣被分發。

在此處輸入圖像描述

我將令牌地址放入https://ropsten.etherscan.io/token-search並:

Sorry! We were unable to locate any valid Token Transfer Events for Contract 0x9c7214181b38c6421447b685dfceb7179574d155. If you are sure this is a contract that confirms to the ERC20 Token standard then please try again once a valid transfer has been made

Token Attributes Found: 
totalSupply = 15350000000000000000
name = {not detected} 
symbol = {not detected} 
decimals = {not detected}

快速瀏覽了 ERC20 標準以及需要哪些方法:https ://theethereum.wiki/w/index.php/ERC20_Token_Standard

我的程式碼基於https://blog.zeppelin.solutions/how-to-create-token-and-initial-coin-offering-contracts-using-truffle-openzeppelin-1b7a5dae99b6所以我想這些方法已經實現。

出於某種原因,令牌搜尋未檢測到 ERC20 - 我該怎麼做才能使其工作?


**編輯/更新:**在這里或那裡刮一點犛牛,自行車脫落 - 我讓你知道我在這裡學習並且我正在盡我所能。

如果您確定這是一份符合 ERC20 代幣標準的合約,請在進行有效轉賬後重試

我確定它是 ERC20 代幣。將其添加到 metamask 和 MEW,兩者都顯示出平衡。

在此處輸入圖像描述

在此處輸入圖像描述

一位朋友建議我與合約進行互動並進行代幣轉移,這實際上是有道理的:“請在進行有效轉移後重試”

將私鑰導入乙太坊錢包:如何將普通私鑰導入 geth 或 Mist?

geth account import Desktop/priv.txt WARN [09-12|02:24:53] No etherbase set and no accounts found as default Your new account is locked with a password. Please give a password. Do not forget this password. Passphrase: Repeat passphrase: Address: {426cdad20cbd33ea0bf0338c47239b9778a61fe2}

我確實看到了該帳戶: 在此處輸入圖像描述

我想我可能想做的是從乙太坊錢包從頭開始部署合約,然後進行代幣轉移,然後看看它是否出現在 Etherscan 上。

回答我自己的問題。

就我而言 - 在部署契約時,同時部署了兩個契約。

Crowdsale契約和Token契約。你猜怎麼了?對於代幣跟踪器,我將眾籌合約…

我不好意思承認我想做的事,現在請允許我被原諒。

您可以在 etherscan 或其他平台上查看您的代幣。例如,您還可以在此處看到代幣的目前價值。

引用自:https://ethereum.stackexchange.com/questions/26102