Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/peter-evans/erc20-token-wallet
A simple Ethereum blockchain ERC20 token wallet interface
https://github.com/peter-evans/erc20-token-wallet
blockchain erc20 erc20-tokens ethereum ethereum-wallet metamask smart-contracts
Last synced: 9 days ago
JSON representation
A simple Ethereum blockchain ERC20 token wallet interface
- Host: GitHub
- URL: https://github.com/peter-evans/erc20-token-wallet
- Owner: peter-evans
- License: mit
- Created: 2018-04-11T00:15:41.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-07-31T08:31:26.000Z (over 6 years ago)
- Last Synced: 2024-11-02T12:42:28.816Z (16 days ago)
- Topics: blockchain, erc20, erc20-tokens, ethereum, ethereum-wallet, metamask, smart-contracts
- Language: JavaScript
- Homepage:
- Size: 232 KB
- Stars: 5
- Watchers: 4
- Forks: 14
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# erc20-token-wallet
A simple wallet interface providing transfer functionality for Ethereum blockchain ERC20 smart contracts.## Usage
The wallet interface is hosted via GitHub Pages at [https://peter-evans.github.io/erc20-token-wallet](https://peter-evans.github.io/erc20-token-wallet/)
A compatible wallet provider is required, such as MetaMask.
[![Download MetaMask](/images/download-metamask-dark.png?raw=true)](https://metamask.io/)
The wallet connects to the [ERC-20 Test Standard Token (TST)](https://github.com/uzyn/ERC20-TST) smart contract for testing purposes. The smart contract the wallet interfaces with can be changed by editing the following lines in [index.js](index.js).
```javascript
const abi = JSON.parse(
'[...]'
);
const decimals = 18;
const tokenSymbol = "TST";
contractInstance = web3.eth
.contract(abi)
.at("0x3efd578b271d034a69499e4a2d933c631d44b9ad");
```## Test Standard Token (TST)
TST tokens can be created for free by following the instructions [here](https://github.com/uzyn/ERC20-TST).
## License
MIT License - see the [LICENSE](LICENSE) file for details