Web3js

是否有 ropsten ERC20 測試網代幣?

  • October 15, 2020

我正在嘗試編寫一個應用程序,web3.js並且我想集成一些 ERC20 功能。但我不想弄亂主網,我想先在測試網上嘗試一下。我看到https://ropsten.etherscan.io/address/0x722dd3f80bac40c951b51bdd28dd19d435762180#tokentxns是標準的測試網令牌。無論如何,我可以得到一些嗎?

或者可能是另一個符合 ERC20 標準的測試網令牌?

在該合約https://ropsten.etherscan.io/address/0x722dd3f80bac40c951b51bdd28dd19d435762180#code中,您需要showMeTheMoney使用您的地址和代幣數量呼叫該函式。它應該將該金額存入您的地址。

function showMeTheMoney(address _to, uint256 _value) {
   totalSupply += _value;
   balances[_to] += _value;
   Transfer(0, _to, _value);
}

我剛剛發現 Etherscan 有一個名為 Write Contract 的 beta 功能選項卡,它允許使用 Metamask 直接與 TST 智能合約互動。

Etherscan 的寫合約功能的 Beta 版

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