├── .gitignore ├── .prettierignore ├── .prettierrc ├── README.md ├── connect.png ├── constants.js ├── ethers-6.7.esm.min.js ├── index.html └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .encryptedKey.json 3 | node_modules 4 | dist 5 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/html-fund-me-cu/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/html-fund-me-cu/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/html-fund-me-cu/HEAD/README.md -------------------------------------------------------------------------------- /connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/html-fund-me-cu/HEAD/connect.png -------------------------------------------------------------------------------- /constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/html-fund-me-cu/HEAD/constants.js -------------------------------------------------------------------------------- /ethers-6.7.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/html-fund-me-cu/HEAD/ethers-6.7.esm.min.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/html-fund-me-cu/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/html-fund-me-cu/HEAD/index.js --------------------------------------------------------------------------------