├── .gitignore ├── CNAME ├── README.md ├── bridge.html ├── default.tokenlist.json ├── images ├── favicon.ico ├── logo.png ├── step1.png ├── step2.png └── step3.png ├── index.html ├── metamask.html ├── robots.txt ├── scripts.js ├── setup.html ├── staycheap.html ├── style.css ├── twitter.html └── whalegate.html /.gitignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | .DS_STORE 3 | .vscode -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | cheapeth.org -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheapETH/cheapeth-website/HEAD/README.md -------------------------------------------------------------------------------- /bridge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheapETH/cheapeth-website/HEAD/bridge.html -------------------------------------------------------------------------------- /default.tokenlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheapETH/cheapeth-website/HEAD/default.tokenlist.json -------------------------------------------------------------------------------- /images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheapETH/cheapeth-website/HEAD/images/favicon.ico -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheapETH/cheapeth-website/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheapETH/cheapeth-website/HEAD/images/step1.png -------------------------------------------------------------------------------- /images/step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheapETH/cheapeth-website/HEAD/images/step2.png -------------------------------------------------------------------------------- /images/step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheapETH/cheapeth-website/HEAD/images/step3.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheapETH/cheapeth-website/HEAD/index.html -------------------------------------------------------------------------------- /metamask.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheapETH/cheapeth-website/HEAD/metamask.html -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * -------------------------------------------------------------------------------- /scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheapETH/cheapeth-website/HEAD/scripts.js -------------------------------------------------------------------------------- /setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheapETH/cheapeth-website/HEAD/setup.html -------------------------------------------------------------------------------- /staycheap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheapETH/cheapeth-website/HEAD/staycheap.html -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheapETH/cheapeth-website/HEAD/style.css -------------------------------------------------------------------------------- /twitter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheapETH/cheapeth-website/HEAD/twitter.html -------------------------------------------------------------------------------- /whalegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheapETH/cheapeth-website/HEAD/whalegate.html --------------------------------------------------------------------------------