├── .gitignore ├── README.md ├── package.json ├── src ├── NextInscription │ ├── constrants │ │ └── index.ts │ ├── events │ │ ├── blockTx.ts │ │ └── filters.ts │ ├── handleLog │ │ ├── code.ts │ │ ├── index.ts │ │ └── logger.ts │ ├── index.ts │ ├── sqlite3 │ │ └── index.ts │ └── types │ │ └── index.ts ├── api │ └── index.ts ├── index.ts ├── middleware │ ├── request.ts │ ├── response.ts │ └── validate.ts ├── release │ └── better_sqlite3.node ├── routes.ts └── types │ └── index.ts ├── tsconfig.json └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env 3 | db/ 4 | logs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextInscription/node/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextInscription/node/HEAD/package.json -------------------------------------------------------------------------------- /src/NextInscription/constrants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextInscription/node/HEAD/src/NextInscription/constrants/index.ts -------------------------------------------------------------------------------- /src/NextInscription/events/blockTx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextInscription/node/HEAD/src/NextInscription/events/blockTx.ts -------------------------------------------------------------------------------- /src/NextInscription/events/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextInscription/node/HEAD/src/NextInscription/events/filters.ts -------------------------------------------------------------------------------- /src/NextInscription/handleLog/code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextInscription/node/HEAD/src/NextInscription/handleLog/code.ts -------------------------------------------------------------------------------- /src/NextInscription/handleLog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextInscription/node/HEAD/src/NextInscription/handleLog/index.ts -------------------------------------------------------------------------------- /src/NextInscription/handleLog/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextInscription/node/HEAD/src/NextInscription/handleLog/logger.ts -------------------------------------------------------------------------------- /src/NextInscription/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextInscription/node/HEAD/src/NextInscription/index.ts -------------------------------------------------------------------------------- /src/NextInscription/sqlite3/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextInscription/node/HEAD/src/NextInscription/sqlite3/index.ts -------------------------------------------------------------------------------- /src/NextInscription/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextInscription/node/HEAD/src/NextInscription/types/index.ts -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextInscription/node/HEAD/src/api/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextInscription/node/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/middleware/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextInscription/node/HEAD/src/middleware/request.ts -------------------------------------------------------------------------------- /src/middleware/response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextInscription/node/HEAD/src/middleware/response.ts -------------------------------------------------------------------------------- /src/middleware/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextInscription/node/HEAD/src/middleware/validate.ts -------------------------------------------------------------------------------- /src/release/better_sqlite3.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextInscription/node/HEAD/src/release/better_sqlite3.node -------------------------------------------------------------------------------- /src/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextInscription/node/HEAD/src/routes.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextInscription/node/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextInscription/node/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextInscription/node/HEAD/webpack.config.js --------------------------------------------------------------------------------