I am but a humble froge
18 |20 | Join the{" "} 21 | 22 | Lily Pad Discord{" "} 23 | 24 | for interacing with other growing web3 devs! 25 |
26 |├── .gitignore ├── .prettierignore ├── .prettierrc ├── README.md ├── SmallSite.html ├── SmallSite.zip ├── SmallSiteEncoded.txt ├── hh-unstoppable ├── .gitignore ├── README.md ├── contracts │ └── UnstoppableFrog.sol ├── deploy │ └── 01_deploy.ts ├── deployments │ └── arbitrum │ │ ├── .chainId │ │ ├── UnstoppableFrog.json │ │ └── solcInputs │ │ ├── 46add8a04b4e95c450880bc9d08b27e1.json │ │ └── 959fc25b486f9ba630018dc964d3963f.json ├── hardhat.config.ts ├── meh.svg ├── test │ └── Lock.ts ├── tsconfig.json └── utils │ └── helper-functions.ts ├── img ├── import-ipfs.png ├── ron.webp └── upload-ipfs.png ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── api │ └── hello.ts └── index.tsx ├── public ├── favicon.ico ├── frog.png └── lily-pad.png ├── relative-links-output ├── 404.html ├── _next │ └── static │ │ ├── chunks │ │ ├── framework-db825bd0b4ae01ef.js │ │ ├── main-5fea2acfd5d9e895.js │ │ ├── pages │ │ │ ├── _app-deb173bd80cbaa92.js │ │ │ ├── _error-7397496ca01950b1.js │ │ │ └── index-36b30e9afe032536.js │ │ ├── polyfills-c67a75d1b6f99dc8.js │ │ └── webpack-7ee66019f7f6d30f.js │ │ ├── css │ │ ├── ab44ce7add5c3d11.css │ │ └── f49f07195cf978c4.css │ │ ├── media │ │ └── lily-pad.c7df30b2.png │ │ └── txOYopp3gUbVMfgCziGxY │ │ ├── _buildManifest.js │ │ └── _ssgManifest.js ├── favicon.ico ├── frog.png ├── index.html ├── lily-pad.png └── manifest.arkb ├── static-output.car ├── styles ├── Home.module.css └── globals.css ├── tsconfig.json ├── unstoppable-single-file └── index.html ├── unstoppable-ui-static-export ├── 404.html ├── _next │ └── static │ │ ├── chunks │ │ ├── framework-db825bd0b4ae01ef.js │ │ ├── main-5fea2acfd5d9e895.js │ │ ├── pages │ │ │ ├── _app-deb173bd80cbaa92.js │ │ │ ├── _error-7397496ca01950b1.js │ │ │ └── index-36b30e9afe032536.js │ │ ├── polyfills-c67a75d1b6f99dc8.js │ │ └── webpack-7ee66019f7f6d30f.js │ │ ├── css │ │ ├── ab44ce7add5c3d11.css │ │ └── f49f07195cf978c4.css │ │ ├── media │ │ └── lily-pad.c7df30b2.png │ │ └── txOYopp3gUbVMfgCziGxY │ │ ├── _buildManifest.js │ │ └── _ssgManifest.js ├── favicon.ico ├── frog.png ├── index.html ├── lily-pad.png └── manifest.arkb ├── upload-to-skynet.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # next.js 12 | /.next/ 13 | /out/ 14 | 15 | # production 16 | /build 17 | 18 | # misc 19 | .DS_Store 20 | *.pem 21 | 22 | # debug 23 | npm-debug.log* 24 | yarn-debug.log* 25 | yarn-error.log* 26 | .pnpm-debug.log* 27 | 28 | # local env files 29 | .env*.local 30 | 31 | # vercel 32 | .vercel 33 | 34 | # typescript 35 | *.tsbuildinfo 36 | next-env.d.ts 37 | 38 | .vscode 39 | .article.md 40 | .video.md 41 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | artifacts 3 | cache 4 | coverage* 5 | gasReporterOutput.json 6 | package.json 7 | img 8 | .env 9 | .* 10 | README.md 11 | coverage.json 12 | deployments -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "tabWidth": 4, 3 | "useTabs": false, 4 | "semi": false, 5 | "singleQuote": false, 6 | "printWidth": 100 7 | } 8 | -------------------------------------------------------------------------------- /SmallSite.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |I am but a humble froge
18 |20 | Join the{" "} 21 | 22 | Lily Pad Discord{" "} 23 | 24 | for interacing with other growing web3 devs! 25 |
26 |I am but a humble froge
33 | 128 |129 | Join the 130 | Lily Pad Discord for interacing with other growing web3 devs! 133 |
134 |I am but a humble froge
33 | 128 |129 | Join the 130 | Lily Pad Discord for interacing with other growing web3 devs! 133 |
134 |