├── .gitignore ├── .nojekyll ├── 404.html ├── README.md ├── _next └── static │ ├── S1fzvPQO3B3QgTHg-h6sc │ ├── _buildManifest.js │ └── _ssgManifest.js │ ├── chunks │ ├── 246-95e3632316189152b0be.js │ ├── framework-c5113a73163ba9a6512c.js │ ├── main-26b720ade6669956fe85.js │ ├── pages │ │ ├── _app-4be02ffccdd9fceacfca.js │ │ ├── _error-b30902e13465df7c5366.js │ │ └── index-4dcdb47e998e1d3dbb57.js │ ├── polyfills-eef578260fd80f8fff94.js │ └── webpack-277c75ec70a3d22a400d.js │ └── css │ ├── 81350cacca8d21e80c3b.css │ └── 87aae87ad240e6ad30f4.css ├── components ├── layout.module.css └── layout.tsx ├── favicon.png ├── index.html ├── next-env.d.ts ├── next.config.js ├── package-lock.json ├── package.json ├── pages ├── _app.tsx └── index.tsx ├── postcss.config.js ├── public └── favicon.png ├── styles └── utils.module.css ├── tsconfig.json └── tslint.json /.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 | /verifysignature 18 | 19 | # misc 20 | .DS_Store 21 | .idea 22 | 23 | # debug 24 | npm-debug.log* 25 | yarn-debug.log* 26 | yarn-error.log* 27 | 28 | # local env files 29 | .env.local 30 | .env.development.local 31 | .env.test.local 32 | .env.production.local 33 | -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/VerifySignature/9943aca61e1f07260bbd80453c50967231796324/.nojekyll -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- 1 |