├── .gitignore ├── README.md ├── assets ├── deploy-to-ethereum.png └── deploy-to-optimistic-ethereum.png ├── contracts ├── ERC20.sol └── IERC20.sol ├── package.json ├── test └── erc20.spec.js ├── truffle-config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/Truffle-ERC20-Example/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/Truffle-ERC20-Example/HEAD/README.md -------------------------------------------------------------------------------- /assets/deploy-to-ethereum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/Truffle-ERC20-Example/HEAD/assets/deploy-to-ethereum.png -------------------------------------------------------------------------------- /assets/deploy-to-optimistic-ethereum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/Truffle-ERC20-Example/HEAD/assets/deploy-to-optimistic-ethereum.png -------------------------------------------------------------------------------- /contracts/ERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/Truffle-ERC20-Example/HEAD/contracts/ERC20.sol -------------------------------------------------------------------------------- /contracts/IERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/Truffle-ERC20-Example/HEAD/contracts/IERC20.sol -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/Truffle-ERC20-Example/HEAD/package.json -------------------------------------------------------------------------------- /test/erc20.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/Truffle-ERC20-Example/HEAD/test/erc20.spec.js -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/Truffle-ERC20-Example/HEAD/truffle-config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/Truffle-ERC20-Example/HEAD/yarn.lock --------------------------------------------------------------------------------