├── .circleci └── config.yml ├── .eslintrc ├── .gitignore ├── FUNDING.json ├── LICENSE.md ├── README.md ├── api ├── index.ts └── txdata.ts ├── modules ├── antitheft.ts ├── processFrameRequest.ts ├── sanitize.ts └── utils.ts ├── netlify.toml ├── package.json ├── public ├── fonts │ ├── Redaction-Regular.otf │ ├── Redaction-Regular.woff2 │ ├── Redaction100-Regular.otf │ └── Redaction_100-Regular.woff2 └── images │ ├── poster-animated.gif │ ├── poster.png │ ├── simplest-frame-v0-12-0-1155.gif │ └── stolen.png ├── sample.env ├── src ├── data │ ├── cast.ts │ ├── count.ts │ ├── framer.ts │ └── username.ts ├── fonts.ts ├── frames │ ├── count.ts │ ├── index.ts │ ├── mint.ts │ ├── poster.ts │ ├── stolen.ts │ └── transaction.ts ├── landing-page.ts └── layouts │ └── main.ts └── tsconfig.json /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/.gitignore -------------------------------------------------------------------------------- /FUNDING.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/FUNDING.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/README.md -------------------------------------------------------------------------------- /api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/api/index.ts -------------------------------------------------------------------------------- /api/txdata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/api/txdata.ts -------------------------------------------------------------------------------- /modules/antitheft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/modules/antitheft.ts -------------------------------------------------------------------------------- /modules/processFrameRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/modules/processFrameRequest.ts -------------------------------------------------------------------------------- /modules/sanitize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/modules/sanitize.ts -------------------------------------------------------------------------------- /modules/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/modules/utils.ts -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/package.json -------------------------------------------------------------------------------- /public/fonts/Redaction-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/public/fonts/Redaction-Regular.otf -------------------------------------------------------------------------------- /public/fonts/Redaction-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/public/fonts/Redaction-Regular.woff2 -------------------------------------------------------------------------------- /public/fonts/Redaction100-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/public/fonts/Redaction100-Regular.otf -------------------------------------------------------------------------------- /public/fonts/Redaction_100-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/public/fonts/Redaction_100-Regular.woff2 -------------------------------------------------------------------------------- /public/images/poster-animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/public/images/poster-animated.gif -------------------------------------------------------------------------------- /public/images/poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/public/images/poster.png -------------------------------------------------------------------------------- /public/images/simplest-frame-v0-12-0-1155.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/public/images/simplest-frame-v0-12-0-1155.gif -------------------------------------------------------------------------------- /public/images/stolen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/public/images/stolen.png -------------------------------------------------------------------------------- /sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/sample.env -------------------------------------------------------------------------------- /src/data/cast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/src/data/cast.ts -------------------------------------------------------------------------------- /src/data/count.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/src/data/count.ts -------------------------------------------------------------------------------- /src/data/framer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/src/data/framer.ts -------------------------------------------------------------------------------- /src/data/username.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/src/data/username.ts -------------------------------------------------------------------------------- /src/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/src/fonts.ts -------------------------------------------------------------------------------- /src/frames/count.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/src/frames/count.ts -------------------------------------------------------------------------------- /src/frames/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/src/frames/index.ts -------------------------------------------------------------------------------- /src/frames/mint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/src/frames/mint.ts -------------------------------------------------------------------------------- /src/frames/poster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/src/frames/poster.ts -------------------------------------------------------------------------------- /src/frames/stolen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/src/frames/stolen.ts -------------------------------------------------------------------------------- /src/frames/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/src/frames/transaction.ts -------------------------------------------------------------------------------- /src/landing-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/src/landing-page.ts -------------------------------------------------------------------------------- /src/layouts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/src/layouts/main.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depatchedmode/simplest-frame/HEAD/tsconfig.json --------------------------------------------------------------------------------