The frontend website HTML, JavaScript and CSS for ethers.io.
The JavaScript detects it's domain and selects its Ethereum network:
- ropsten.ethers.io - The Ropsten test network
- rinkeby.ethers.io - The Rinkeby test network
- kovan.ethers.io - The Kovan test network
- ethers.io - The Homestead live network
The /dist/index.html
file contains the entire application, flattened into a HTML page.
To generate this file, run:
/Users/ethers> python3 flatten.py
Which performs the following transformations:
- Minifies and inlines all JavaScript files
- Minifies and inlines all Cascading Style Sheet files
- Minifies and inlines all font files
- Minifies and inlines all images as base64 encoded data URIs
MIT License.