Web3js – Are There Ropsten ERC20 Testnet Tokens?

erc-20ropstentestnetsweb3js

I am trying to write an application using web3.js and I want to integrate some ERC20 functionality. But rather than muddy up the mainnet, I'd like to try things on the Testnet first. I see that https://ropsten.etherscan.io/address/0x722dd3f80bac40c951b51bdd28dd19d435762180#tokentxns is a standard Testnet token. Is there anyway for me to get my hands on some?

Or perhaps another ERC20 compliant testnet token?

Best Answer

In that contract https://ropsten.etherscan.io/address/0x722dd3f80bac40c951b51bdd28dd19d435762180#code you need to call the function showMeTheMoney with your address and amount of tokens. It should deposit that amount in your address.

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