diff --git a/demo/server/.env.example b/demo/server/.env.example new file mode 100644 index 0000000..d1c9889 --- /dev/null +++ b/demo/server/.env.example @@ -0,0 +1,5 @@ +CERAMIC_URL="" +CERAMIC_PRIVATE_KEY="" + +# Interface StreamID of PointsAggregation +AGGREGATION_ID="kjzl6hvfrbw6ca6atwn59x2zltapkaf4dy9v0laqk4ahj5hf337s6rocgia2rxs" \ No newline at end of file diff --git a/demo/server/.eslintrc.json b/demo/server/.eslintrc.json new file mode 100644 index 0000000..4ec79d0 --- /dev/null +++ b/demo/server/.eslintrc.json @@ -0,0 +1,6 @@ +{ + "extends": ["3box", "3box/jest", "3box/typescript"], + "parserOptions": { + "project": ["tsconfig.json"] + } +} diff --git a/demo/server/.gitignore b/demo/server/.gitignore new file mode 100644 index 0000000..aa55e93 --- /dev/null +++ b/demo/server/.gitignore @@ -0,0 +1,9 @@ +# Dependencies +/node_modules + +# env +.env + +# Build files +/dist + diff --git a/demo/server/composites/sandboxAggregation.graphql b/demo/server/composites/sandboxAggregation.graphql new file mode 100644 index 0000000..5d68612 --- /dev/null +++ b/demo/server/composites/sandboxAggregation.graphql @@ -0,0 +1,18 @@ +# (for reference only) + +interface PointsAggregation @loadModel(id: "kjzl6hvfrbw6cb6393dpd8blke5w8r7pvbl4449mxetuibcav3oab8fnxmys6d6") { + id: ID! +} + +type SandboxPointsAggregation implements PointsAggregation + @createModel( + description: "Aggregation of multiple Ceramic Sandbox read points to an account" + accountRelation: SET + accountRelationFields: ["recipient"] + ) { + issuer: DID! @documentAccount + recipient: DID! @accountReference + points: Int! + date: DateTime! + context: String! @string(maxLength: 100) +} diff --git a/demo/server/package.json b/demo/server/package.json new file mode 100644 index 0000000..83143be --- /dev/null +++ b/demo/server/package.json @@ -0,0 +1,74 @@ +{ + "name": "@composexp/server", + "version": "0.1.0", + "private": true, + "author": "3Box Labs", + "license": "(Apache-2.0 OR MIT)", + "repository": { + "type": "git", + "url": "https://github.com/ceramicstudio/solutions", + "directory": "demo/server" + }, + "type": "module", + "main": "dist/index.js", + "types": "dist/index.d.ts", + "exports": { + ".": "./dist/index.js" + }, + "files": [ + "dist" + ], + "engines": { + "node": ">=20" + }, + "sideEffects": false, + "scripts": { + "dev": "npx tsx src/index.ts", + "prestart": "pnpm run build", + "build:clean": "del dist", + "build:js": "swc src -d ./dist --config-file ../../.swcrc --strip-leading-paths", + "build:types": "tsc --project tsconfig.build.json --emitDeclarationOnly --skipLibCheck", + "build": "pnpm build:clean && pnpm build:types && pnpm build:js", + "lint": "eslint src --fix", + "prepare": "pnpm build", + "prepublishOnly": "package-check", + "start": "node ." + }, + "devDependencies": { + "@types/cors": "^2.8.15", + "@types/express": "^4.17.20", + "key-did-provider-ed25519": "^2.0.1", + "key-did-resolver": "^2.1.3", + "nodemon": "^3.1.0", + "ts-node": "^10.9.1", + "@composexp/points": "workspace:^", + "@composexp/ceramic-utils": "workspace:^", + "@composexp/did-utils": "workspace:^", + "uint8arrays": "^5.0.3" + }, + "dependencies": { + "@ceramicnetwork/http-client": "^5.6.0", + "body-parser": "^1.20.2", + "cors": "^2.8.5", + "dotenv": "^16.3.1", + "exec": "^0.2.1", + "express": "^4.18.2", + "tsx": "^4.7.1" + }, + "jest": { + "extensionsToTreatAsEsm": [ + ".ts" + ], + "moduleNameMapper": { + "^(\\.{1,2}/.*)\\.js$": "$1" + }, + "transform": { + "^.+\\.(t|j)s$": [ + "@swc/jest", + { + "root": "../.." + } + ] + } + } +} diff --git a/demo/server/src/controllers/multiController.ts b/demo/server/src/controllers/multiController.ts new file mode 100644 index 0000000..2a0e238 --- /dev/null +++ b/demo/server/src/controllers/multiController.ts @@ -0,0 +1,203 @@ +import { getContext } from '../utils/context.js' +import { Request, Response, NextFunction } from 'express' +import { PointsWriter, PointsReader } from '@composexp/points' + +type ContextAggregationContent = { + recipient: string + points: number + date: string + context: string +} + +export interface GetContextAggregationRequest extends Request { + body: { + recipient: string + context: string + } +} + +export interface UpdateTotalAggregationRequest extends Request { + body: { + recipient: string + amount: number + } +} + +export interface UpdateContextAggregationRequest extends Request { + body: { + recipient: string + context: string + amount: number + } +} + +export interface GetTotalRequest extends Request { + body: { + recipient: string + } +} + +const getContextAggregation = async ( + req: GetContextAggregationRequest, + res: Response, + next: NextFunction, +): Promise => { + try { + const { ceramic, aggregationModelID } = await getContext() + const { recipient, context } = req.body + + //instantiate a reader + const reader = new PointsReader({ + ceramic, + issuer: ceramic.did!.id, + aggregationModelID, + }) + const doc = await reader.loadAggregationDocumentFor([recipient, context]) + res.locals = { + ...res.locals, + contextTotal: doc ? (doc.content ? doc.content.points : 0) : 0, + contextDocument: doc ? doc.content : null, + } + return next() + } catch (error) { + console.error(error) + next(error) + } +} + +const getTotalAggregation = async ( + req: GetTotalRequest, + res: Response, + next: NextFunction, +): Promise => { + try { + const { ceramic } = await getContext() + const { recipient } = req.body + + //instantiate a reader + const reader = new PointsReader({ + ceramic, + issuer: ceramic.did!.id, + }) + const doc = await reader.loadAggregationDocumentFor([recipient]) + res.locals = { + ...res.locals, + total: doc ? (doc.content ? doc.content.points : 0) : 0, + document: doc ? doc.content : null, + } + return next() + } catch (error) { + console.error(error) + next(error) + } +} + +const updateContextAggregation = async ( + req: UpdateContextAggregationRequest, + res: Response, + next: NextFunction, +): Promise => { + try { + const { ceramic, aggregationModelID } = await getContext() + const { amount, recipient, context } = req.body + + //instantiate a writer and reader + const contextWriter = new PointsWriter({ + ceramic, + aggregationModelID, + }) + + const contextReader = new PointsReader({ + ceramic, + issuer: ceramic.did!.id, + aggregationModelID, + }) + + // load the document for the recipient and context + const doc = await contextReader.loadAggregationDocumentFor([recipient, context]) + if (!doc) { + await contextWriter.setPointsAggregationFor([recipient, context], amount, { + recipient, + points: amount, + date: new Date().toISOString(), + context, + }) + res.locals = { + ...res.locals, + contextTotal: amount, + } + } else { + const updatedDoc = await contextWriter.updatePointsAggregationFor( + [recipient, context], + (content) => { + return { + points: content ? content.points + amount : amount, + date: new Date().toISOString(), + recipient, + context, + } + }, + ) + res.locals = { + ...res.locals, + contextTotal: updatedDoc.content ? updatedDoc.content.points : 0, + } + } + return next() + } catch (error) { + console.error(error) + next(error) + } +} + +const updateTotalAggregation = async ( + req: UpdateTotalAggregationRequest, + res: Response, + next: NextFunction, +): Promise => { + try { + const { ceramic } = await getContext() + const { amount, recipient } = req.body + + //instantiate a writer and reader + const totalWriter = new PointsWriter({ ceramic }) + const totalReader = new PointsReader({ ceramic, issuer: ceramic.did!.id }) + + // load the document for the recipient and context + const doc = await totalReader.loadAggregationDocumentFor([recipient]) + if (!doc) { + await totalWriter.setPointsAggregationFor([recipient], amount, { + recipient, + points: amount, + date: new Date().toISOString(), + }) + res.locals = { + ...res.locals, + total: amount, + } + } else { + const updatedDoc = await totalWriter.updatePointsAggregationFor([recipient], (content) => { + return { + points: content ? content.points + amount : amount, + date: new Date().toISOString(), + recipient, + } + }) + res.locals = { + ...res.locals, + total: updatedDoc.content ? updatedDoc.content.points : 0, + } + } + return next() + } catch (error) { + console.error(error) + next(error) + } +} + +export const multiplePointsController = { + updateContextAggregation, + updateTotalAggregation, + getContextAggregation, + getTotalAggregation, +} diff --git a/demo/server/src/controllers/singleController.ts b/demo/server/src/controllers/singleController.ts new file mode 100644 index 0000000..8f1c941 --- /dev/null +++ b/demo/server/src/controllers/singleController.ts @@ -0,0 +1,70 @@ +import { getContext } from '../utils/context.js' +import { Request, Response, NextFunction } from 'express' +import { SinglePointReader, SinglePointWriter } from '@composexp/points' + +export interface CreateSinglePointRequest extends Request { + body: { + recipient: string + } +} + +const createSinglePoint = async ( + req: CreateSinglePointRequest, + res: Response, + next: NextFunction, +) => { + try { + const { ceramic } = await getContext() + const writer = new SinglePointWriter({ ceramic }) + await writer.addPointTo(req.body.recipient) + res.locals.ceramic = ceramic + return next() + } catch (error) { + console.error(error) + return error + } +} + +const removeSinglePoint = async ( + req: CreateSinglePointRequest, + _res: Response, + next: NextFunction, +) => { + try { + const { ceramic } = await getContext() + const reader = new SinglePointReader({ + ceramic, + issuer: ceramic.did!.id, + }) + const documents = await reader.queryPointDocumentsFor(req.body.recipient) + const id = documents.documents[documents.documents.length - 1].id + const writer = new SinglePointWriter({ ceramic }) + await writer.removePoint(id.toString()) + return next() + } catch (error) { + console.error(error) + return error + } +} + +const getSinglePoints = async ( + req: CreateSinglePointRequest, + res: Response, + next: NextFunction, +) => { + try { + const { ceramic } = await getContext() + const reader = new SinglePointReader({ + ceramic, + issuer: ceramic.did!.id, + }) + const totalPoints = await reader.countPointsFor(req.body.recipient) + res.locals.totalPoints = totalPoints + return next() + } catch (error) { + console.error(error) + return error + } +} + +export const singlePointController = { createSinglePoint, getSinglePoints, removeSinglePoint } diff --git a/demo/server/src/index.ts b/demo/server/src/index.ts new file mode 100644 index 0000000..6b88baa --- /dev/null +++ b/demo/server/src/index.ts @@ -0,0 +1,33 @@ +import express, { json, Request, Response, NextFunction } from 'express' +import cors from 'cors' +import singleRouter from './routes/single.js' +import multiRouter from './routes/multi.js' + +const app = express() +const port = process.env.PORT || 8080 + +const corsOptions = { + origin: ['http://localhost:8080', 'https://developers.ceramic.network'], + optionsSuccessStatus: 200, // For legacy browser support +} + +app.use(json()) +app.use(cors(corsOptions)) +// app.use(bodyParser.json()); + +const allowCrossDomain = (_req: Request, res: Response, next: NextFunction) => { + res.header('Access-Control-Allow-Origin', '*') + res.header('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE') + res.header('Access-Control-Allow-Headers', 'Content-Type') + next() +} + +app.use(allowCrossDomain) + +app.use('/single', singleRouter) +app.use('/multi', multiRouter) + +app.listen(port, () => { + // tslint:disable-next-line:no-console + console.log(`server started at http://localhost:${port}`) +}) diff --git a/demo/server/src/routes/multi.ts b/demo/server/src/routes/multi.ts new file mode 100644 index 0000000..494fa30 --- /dev/null +++ b/demo/server/src/routes/multi.ts @@ -0,0 +1,41 @@ +import { RequestHandler, Request, Response, Router } from 'express' +import { multiplePointsController } from '../controllers/multiController.js' + +const router: Router = Router() + +type R = Response & { + locals: { + contextTotal: number + total: number + contextDocument: unknown + document: unknown + } +} + +router.post( + '/aggregate', + multiplePointsController.updateContextAggregation as RequestHandler, + multiplePointsController.updateTotalAggregation as RequestHandler, + (_req: Request, res: R) => { + return res.json({ + contextTotal: res.locals.contextTotal, + total: res.locals.total, + }) + }, +) + +router.get( + '/getAggregations', + multiplePointsController.getContextAggregation as RequestHandler, + multiplePointsController.getTotalAggregation as RequestHandler, + (_req: Request, res: R) => { + return res.json({ + contextTotal: res.locals.contextTotal, + total: res.locals.total, + contextDocument: res.locals.contextDocument, + document: res.locals.document, + }) + }, +) + +export default router diff --git a/demo/server/src/routes/single.ts b/demo/server/src/routes/single.ts new file mode 100644 index 0000000..040d039 --- /dev/null +++ b/demo/server/src/routes/single.ts @@ -0,0 +1,38 @@ +import { RequestHandler, Response, Router, Request } from 'express' +import { singlePointController } from '../controllers/singleController.js' + +const router: Router = Router() + +type R = Response & { + locals: { + totalPoints: number + } +} + +router.get( + '/', + singlePointController.getSinglePoints as RequestHandler, + (_req: Request, res: R): Response => { + return res.json({ totalPoints: res.locals.totalPoints }) + }, +) + +router.post( + '/create', + singlePointController.createSinglePoint as RequestHandler, + singlePointController.getSinglePoints as RequestHandler, + (_req: Request, res: R): Response => { + return res.json({ totalPoints: res.locals.totalPoints }) + }, +) + +router.delete( + '/remove', + singlePointController.removeSinglePoint as RequestHandler, + singlePointController.getSinglePoints as RequestHandler, + (_req: Request, res: R): Response => { + return res.json({ totalPoints: res.locals.totalPoints }) + }, +) + +export default router diff --git a/demo/server/src/utils/context.ts b/demo/server/src/utils/context.ts new file mode 100644 index 0000000..31413ef --- /dev/null +++ b/demo/server/src/utils/context.ts @@ -0,0 +1,22 @@ +import { getAuthenticatedDID } from '@composexp/did-utils' +import { fromString } from 'uint8arrays' +import { CeramicClient } from '@ceramicnetwork/http-client' +import 'dotenv/config.js' + +type Context = { + ceramic: CeramicClient + aggregationModelID: string +} + +export const getContext = async (): Promise => { + const CERAMIC_URL: string = process.env.CERAMIC_URL || '' + const CERAMIC_PRIVATE_KEY: string = process.env.CERAMIC_PRIVATE_KEY || '' + const aggregationModelID: string = process.env.AGGREGATION_ID || '' + + //eslint-disable-next-line + const key = fromString(CERAMIC_PRIVATE_KEY, 'base16') as Uint8Array + + const ceramic = new CeramicClient(CERAMIC_URL) + ceramic.did = await getAuthenticatedDID(key) + return { ceramic, aggregationModelID } +} diff --git a/demo/server/tsconfig.build.json b/demo/server/tsconfig.build.json new file mode 100644 index 0000000..34756dd --- /dev/null +++ b/demo/server/tsconfig.build.json @@ -0,0 +1,7 @@ +{ + "extends": "../../tsconfig.build.json", + "compilerOptions": { + "outDir": "./dist" + }, + "include": ["src"] +} diff --git a/demo/server/tsconfig.json b/demo/server/tsconfig.json new file mode 100644 index 0000000..262190b --- /dev/null +++ b/demo/server/tsconfig.json @@ -0,0 +1,4 @@ +{ + "extends": "../../tsconfig.build.json", + "include": ["src"] +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 73b4d54..bc08327 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,4 +1,4 @@ -lockfileVersion: '6.0' +lockfileVersion: '6.1' settings: autoInstallPeers: true @@ -67,7 +67,7 @@ importers: devDependencies: '@composedb/types': specifier: ^0.7.1 - version: 0.7.1(@polkadot/util@12.6.2)(typescript@5.4.4) + version: 0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4) '@composexp/composite-utils': specifier: workspace:^ version: link:../../utils/composite @@ -78,6 +78,61 @@ importers: specifier: ^4.7.2 version: 4.7.2 + demo/server: + dependencies: + '@ceramicnetwork/http-client': + specifier: ^5.6.0 + version: 5.6.0(typescript@5.4.4) + body-parser: + specifier: ^1.20.2 + version: 1.20.2 + cors: + specifier: ^2.8.5 + version: 2.8.5 + dotenv: + specifier: ^16.3.1 + version: 16.3.1 + exec: + specifier: ^0.2.1 + version: 0.2.1 + express: + specifier: ^4.18.2 + version: 4.19.2 + tsx: + specifier: ^4.7.1 + version: 4.7.2 + devDependencies: + '@composexp/ceramic-utils': + specifier: workspace:^ + version: link:../../utils/ceramic + '@composexp/did-utils': + specifier: workspace:^ + version: link:../../utils/did + '@composexp/points': + specifier: workspace:^ + version: link:../../libraries/points + '@types/cors': + specifier: ^2.8.15 + version: 2.8.15 + '@types/express': + specifier: ^4.17.20 + version: 4.17.21 + key-did-provider-ed25519: + specifier: ^2.0.1 + version: 2.0.1 + key-did-resolver: + specifier: ^2.1.3 + version: 2.1.3 + nodemon: + specifier: ^3.1.0 + version: 3.1.0 + ts-node: + specifier: ^10.9.1 + version: 10.9.1(@swc/core@1.4.13)(@types/node@20.12.7)(typescript@5.4.4) + uint8arrays: + specifier: ^5.0.3 + version: 5.0.3 + demo/simple: dependencies: '@ceramicnetwork/http-client': @@ -119,7 +174,7 @@ importers: version: 5.5.0(typescript@5.4.4) '@composedb/types': specifier: ^0.7.1 - version: 0.7.1(@polkadot/util@12.6.2)(typescript@5.4.4) + version: 0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4) '@composexp/ceramic-utils': specifier: workspace:^ version: link:../../utils/ceramic @@ -134,10 +189,10 @@ importers: dependencies: '@ceramicnetwork/cli': specifier: ^5.6.0 - version: 5.6.0(@polkadot/util@12.6.2)(@types/express@4.17.21)(pg@8.11.3)(typescript@5.4.4) + version: 5.6.0(@polkadot/util@7.9.2)(@types/express@4.17.21)(pg@8.11.3)(typescript@5.4.4) '@ceramicnetwork/core': specifier: ^5.6.0 - version: 5.6.0(@polkadot/util@12.6.2)(typescript@5.4.4) + version: 5.6.0(@polkadot/util@7.9.2)(typescript@5.4.4) '@ceramicnetwork/ipfs-daemon': specifier: ^5.6.0 version: 5.6.0(typescript@5.4.4) @@ -162,14 +217,14 @@ importers: dependencies: '@composedb/devtools-node': specifier: ^0.7.1 - version: 0.7.1(@composedb/devtools@0.7.1)(@polkadot/util@12.6.2)(typescript@5.4.4) + version: 0.7.1(@composedb/devtools@0.7.1)(@polkadot/util@7.9.2)(typescript@5.4.4) '@composexp/ceramic-utils': specifier: workspace:^ version: link:../ceramic devDependencies: '@composedb/types': specifier: ^0.7.1 - version: 0.7.1(@polkadot/util@12.6.2)(typescript@5.4.4) + version: 0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4) '@types/node': specifier: ^20.12.7 version: 20.12.7 @@ -247,7 +302,7 @@ packages: '@babel/traverse': 7.24.1 '@babel/types': 7.24.0 convert-source-map: 2.0.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@5.5.0) gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -541,7 +596,7 @@ packages: '@babel/helper-split-export-declaration': 7.22.6 '@babel/parser': 7.24.1 '@babel/types': 7.24.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@5.5.0) globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -650,7 +705,7 @@ packages: - utf-8-validate - zod - /@ceramicnetwork/blockchain-utils-validation@5.4.0(@polkadot/util@12.6.2)(typescript@5.4.4): + /@ceramicnetwork/blockchain-utils-validation@5.4.0(@polkadot/util@7.9.2)(typescript@5.4.4): resolution: {integrity: sha512-AzzCzOb5zwOF9kA9lgzUSvn2EM+9gljOCCgLgLnmZ5vg1QzAM/1xpM07hGxuve4ud3s37q/C3IVrNCdGvMtIvw==} dependencies: '@ceramicnetwork/blockchain-utils-linking': 5.0.0(typescript@5.4.4) @@ -659,7 +714,7 @@ packages: '@ethersproject/providers': 5.7.2 '@ethersproject/wallet': 5.7.0 '@noble/curves': 1.4.0 - '@polkadot/util-crypto': 7.9.2(@polkadot/util@12.6.2) + '@polkadot/util-crypto': 7.9.2(@polkadot/util@7.9.2) '@smontero/eosio-signing-tools': 0.0.6 '@taquito/utils': 11.2.0 '@tendermint/sig': 0.6.0 @@ -676,7 +731,7 @@ packages: - utf-8-validate - zod - /@ceramicnetwork/blockchain-utils-validation@5.5.0(@polkadot/util@12.6.2)(typescript@5.4.4): + /@ceramicnetwork/blockchain-utils-validation@5.5.0(@polkadot/util@7.9.2)(typescript@5.4.4): resolution: {integrity: sha512-1hLGXugUE6qNjkbzOAeInj0l58y9ejI19wW8y1TTQTpeThUjkUFxdaiLkKWitIXAcw8Ve+Vnpw5f0VnwtR/+hA==} dependencies: '@ceramicnetwork/blockchain-utils-linking': 5.0.0(typescript@5.4.4) @@ -685,7 +740,7 @@ packages: '@ethersproject/providers': 5.7.2 '@ethersproject/wallet': 5.7.0 '@noble/curves': 1.4.0 - '@polkadot/util-crypto': 7.9.2(@polkadot/util@12.6.2) + '@polkadot/util-crypto': 7.9.2(@polkadot/util@7.9.2) '@smontero/eosio-signing-tools': 0.0.6 '@taquito/utils': 11.2.0 '@tendermint/sig': 0.6.0 @@ -703,7 +758,7 @@ packages: - zod dev: false - /@ceramicnetwork/cli@5.6.0(@polkadot/util@12.6.2)(@types/express@4.17.21)(pg@8.11.3)(typescript@5.4.4): + /@ceramicnetwork/cli@5.6.0(@polkadot/util@7.9.2)(@types/express@4.17.21)(pg@8.11.3)(typescript@5.4.4): resolution: {integrity: sha512-TZDMTsVWk6tzGV3E1LdTPhZUA3BxPLLGZRbtIhwTU5Pvbs6sCHSTyinGzUQ4zthtXp2vMqIIYHb5C1eZrNdK8A==} engines: {node: '>=20.8'} hasBin: true @@ -712,7 +767,7 @@ packages: '@ceramicnetwork/3id-did-resolver': 5.6.0(typescript@5.4.4) '@ceramicnetwork/codecs': 4.5.0(typescript@5.4.4) '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/core': 5.6.0(@polkadot/util@12.6.2)(typescript@5.4.4) + '@ceramicnetwork/core': 5.6.0(@polkadot/util@7.9.2)(typescript@5.4.4) '@ceramicnetwork/http-client': 5.6.0(typescript@5.4.4) '@ceramicnetwork/indexing': 4.6.0(pg@8.11.3)(sqlite3@5.1.7)(typescript@5.4.4) '@ceramicnetwork/ipfs-daemon': 5.6.0(typescript@5.4.4) @@ -864,7 +919,7 @@ packages: - utf-8-validate - zod - /@ceramicnetwork/core@5.5.0(@polkadot/util@12.6.2)(typescript@5.4.4): + /@ceramicnetwork/core@5.5.0(@polkadot/util@7.9.2)(typescript@5.4.4): resolution: {integrity: sha512-Tj/uZZ4pneSjSaEKhfp4RR6gMmzyqOIK3eqyepEObyEQUyggbQMxDqhGPRWqFFeUdB2GAnbaKuYuo/uz6a5ghg==} engines: {node: '>=20.8'} dependencies: @@ -879,7 +934,7 @@ packages: '@ceramicnetwork/pinning-aggregation': 5.4.0 '@ceramicnetwork/pinning-ipfs-backend': 5.4.0 '@ceramicnetwork/stream-caip10-link': 5.4.0(typescript@5.4.4) - '@ceramicnetwork/stream-caip10-link-handler': 5.5.0(@polkadot/util@12.6.2)(typescript@5.4.4) + '@ceramicnetwork/stream-caip10-link-handler': 5.5.0(@polkadot/util@7.9.2)(typescript@5.4.4) '@ceramicnetwork/stream-model': 4.4.0(typescript@5.4.4) '@ceramicnetwork/stream-model-handler': 4.5.0(typescript@5.4.4) '@ceramicnetwork/stream-model-instance': 4.5.0(typescript@5.4.4) @@ -932,7 +987,7 @@ packages: - utf-8-validate - zod - /@ceramicnetwork/core@5.6.0(@polkadot/util@12.6.2)(typescript@5.4.4): + /@ceramicnetwork/core@5.6.0(@polkadot/util@7.9.2)(typescript@5.4.4): resolution: {integrity: sha512-svRyYxXW1HeP0EhxDjtisrZYfYuPUjMA4ZlM5o4xs6qGO0GJl88ttPTFPA5LI/iWAdzwyeTxpvmORwoq0A+j6w==} engines: {node: '>=20.8'} dependencies: @@ -948,7 +1003,7 @@ packages: '@ceramicnetwork/pinning-aggregation': 5.5.0 '@ceramicnetwork/pinning-ipfs-backend': 5.5.0 '@ceramicnetwork/stream-caip10-link': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/stream-caip10-link-handler': 5.6.0(@polkadot/util@12.6.2)(typescript@5.4.4) + '@ceramicnetwork/stream-caip10-link-handler': 5.6.0(@polkadot/util@7.9.2)(typescript@5.4.4) '@ceramicnetwork/stream-model': 4.5.0(typescript@5.4.4) '@ceramicnetwork/stream-model-handler': 4.6.0(typescript@5.4.4) '@ceramicnetwork/stream-model-instance': 4.6.0(typescript@5.4.4) @@ -1234,10 +1289,10 @@ packages: - supports-color dev: false - /@ceramicnetwork/stream-caip10-link-handler@5.5.0(@polkadot/util@12.6.2)(typescript@5.4.4): + /@ceramicnetwork/stream-caip10-link-handler@5.5.0(@polkadot/util@7.9.2)(typescript@5.4.4): resolution: {integrity: sha512-2GiFBSZrc8tmKBSWWh2ZjzWMtQG1fHQCCPhHXd91Si5cx+FTh2T0qEqpg5JtIXrDRe/yIP2sq4ZHODlVeuslSw==} dependencies: - '@ceramicnetwork/blockchain-utils-validation': 5.4.0(@polkadot/util@12.6.2)(typescript@5.4.4) + '@ceramicnetwork/blockchain-utils-validation': 5.4.0(@polkadot/util@7.9.2)(typescript@5.4.4) '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) '@ceramicnetwork/stream-caip10-link': 5.4.0(typescript@5.4.4) '@ceramicnetwork/stream-handler-common': 4.4.0(typescript@5.4.4) @@ -1250,10 +1305,10 @@ packages: - utf-8-validate - zod - /@ceramicnetwork/stream-caip10-link-handler@5.6.0(@polkadot/util@12.6.2)(typescript@5.4.4): + /@ceramicnetwork/stream-caip10-link-handler@5.6.0(@polkadot/util@7.9.2)(typescript@5.4.4): resolution: {integrity: sha512-pKCipn3y6CflzY/K3oeRyHwDDhBSvFy+jvZPqSbMY5s+96vueBNPsaBcqMZEd2onjl+hMGqjukH+QtGk+S5faQ==} dependencies: - '@ceramicnetwork/blockchain-utils-validation': 5.5.0(@polkadot/util@12.6.2)(typescript@5.4.4) + '@ceramicnetwork/blockchain-utils-validation': 5.5.0(@polkadot/util@7.9.2)(typescript@5.4.4) '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) '@ceramicnetwork/stream-caip10-link': 5.5.0(typescript@5.4.4) '@ceramicnetwork/stream-handler-common': 4.5.0(typescript@5.4.4) @@ -1617,7 +1672,7 @@ packages: dependencies: '@chainsafe/is-ip': 2.0.2 - /@composedb/client@0.7.1(@polkadot/util@12.6.2)(typescript@5.4.4): + /@composedb/client@0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4): resolution: {integrity: sha512-LUMnaiNUbBLqqifxAybAigG+n7F+u8xhLOPsPR0F0KHPtJkJ8sXm0lpcHQPx6B4Tm5Tlb6F7Tu27WvGp+7wVCA==} engines: {node: '>=20'} dependencies: @@ -1625,8 +1680,8 @@ packages: '@ceramicnetwork/stream-model': 4.5.0(typescript@5.4.4) '@ceramicnetwork/stream-model-instance': 4.6.0(typescript@5.4.4) '@composedb/constants': 0.7.1 - '@composedb/graphql-scalars': 0.7.1(@polkadot/util@12.6.2)(typescript@5.4.4) - '@composedb/runtime': 0.7.1(@polkadot/util@12.6.2)(typescript@5.4.4) + '@composedb/graphql-scalars': 0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4) + '@composedb/runtime': 0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4) '@graphql-tools/batch-execute': 9.0.4(graphql@16.8.1) '@graphql-tools/stitch': 9.0.5(graphql@16.8.1) '@graphql-tools/utils': 10.1.2(graphql@16.8.1) @@ -1655,17 +1710,17 @@ packages: engines: {node: '>=20'} dev: false - /@composedb/devtools-node@0.7.1(@composedb/devtools@0.7.1)(@polkadot/util@12.6.2)(typescript@5.4.4): + /@composedb/devtools-node@0.7.1(@composedb/devtools@0.7.1)(@polkadot/util@7.9.2)(typescript@5.4.4): resolution: {integrity: sha512-+7X7mM7JqIdXzIHnhpr6eD4TZ2a7sQgFeJUL7uIed2EB5qa/10qYFpCvd1OUivv+MVdGMwvw2jVXzM1DaamBnQ==} engines: {node: '>=20'} peerDependencies: '@composedb/devtools': ^0.7.1 dependencies: '@ceramicnetwork/http-client': 5.6.0(typescript@5.4.4) - '@composedb/client': 0.7.1(@polkadot/util@12.6.2)(typescript@5.4.4) - '@composedb/devtools': 0.7.1(@polkadot/util@12.6.2)(graphql@16.8.1)(typescript@5.4.4) - '@composedb/runtime': 0.7.1(@polkadot/util@12.6.2)(typescript@5.4.4) - '@composedb/server': 0.7.1(@polkadot/util@12.6.2)(typescript@5.4.4) + '@composedb/client': 0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4) + '@composedb/devtools': 0.7.1(@polkadot/util@7.9.2)(graphql@16.8.1)(typescript@5.4.4) + '@composedb/runtime': 0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4) + '@composedb/server': 0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4) fs-extra: 11.2.0 transitivePeerDependencies: - '@polkadot/util' @@ -1684,14 +1739,14 @@ packages: - zod dev: false - /@composedb/devtools@0.7.1(@polkadot/util@12.6.2)(graphql@16.8.1)(typescript@5.4.4): + /@composedb/devtools@0.7.1(@polkadot/util@7.9.2)(graphql@16.8.1)(typescript@5.4.4): resolution: {integrity: sha512-J9IFquEmJL/0gwl3BUerXUR3tOm9v8dd3oucrRbuYDbZXLN803mptOQqQEDxzncfkF80CjVh0qtWZ6dTaYGVHQ==} engines: {node: '>=20'} dependencies: '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) '@ceramicnetwork/stream-model': 4.5.0(typescript@5.4.4) '@ceramicnetwork/streamid': 5.0.0 - '@composedb/graphql-scalars': 0.7.1(@polkadot/util@12.6.2)(typescript@5.4.4) + '@composedb/graphql-scalars': 0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4) '@didtools/cacao': 3.0.1(typescript@5.4.4) '@graphql-tools/schema': 10.0.3(graphql@16.8.1) '@graphql-tools/utils': 10.1.2(graphql@16.8.1) @@ -1720,12 +1775,12 @@ packages: - zod dev: false - /@composedb/graphql-scalars@0.7.1(@polkadot/util@12.6.2)(typescript@5.4.4): + /@composedb/graphql-scalars@0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4): resolution: {integrity: sha512-TX6f/1E3RZzWjDAKn3eRZ9z7zAPaE7BKWpOiomw9T3K787WPGmOIypnOOakdGE9dOf6ViYQ8eq4R6pzv0bbBpA==} engines: {node: '>=20'} dependencies: '@ceramicnetwork/streamid': 5.0.0 - '@composedb/types': 0.7.1(@polkadot/util@12.6.2)(typescript@5.4.4) + '@composedb/types': 0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4) caip: 1.1.1 graphql: 16.8.1 graphql-scalars: 1.23.0(graphql@16.8.1) @@ -1762,7 +1817,7 @@ packages: - zod dev: false - /@composedb/runtime@0.7.1(@polkadot/util@12.6.2)(typescript@5.4.4): + /@composedb/runtime@0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4): resolution: {integrity: sha512-ijv1/jNWYAwhsnJYJbyGT8MrQgZoIhDGDoD6ggF5VbcC8bYZcK88yNwASxT3s9NxQTelKznidvk9V14MxN8RUA==} engines: {node: '>=20'} dependencies: @@ -1770,7 +1825,7 @@ packages: '@ceramicnetwork/stream-model': 4.5.0(typescript@5.4.4) '@ceramicnetwork/stream-model-instance': 4.6.0(typescript@5.4.4) '@ceramicnetwork/streamid': 5.0.0 - '@composedb/graphql-scalars': 0.7.1(@polkadot/util@12.6.2)(typescript@5.4.4) + '@composedb/graphql-scalars': 0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4) '@composedb/loader': 0.7.1(typescript@5.4.4) graphql: 16.8.1 graphql-relay: 0.10.0(graphql@16.8.1) @@ -1791,13 +1846,13 @@ packages: - zod dev: false - /@composedb/server@0.7.1(@polkadot/util@12.6.2)(typescript@5.4.4): + /@composedb/server@0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4): resolution: {integrity: sha512-5sq73SM2zJeCiVRpAWbHvI6au2lPq+IiHUVElqrzJ2dGZmDxAOV0BOvCip0xlrW4KThiFuLNyJyiYwwlEwUO1w==} engines: {node: '>=20'} dependencies: '@ceramicnetwork/http-client': 5.6.0(typescript@5.4.4) '@composedb/constants': 0.7.1 - '@composedb/runtime': 0.7.1(@polkadot/util@12.6.2)(typescript@5.4.4) + '@composedb/runtime': 0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4) get-port: 7.1.0 graphql: 16.8.1 graphql-yoga: 5.2.0(graphql@16.8.1) @@ -1818,12 +1873,12 @@ packages: - zod dev: false - /@composedb/types@0.7.1(@polkadot/util@12.6.2)(typescript@5.4.4): + /@composedb/types@0.7.1(@polkadot/util@7.9.2)(typescript@5.4.4): resolution: {integrity: sha512-GtS3R06x1eU1NbBn5ZqewHk1VpvYLk9dwKV8YEzEXxnZvJa2WA8F5YD/TRItIfHgJjLNZ5O7obAK1fgDoCJxnQ==} engines: {node: '>=20'} dependencies: '@ceramicnetwork/common': 5.5.0(typescript@5.4.4) - '@ceramicnetwork/core': 5.5.0(@polkadot/util@12.6.2)(typescript@5.4.4) + '@ceramicnetwork/core': 5.5.0(@polkadot/util@7.9.2)(typescript@5.4.4) '@ceramicnetwork/http-client': 5.6.0(typescript@5.4.4) '@ceramicnetwork/stream-model': 4.4.0(typescript@5.4.4) '@ceramicnetwork/stream-model-instance': 4.5.0(typescript@5.4.4) @@ -1845,6 +1900,13 @@ packages: - utf-8-validate - zod + /@cspotcode/source-map-support@0.8.1: + resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} + engines: {node: '>=12'} + dependencies: + '@jridgewell/trace-mapping': 0.3.9 + dev: true + /@datastructures-js/heap@4.3.3: resolution: {integrity: sha512-UcUu/DLh/aM4W3C8zZfwxxm6/6FIZUlm3mcAXuNOCa6Aj4iizNvNXQyb8DjZQH2jKSQbMRyNlngP6TPimuGjpQ==} @@ -2014,7 +2076,6 @@ packages: cpu: [ppc64] os: [aix] requiresBuild: true - dev: true optional: true /@esbuild/android-arm64@0.19.12: @@ -2023,7 +2084,6 @@ packages: cpu: [arm64] os: [android] requiresBuild: true - dev: true optional: true /@esbuild/android-arm@0.19.12: @@ -2032,7 +2092,6 @@ packages: cpu: [arm] os: [android] requiresBuild: true - dev: true optional: true /@esbuild/android-x64@0.19.12: @@ -2041,7 +2100,6 @@ packages: cpu: [x64] os: [android] requiresBuild: true - dev: true optional: true /@esbuild/darwin-arm64@0.19.12: @@ -2050,7 +2108,6 @@ packages: cpu: [arm64] os: [darwin] requiresBuild: true - dev: true optional: true /@esbuild/darwin-x64@0.19.12: @@ -2059,7 +2116,6 @@ packages: cpu: [x64] os: [darwin] requiresBuild: true - dev: true optional: true /@esbuild/freebsd-arm64@0.19.12: @@ -2068,7 +2124,6 @@ packages: cpu: [arm64] os: [freebsd] requiresBuild: true - dev: true optional: true /@esbuild/freebsd-x64@0.19.12: @@ -2077,7 +2132,6 @@ packages: cpu: [x64] os: [freebsd] requiresBuild: true - dev: true optional: true /@esbuild/linux-arm64@0.19.12: @@ -2086,7 +2140,6 @@ packages: cpu: [arm64] os: [linux] requiresBuild: true - dev: true optional: true /@esbuild/linux-arm@0.19.12: @@ -2095,7 +2148,6 @@ packages: cpu: [arm] os: [linux] requiresBuild: true - dev: true optional: true /@esbuild/linux-ia32@0.19.12: @@ -2104,7 +2156,6 @@ packages: cpu: [ia32] os: [linux] requiresBuild: true - dev: true optional: true /@esbuild/linux-loong64@0.19.12: @@ -2113,7 +2164,6 @@ packages: cpu: [loong64] os: [linux] requiresBuild: true - dev: true optional: true /@esbuild/linux-mips64el@0.19.12: @@ -2122,7 +2172,6 @@ packages: cpu: [mips64el] os: [linux] requiresBuild: true - dev: true optional: true /@esbuild/linux-ppc64@0.19.12: @@ -2131,7 +2180,6 @@ packages: cpu: [ppc64] os: [linux] requiresBuild: true - dev: true optional: true /@esbuild/linux-riscv64@0.19.12: @@ -2140,7 +2188,6 @@ packages: cpu: [riscv64] os: [linux] requiresBuild: true - dev: true optional: true /@esbuild/linux-s390x@0.19.12: @@ -2149,7 +2196,6 @@ packages: cpu: [s390x] os: [linux] requiresBuild: true - dev: true optional: true /@esbuild/linux-x64@0.19.12: @@ -2158,7 +2204,6 @@ packages: cpu: [x64] os: [linux] requiresBuild: true - dev: true optional: true /@esbuild/netbsd-x64@0.19.12: @@ -2167,7 +2212,6 @@ packages: cpu: [x64] os: [netbsd] requiresBuild: true - dev: true optional: true /@esbuild/openbsd-x64@0.19.12: @@ -2176,7 +2220,6 @@ packages: cpu: [x64] os: [openbsd] requiresBuild: true - dev: true optional: true /@esbuild/sunos-x64@0.19.12: @@ -2185,7 +2228,6 @@ packages: cpu: [x64] os: [sunos] requiresBuild: true - dev: true optional: true /@esbuild/win32-arm64@0.19.12: @@ -2194,7 +2236,6 @@ packages: cpu: [arm64] os: [win32] requiresBuild: true - dev: true optional: true /@esbuild/win32-ia32@0.19.12: @@ -2203,7 +2244,6 @@ packages: cpu: [ia32] os: [win32] requiresBuild: true - dev: true optional: true /@esbuild/win32-x64@0.19.12: @@ -2212,7 +2252,6 @@ packages: cpu: [x64] os: [win32] requiresBuild: true - dev: true optional: true /@eslint-community/eslint-utils@4.4.0(eslint@8.57.0): @@ -2235,7 +2274,7 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 - debug: 4.3.4 + debug: 4.3.4(supports-color@5.5.0) espree: 9.6.1 globals: 13.24.0 ignore: 5.3.1 @@ -2927,7 +2966,7 @@ packages: engines: {node: '>=10.10.0'} dependencies: '@humanwhocodes/object-schema': 2.0.3 - debug: 4.3.4 + debug: 4.3.4(supports-color@5.5.0) minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -3235,6 +3274,13 @@ packages: '@jridgewell/sourcemap-codec': 1.4.15 dev: true + /@jridgewell/trace-mapping@0.3.9: + resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.4.15 + dev: true + /@kamilkisiela/fast-url-parser@1.1.4: resolution: {integrity: sha512-gbkePEBupNydxCelHCESvFSFM8XPh1Zs/OAVRW/rKpEqPAl5PbOM90Si8mv9bvnR53uPD2s/FiRxdvSejpRJew==} dev: false @@ -3322,7 +3368,7 @@ packages: dependencies: '@libp2p/interface-peer-id': 2.0.2 '@multiformats/multiaddr': 12.2.1 - debug: 4.3.4 + debug: 4.3.4(supports-color@5.5.0) interface-datastore: 8.2.11 multiformats: 11.0.2 transitivePeerDependencies: @@ -3615,7 +3661,7 @@ packages: dependencies: '@babel/runtime': 7.24.1 - /@polkadot/util-crypto@7.9.2(@polkadot/util@12.6.2): + /@polkadot/util-crypto@7.9.2(@polkadot/util@7.9.2): resolution: {integrity: sha512-nNwqUwP44eCH9jKKcPie+IHLKkg9LMe6H7hXo91hy3AtoslnNrT51tP3uAm5yllhLvswJfnAgnlHq7ybCgqeFw==} engines: {node: '>=14.0.0'} peerDependencies: @@ -3623,8 +3669,8 @@ packages: dependencies: '@babel/runtime': 7.24.1 '@polkadot/networks': 7.9.2 - '@polkadot/util': 12.6.2 - '@polkadot/wasm-crypto': 4.6.1(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@7.9.2) + '@polkadot/util': 7.9.2 + '@polkadot/wasm-crypto': 4.6.1(@polkadot/util@7.9.2)(@polkadot/x-randomvalues@7.9.2) '@polkadot/x-randomvalues': 7.9.2 blakejs: 1.2.1 bn.js: 4.12.0 @@ -3638,37 +3684,37 @@ packages: tweetnacl: 1.0.3 xxhashjs: 0.2.2 - /@polkadot/util@12.6.2: - resolution: {integrity: sha512-l8TubR7CLEY47240uki0TQzFvtnxFIO7uI/0GoWzpYD/O62EIAMRsuY01N4DuwgKq2ZWD59WhzsLYmA5K6ksdw==} - engines: {node: '>=18'} + /@polkadot/util@7.9.2: + resolution: {integrity: sha512-6ABY6ErgkCsM4C6+X+AJSY4pBGwbKlHZmUtHftaiTvbaj4XuA4nTo3GU28jw8wY0Jh2cJZJvt6/BJ5GVkm5tBA==} + engines: {node: '>=14.0.0'} dependencies: - '@polkadot/x-bigint': 12.6.2 - '@polkadot/x-global': 12.6.2 - '@polkadot/x-textdecoder': 12.6.2 - '@polkadot/x-textencoder': 12.6.2 - '@types/bn.js': 5.1.5 - bn.js: 5.2.1 - tslib: 2.6.2 + '@babel/runtime': 7.24.1 + '@polkadot/x-textdecoder': 7.9.2 + '@polkadot/x-textencoder': 7.9.2 + '@types/bn.js': 4.11.6 + bn.js: 4.12.0 + camelcase: 6.3.0 + ip-regex: 4.3.0 - /@polkadot/wasm-crypto-asmjs@4.6.1(@polkadot/util@12.6.2): + /@polkadot/wasm-crypto-asmjs@4.6.1(@polkadot/util@7.9.2): resolution: {integrity: sha512-1oHQjz2oEO1kCIcQniOP+dZ9N2YXf2yCLHLsKaKSvfXiWaetVCaBNB8oIHIVYvuLnVc8qlMi66O6xc1UublHsw==} engines: {node: '>=14.0.0'} peerDependencies: '@polkadot/util': '*' dependencies: '@babel/runtime': 7.24.1 - '@polkadot/util': 12.6.2 + '@polkadot/util': 7.9.2 - /@polkadot/wasm-crypto-wasm@4.6.1(@polkadot/util@12.6.2): + /@polkadot/wasm-crypto-wasm@4.6.1(@polkadot/util@7.9.2): resolution: {integrity: sha512-NI3JVwmLjrSYpSVuhu0yeQYSlsZrdpK41UC48sY3kyxXC71pi6OVePbtHS1K3xh3FFmDd9srSchExi3IwzKzMw==} engines: {node: '>=14.0.0'} peerDependencies: '@polkadot/util': '*' dependencies: '@babel/runtime': 7.24.1 - '@polkadot/util': 12.6.2 + '@polkadot/util': 7.9.2 - /@polkadot/wasm-crypto@4.6.1(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@7.9.2): + /@polkadot/wasm-crypto@4.6.1(@polkadot/util@7.9.2)(@polkadot/x-randomvalues@7.9.2): resolution: {integrity: sha512-2wEftBDxDG+TN8Ah6ogtvzjdZdcF0mAjU4UNNOfpmkBCxQYZOrAHB8HXhzo3noSsKkLX7PDX57NxvJ9OhoTAjw==} engines: {node: '>=14.0.0'} peerDependencies: @@ -3676,24 +3722,11 @@ packages: '@polkadot/x-randomvalues': '*' dependencies: '@babel/runtime': 7.24.1 - '@polkadot/util': 12.6.2 - '@polkadot/wasm-crypto-asmjs': 4.6.1(@polkadot/util@12.6.2) - '@polkadot/wasm-crypto-wasm': 4.6.1(@polkadot/util@12.6.2) + '@polkadot/util': 7.9.2 + '@polkadot/wasm-crypto-asmjs': 4.6.1(@polkadot/util@7.9.2) + '@polkadot/wasm-crypto-wasm': 4.6.1(@polkadot/util@7.9.2) '@polkadot/x-randomvalues': 7.9.2 - /@polkadot/x-bigint@12.6.2: - resolution: {integrity: sha512-HSIk60uFPX4GOFZSnIF7VYJz7WZA7tpFJsne7SzxOooRwMTWEtw3fUpFy5cYYOeLh17/kHH1Y7SVcuxzVLc74Q==} - engines: {node: '>=18'} - dependencies: - '@polkadot/x-global': 12.6.2 - tslib: 2.6.2 - - /@polkadot/x-global@12.6.2: - resolution: {integrity: sha512-a8d6m+PW98jmsYDtAWp88qS4dl8DyqUBsd0S+WgyfSMtpEXu6v9nXDgPZgwF5xdDvXhm+P0ZfVkVTnIGrScb5g==} - engines: {node: '>=18'} - dependencies: - tslib: 2.6.2 - /@polkadot/x-global@7.9.2: resolution: {integrity: sha512-JX5CrGWckHf1P9xKXq4vQCAuMUbL81l2hOWX7xeP8nv4caHEpmf5T1wD1iMdQBL5PFifo6Pg0V6/oZBB+bts7A==} engines: {node: '>=14.0.0'} @@ -3707,19 +3740,19 @@ packages: '@babel/runtime': 7.24.1 '@polkadot/x-global': 7.9.2 - /@polkadot/x-textdecoder@12.6.2: - resolution: {integrity: sha512-M1Bir7tYvNappfpFWXOJcnxUhBUFWkUFIdJSyH0zs5LmFtFdbKAeiDXxSp2Swp5ddOZdZgPac294/o2TnQKN1w==} - engines: {node: '>=18'} + /@polkadot/x-textdecoder@7.9.2: + resolution: {integrity: sha512-wfwbSHXPhrOAl12QvlIOGNkMH/N/h8PId2ytIjvM/8zPPFB5Il6DWSFLtVapOGEpIFjEWbd5t8Td4pHBVXIEbg==} + engines: {node: '>=14.0.0'} dependencies: - '@polkadot/x-global': 12.6.2 - tslib: 2.6.2 + '@babel/runtime': 7.24.1 + '@polkadot/x-global': 7.9.2 - /@polkadot/x-textencoder@12.6.2: - resolution: {integrity: sha512-4N+3UVCpI489tUJ6cv3uf0PjOHvgGp9Dl+SZRLgFGt9mvxnvpW/7+XBADRMtlG4xi5gaRK7bgl5bmY6OMDsNdw==} - engines: {node: '>=18'} + /@polkadot/x-textencoder@7.9.2: + resolution: {integrity: sha512-A19wwYINuZwU2dUyQ/mMzB0ISjyfc4cISfL4zCMUAVgj7xVoXMYV2GfjNdMpA8Wsjch3su6pxLbtJ2wU03sRTQ==} + engines: {node: '>=14.0.0'} dependencies: - '@polkadot/x-global': 12.6.2 - tslib: 2.6.2 + '@babel/runtime': 7.24.1 + '@polkadot/x-global': 7.9.2 /@protobufjs/aspromise@1.1.2: resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==} @@ -3834,6 +3867,10 @@ packages: transitivePeerDependencies: - encoding + /@stablelib/aead@1.0.1: + resolution: {integrity: sha512-q39ik6sxGHewqtO0nP4BuSe3db5G1fEJE8ukvngS2gLkBXyy6E7pLubhbYgnkDFv6V8cWaxcE4Xn0t6LWcJkyg==} + dev: true + /@stablelib/binary@1.0.1: resolution: {integrity: sha512-ClJWvmL6UBM/wjkvv/7m5VP3GMr9t0osr4yVgLZsLCOz4hGN9gIAFEqnJ0TsSMAN+n840nf2cHZnA5/KFqHC7Q==} dependencies: @@ -3846,6 +3883,32 @@ packages: '@stablelib/hash': 1.0.1 '@stablelib/wipe': 1.0.1 + /@stablelib/bytes@1.0.1: + resolution: {integrity: sha512-Kre4Y4kdwuqL8BR2E9hV/R5sOrUj6NanZaZis0V6lX5yzqC3hBuVSDXUIBqQv/sCpmuWRiHLwqiT1pqqjuBXoQ==} + dev: true + + /@stablelib/chacha20poly1305@1.0.1: + resolution: {integrity: sha512-MmViqnqHd1ymwjOQfghRKw2R/jMIGT3wySN7cthjXCBdO+qErNPUBnRzqNpnvIwg7JBCg3LdeCZZO4de/yEhVA==} + dependencies: + '@stablelib/aead': 1.0.1 + '@stablelib/binary': 1.0.1 + '@stablelib/chacha': 1.0.1 + '@stablelib/constant-time': 1.0.1 + '@stablelib/poly1305': 1.0.1 + '@stablelib/wipe': 1.0.1 + dev: true + + /@stablelib/chacha@1.0.1: + resolution: {integrity: sha512-Pmlrswzr0pBzDofdFuVe1q7KdsHKhhU24e8gkEwnTGOmlC7PADzLVxGdn2PoNVBBabdg0l/IfLKg6sHAbTQugg==} + dependencies: + '@stablelib/binary': 1.0.1 + '@stablelib/wipe': 1.0.1 + dev: true + + /@stablelib/constant-time@1.0.1: + resolution: {integrity: sha512-tNOs3uD0vSJcK6z1fvef4Y+buN7DXhzHDPqRLSXUel1UfqMB1PWNsnnAezrKfEwTLpN0cGH2p9NNjs6IqeD0eg==} + dev: true + /@stablelib/ed25519@1.0.3: resolution: {integrity: sha512-puIMWaX9QlRsbhxfDc5i+mNPMY+0TmQEskunY1rZEBPi1acBCVQAhnsk/1Hk50DGPtVsZtAWQg4NHGlVaO9Hqg==} dependencies: @@ -3862,6 +3925,19 @@ packages: /@stablelib/int@1.0.1: resolution: {integrity: sha512-byr69X/sDtDiIjIV6m4roLVWnNNlRGzsvxw+agj8CIEazqWGOQp2dTYgQhtyVXV9wpO6WyXRQUzLV/JRNumT2w==} + /@stablelib/keyagreement@1.0.1: + resolution: {integrity: sha512-VKL6xBwgJnI6l1jKrBAfn265cspaWBPAPEc62VBQrWHLqVgNRE09gQ/AnOEyKUWrrqfD+xSQ3u42gJjLDdMDQg==} + dependencies: + '@stablelib/bytes': 1.0.1 + dev: true + + /@stablelib/poly1305@1.0.1: + resolution: {integrity: sha512-1HlG3oTSuQDOhSnLwJRKeTRSAdFNVB/1djy2ZbS35rBSJ/PFqx9cf9qatinWghC2UbfOYD8AcrtbUQl8WoxabA==} + dependencies: + '@stablelib/constant-time': 1.0.1 + '@stablelib/wipe': 1.0.1 + dev: true + /@stablelib/random@1.0.2: resolution: {integrity: sha512-rIsE83Xpb7clHPVRlBj8qNe5L8ISQOzjghYQm/dZ7VaM2KHYwMW5adjQjrzTZCchFnNCNhkwtnOBa9HTMJCI8w==} dependencies: @@ -3892,6 +3968,32 @@ packages: /@stablelib/wipe@1.0.1: resolution: {integrity: sha512-WfqfX/eXGiAd3RJe4VU2snh/ZPwtSjLG4ynQ/vYzvghTh7dHFcI1wl+nrkWG6lGhukOxOsUHfv8dUXr58D0ayg==} + /@stablelib/x25519@1.0.3: + resolution: {integrity: sha512-KnTbKmUhPhHavzobclVJQG5kuivH+qDLpe84iRqX3CLrKp881cF160JvXJ+hjn1aMyCwYOKeIZefIH/P5cJoRw==} + dependencies: + '@stablelib/keyagreement': 1.0.1 + '@stablelib/random': 1.0.2 + '@stablelib/wipe': 1.0.1 + dev: true + + /@stablelib/xchacha20@1.0.1: + resolution: {integrity: sha512-1YkiZnFF4veUwBVhDnDYwo6EHeKzQK4FnLiO7ezCl/zu64uG0bCCAUROJaBkaLH+5BEsO3W7BTXTguMbSLlWSw==} + dependencies: + '@stablelib/binary': 1.0.1 + '@stablelib/chacha': 1.0.1 + '@stablelib/wipe': 1.0.1 + dev: true + + /@stablelib/xchacha20poly1305@1.0.1: + resolution: {integrity: sha512-B1Abj0sMJ8h3HNmGnJ7vHBrAvxuNka6cJJoZ1ILN7iuacXp7sUYcgOVEOTLWj+rtQMpspY9tXSCRLPmN1mQNWg==} + dependencies: + '@stablelib/aead': 1.0.1 + '@stablelib/chacha20poly1305': 1.0.1 + '@stablelib/constant-time': 1.0.1 + '@stablelib/wipe': 1.0.1 + '@stablelib/xchacha20': 1.0.1 + dev: true + /@stacks/common@6.13.0: resolution: {integrity: sha512-wwzyihjaSdmL6NxKvDeayy3dqM0L0Q2sawmdNtzJDi0FnXuJGm5PeapJj7bEfcI9XwI7Bw5jZoC6mCn9nc5YIw==} dependencies: @@ -4142,6 +4244,22 @@ packages: requiresBuild: true optional: true + /@tsconfig/node10@1.0.11: + resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==} + dev: true + + /@tsconfig/node12@1.0.11: + resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} + dev: true + + /@tsconfig/node14@1.0.3: + resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} + dev: true + + /@tsconfig/node16@1.0.4: + resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} + dev: true + /@types/abstract-leveldown@5.0.2: resolution: {integrity: sha512-+jA1XXF3jsz+Z7FcuiNqgK53hTa/luglT2TyTpKPqoYbxVY+mCPF22Rm+q3KPBrMHJwNXFrTViHszBOfU4vftQ==} dev: false @@ -4175,17 +4293,21 @@ packages: '@babel/types': 7.24.0 dev: true + /@types/bn.js@4.11.6: + resolution: {integrity: sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==} + dependencies: + '@types/node': 20.12.7 + /@types/bn.js@5.1.5: resolution: {integrity: sha512-V46N0zwKRF5Q00AZ6hWtN0T8gGmDUaUzLWQvHFo5yThtVwK/VCenFY3wXVbOvNfajEpsTfQM4IN9k/d6gUVX3A==} dependencies: - '@types/node': 18.19.31 + '@types/node': 20.12.7 /@types/body-parser@1.19.5: resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} dependencies: '@types/connect': 3.4.38 '@types/node': 20.12.7 - dev: false /@types/bs58check@2.1.2: resolution: {integrity: sha512-xpXaQlOIY1KoXlA/ytHGHpEIU87PJt+g9SH7nC6HdCgaBwT2IEZIwBMHbjuX6BpnfbiUMlmwqurdLDwXpcdmSA==} @@ -4204,7 +4326,12 @@ packages: resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} dependencies: '@types/node': 20.12.7 - dev: false + + /@types/cors@2.8.15: + resolution: {integrity: sha512-n91JxbNLD8eQIuXDIChAN1tCKNWCEgpceU9b7ZMbFA+P+Q4yIeh80jizFLEvolRPc1ES0VdwFlGv+kJTSirogw==} + dependencies: + '@types/node': 20.12.7 + dev: true /@types/dns-packet@5.6.5: resolution: {integrity: sha512-qXOC7XLOEe43ehtWJCMnQXvgcIpv6rPmQ1jXT98Ad8A3TB1Ue50jsCbSSSyuazScEuZ/Q026vHbrOTVkmwA+7Q==} @@ -4222,7 +4349,6 @@ packages: '@types/qs': 6.9.14 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 - dev: false /@types/express@4.17.21: resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==} @@ -4231,7 +4357,6 @@ packages: '@types/express-serve-static-core': 4.19.0 '@types/qs': 6.9.14 '@types/serve-static': 1.15.7 - dev: false /@types/graceful-fs@4.1.9: resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} @@ -4244,7 +4369,6 @@ packages: /@types/http-errors@2.0.4: resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==} - dev: false /@types/istanbul-lib-coverage@2.0.6: resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} @@ -4284,7 +4408,6 @@ packages: /@types/mime@1.3.5: resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} - dev: false /@types/minimatch@3.0.5: resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} @@ -4315,11 +4438,9 @@ packages: /@types/qs@6.9.14: resolution: {integrity: sha512-5khscbd3SwWMhFqylJBLQ0zIu7c1K6Vz0uBIt915BI3zV0q1nfjRQD3RqSBcPaO6PHEF4ov/t9y89fSiyThlPA==} - dev: false /@types/range-parser@1.2.7: resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} - dev: false /@types/responselike@1.0.3: resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} @@ -4335,7 +4456,6 @@ packages: dependencies: '@types/mime': 1.3.5 '@types/node': 20.12.7 - dev: false /@types/serve-static@1.15.7: resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==} @@ -4343,7 +4463,6 @@ packages: '@types/http-errors': 2.0.4 '@types/node': 20.12.7 '@types/send': 0.17.4 - dev: false /@types/stack-utils@2.0.3: resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} @@ -4376,7 +4495,7 @@ packages: '@typescript-eslint/type-utils': 6.21.0(eslint@8.57.0)(typescript@5.4.4) '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.4) '@typescript-eslint/visitor-keys': 6.21.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@5.5.0) eslint: 8.57.0 graphemer: 1.4.0 ignore: 5.3.1 @@ -4405,7 +4524,7 @@ packages: '@typescript-eslint/type-utils': 7.6.0(eslint@8.57.0)(typescript@5.4.4) '@typescript-eslint/utils': 7.6.0(eslint@8.57.0)(typescript@5.4.4) '@typescript-eslint/visitor-keys': 7.6.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@5.5.0) eslint: 8.57.0 graphemer: 1.4.0 ignore: 5.3.1 @@ -4431,7 +4550,7 @@ packages: '@typescript-eslint/types': 6.21.0 '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.4) '@typescript-eslint/visitor-keys': 6.21.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@5.5.0) eslint: 8.57.0 typescript: 5.4.4 transitivePeerDependencies: @@ -4452,7 +4571,7 @@ packages: '@typescript-eslint/types': 7.6.0 '@typescript-eslint/typescript-estree': 7.6.0(typescript@5.4.4) '@typescript-eslint/visitor-keys': 7.6.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@5.5.0) eslint: 8.57.0 typescript: 5.4.4 transitivePeerDependencies: @@ -4495,7 +4614,7 @@ packages: dependencies: '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.4) '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.4) - debug: 4.3.4 + debug: 4.3.4(supports-color@5.5.0) eslint: 8.57.0 ts-api-utils: 1.3.0(typescript@5.4.4) typescript: 5.4.4 @@ -4515,7 +4634,7 @@ packages: dependencies: '@typescript-eslint/typescript-estree': 7.6.0(typescript@5.4.4) '@typescript-eslint/utils': 7.6.0(eslint@8.57.0)(typescript@5.4.4) - debug: 4.3.4 + debug: 4.3.4(supports-color@5.5.0) eslint: 8.57.0 ts-api-utils: 1.3.0(typescript@5.4.4) typescript: 5.4.4 @@ -4549,7 +4668,7 @@ packages: dependencies: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@5.5.0) globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.0 @@ -4570,7 +4689,7 @@ packages: dependencies: '@typescript-eslint/types': 6.21.0 '@typescript-eslint/visitor-keys': 6.21.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@5.5.0) globby: 11.1.0 is-glob: 4.0.3 minimatch: 9.0.3 @@ -4592,7 +4711,7 @@ packages: dependencies: '@typescript-eslint/types': 7.6.0 '@typescript-eslint/visitor-keys': 7.6.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@5.5.0) globby: 11.1.0 is-glob: 4.0.3 minimatch: 9.0.4 @@ -4740,7 +4859,6 @@ packages: /abbrev@1.1.1: resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} requiresBuild: true - optional: true /abitype@0.9.8(typescript@5.4.4): resolution: {integrity: sha512-puLifILdm+8sjyss4S+fsUN09obiT1g2YW6CtcQF+QDzxR0euzgEB29MZujC6zMk2a6SVmtttq1fc6+YFA7WYQ==} @@ -4810,6 +4928,11 @@ packages: acorn: 8.11.3 dev: true + /acorn-walk@8.3.2: + resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==} + engines: {node: '>=0.4.0'} + dev: true + /acorn@8.11.3: resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} engines: {node: '>=0.4.0'} @@ -4824,7 +4947,7 @@ packages: engines: {node: '>= 6.0.0'} requiresBuild: true dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@5.5.0) transitivePeerDependencies: - supports-color optional: true @@ -4946,6 +5069,10 @@ packages: readable-stream: 3.6.2 optional: true + /arg@4.1.3: + resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} + dev: true + /argparse@1.0.10: resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} dependencies: @@ -5204,9 +5331,18 @@ packages: /bech32@1.1.4: resolution: {integrity: sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==} + /bech32@2.0.0: + resolution: {integrity: sha512-LcknSilhIGatDAsY1ak2I8VtGaHNhgMSYVxFrGLXv+xLHytaKZKcaUJJUE7qmBr7h33o5YQwP55pMI0xmkpJwg==} + dev: true + /bigi@1.4.2: resolution: {integrity: sha512-ddkU+dFIuEIW8lE7ZwdIAf2UPoM90eaprg5m3YXAVVTmKlqV/9BX4A2M8BOK2yOq6/VgZFVhK6QAxJebhlbhzw==} + /bigint-mod-arith@3.3.1: + resolution: {integrity: sha512-pX/cYW3dCa87Jrzv6DAr8ivbbJRzEX5yGhdt8IutnX/PCIXfpx+mabWNK/M8qqh+zQ0J3thftUBHW0ByuUlG0w==} + engines: {node: '>=10.4.0'} + dev: true + /bin-check@4.1.0: resolution: {integrity: sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==} engines: {node: '>=4'} @@ -5232,6 +5368,11 @@ packages: find-versions: 5.1.0 dev: true + /binary-extensions@2.3.0: + resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} + engines: {node: '>=8'} + dev: true + /binary@0.3.0: resolution: {integrity: sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==} dependencies: @@ -5328,7 +5469,7 @@ packages: /borsh@0.6.0: resolution: {integrity: sha512-sl5k89ViqsThXQpYa9XDtz1sBl3l1lI313cFUY1HKr+wvMILnb+58xpkqTNrYbelh99dY7K8usxoCusQmqix9Q==} dependencies: - bn.js: 5.2.0 + bn.js: 5.2.1 bs58: 4.0.1 text-encoding-utf-8: 1.0.2 @@ -5564,7 +5705,6 @@ packages: /camelcase@6.3.0: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} - dev: true /caniuse-lite@1.0.30001600: resolution: {integrity: sha512-+2S9/2JFhYmYaDpZvo0lKkfvuKIglrx68MwOBqMGHhQsNkLjB5xtc/TGoEPs+MxjSyN/72qer2g97nzR641mOQ==} @@ -5629,6 +5769,21 @@ packages: engines: {node: '>=10'} dev: true + /chokidar@3.6.0: + resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} + engines: {node: '>= 8.10.0'} + dependencies: + anymatch: 3.1.3 + braces: 3.0.2 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.6.0 + optionalDependencies: + fsevents: 2.3.3 + dev: true + /chownr@1.1.4: resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} @@ -5835,6 +5990,10 @@ packages: - ts-node dev: true + /create-require@1.1.1: + resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} + dev: true + /cron-parser@4.9.0: resolution: {integrity: sha512-p0SaNjrHOnQeR8/VnfGbmg9te2kfyYSQ7Sc/j/6DtPL3JQvKxmjO9TSjNFpujqV3vEYYBvNNvXSxzyksBWAx1Q==} engines: {node: '>=12.0.0'} @@ -5953,7 +6112,7 @@ packages: ms: 2.1.3 dev: true - /debug@4.3.4: + /debug@4.3.4(supports-color@5.5.0): resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} engines: {node: '>=6.0'} peerDependencies: @@ -5963,6 +6122,7 @@ packages: optional: true dependencies: ms: 2.1.2 + supports-color: 5.5.0 /decamelize-keys@1.1.1: resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} @@ -6104,6 +6264,23 @@ packages: engines: {node: '>=8'} dev: true + /did-jwt@6.11.6: + resolution: {integrity: sha512-OfbWknRxJuUqH6Lk0x+H1FsuelGugLbBDEwsoJnicFOntIG/A4y19fn0a8RLxaQbWQ5gXg0yDq5E2huSBiiXzw==} + dependencies: + '@stablelib/ed25519': 1.0.3 + '@stablelib/random': 1.0.2 + '@stablelib/sha256': 1.0.1 + '@stablelib/x25519': 1.0.3 + '@stablelib/xchacha20poly1305': 1.0.1 + bech32: 2.0.0 + canonicalize: 2.0.0 + did-resolver: 4.1.0 + elliptic: 6.5.5 + js-sha3: 0.8.0 + multiformats: 9.9.0 + uint8arrays: 3.1.1 + dev: true + /did-jwt@7.4.7: resolution: {integrity: sha512-Apz7nIfIHSKWIMaEP5L/K8xkwByvjezjTG0xiqwKdnNj1x8M0+Yasury5Dm/KPltxi2PlGfRPf3IejRKZrT8mQ==} dependencies: @@ -6163,6 +6340,11 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dev: true + /diff@4.0.2: + resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} + engines: {node: '>=0.3.1'} + dev: true + /dir-glob@3.0.1: resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} engines: {node: '>=8'} @@ -6173,7 +6355,7 @@ packages: /dns-over-http-resolver@2.1.3: resolution: {integrity: sha512-zjRYFhq+CsxPAouQWzOsxNMvEN+SHisjzhX8EMxd2Y0EG3thvn6wXQgMJLnTDImkhe4jhLbOQpXtL10nALBOSA==} dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@5.5.0) native-fetch: 4.0.2(undici@5.28.4) receptacle: 1.3.2 undici: 5.28.4 @@ -6200,6 +6382,11 @@ packages: esutils: 2.0.3 dev: true + /dotenv@16.3.1: + resolution: {integrity: sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==} + engines: {node: '>=12'} + dev: false + /dset@3.1.3: resolution: {integrity: sha512-20TuZZHCEZ2O71q9/+8BwKwZ0QtD9D8ObhrihJPr+vLLYlSuAU3/zL4cSlgbfeoGHTjCSJBa7NGcrF9/Bx/WJQ==} engines: {node: '>=4'} @@ -6487,7 +6674,6 @@ packages: '@esbuild/win32-arm64': 0.19.12 '@esbuild/win32-ia32': 0.19.12 '@esbuild/win32-x64': 0.19.12 - dev: true /escalade@3.1.2: resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} @@ -6524,7 +6710,7 @@ packages: '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.4) eslint-config-prettier: 8.10.0(eslint@8.57.0) eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0)(eslint-plugin-import@2.29.1)(eslint@8.57.0) - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.6.0)(eslint@8.57.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@6.21.0)(eslint@8.57.0)(jest@29.7.0)(typescript@5.4.4) eslint-plugin-prettier: 5.1.3(eslint-config-prettier@8.10.0)(eslint@8.57.0)(prettier@3.2.5) eslint-plugin-react: 7.34.1(eslint@8.57.0) @@ -6566,11 +6752,11 @@ packages: eslint: '*' eslint-plugin-import: '*' dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@5.5.0) enhanced-resolve: 5.16.0 eslint: 8.57.0 eslint-module-utils: 2.8.1(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.6.0)(eslint@8.57.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) fast-glob: 3.3.2 get-tsconfig: 4.7.3 is-core-module: 2.13.1 @@ -6612,36 +6798,7 @@ packages: - supports-color dev: true - /eslint-module-utils@2.8.1(@typescript-eslint/parser@7.6.0)(eslint-import-resolver-node@0.3.9)(eslint@8.57.0): - resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==} - engines: {node: '>=4'} - peerDependencies: - '@typescript-eslint/parser': '*' - eslint: '*' - eslint-import-resolver-node: '*' - eslint-import-resolver-typescript: '*' - eslint-import-resolver-webpack: '*' - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true - eslint: - optional: true - eslint-import-resolver-node: - optional: true - eslint-import-resolver-typescript: - optional: true - eslint-import-resolver-webpack: - optional: true - dependencies: - '@typescript-eslint/parser': 7.6.0(eslint@8.57.0)(typescript@5.4.4) - debug: 3.2.7 - eslint: 8.57.0 - eslint-import-resolver-node: 0.3.9 - transitivePeerDependencies: - - supports-color - dev: true - - /eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.6.0)(eslint@8.57.0): + /eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0): resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} engines: {node: '>=4'} peerDependencies: @@ -6651,7 +6808,7 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 7.6.0(eslint@8.57.0)(typescript@5.4.4) + '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.4) array-includes: 3.1.8 array.prototype.findlastindex: 1.2.5 array.prototype.flat: 1.3.2 @@ -6660,7 +6817,7 @@ packages: doctrine: 2.1.0 eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.6.0)(eslint-import-resolver-node@0.3.9)(eslint@8.57.0) + eslint-module-utils: 2.8.1(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) hasown: 2.0.2 is-core-module: 2.13.1 is-glob: 4.0.3 @@ -6814,7 +6971,7 @@ packages: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.4 + debug: 4.3.4(supports-color@5.5.0) doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.2.2 @@ -6917,6 +7074,12 @@ packages: md5.js: 1.3.5 safe-buffer: 5.2.1 + /exec@0.2.1: + resolution: {integrity: sha512-lE5ZlJgRYh+rmwidatL2AqRA/U9IBoCpKlLriBmnfUIrV/Rj4oLjb63qZ57iBCHWi5j9IjLt5wOWkFYPiTfYAg==} + engines: {node: '>= v0.9.1'} + deprecated: deprecated in favor of builtin child_process.execFile + dev: false + /execa@0.7.0: resolution: {integrity: sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==} engines: {node: '>=4'} @@ -7271,7 +7434,6 @@ packages: engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} os: [darwin] requiresBuild: true - dev: true optional: true /function-bind@1.1.2: @@ -7366,7 +7528,6 @@ packages: resolution: {integrity: sha512-ZvkrzoUA0PQZM6fy6+/Hce561s+faD1rsNwhnO5FelNjyy7EMGJ3Rz1AQ8GYDWjhRs/7dBLOEJvhK8MiEJOAFg==} dependencies: resolve-pkg-maps: 1.0.0 - dev: true /getopts@2.3.0: resolution: {integrity: sha512-5eDf9fuSXwxBL6q5HX+dhDj+dslFGWzU5thZ9kNKUkcPtaPdatmUFKwHFrLb/uf/WpA4BHET+AX3Scl56cAjpA==} @@ -7564,7 +7725,6 @@ packages: /has-flag@3.0.0: resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} engines: {node: '>=4'} - dev: true /has-flag@4.0.0: resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} @@ -7675,7 +7835,7 @@ packages: dependencies: '@tootallnate/once': 1.1.2 agent-base: 6.0.2 - debug: 4.3.4 + debug: 4.3.4(supports-color@5.5.0) transitivePeerDependencies: - supports-color optional: true @@ -7697,7 +7857,7 @@ packages: requiresBuild: true dependencies: agent-base: 6.0.2 - debug: 4.3.4 + debug: 4.3.4(supports-color@5.5.0) transitivePeerDependencies: - supports-color optional: true @@ -7739,6 +7899,10 @@ packages: /ieee754@1.2.1: resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + /ignore-by-default@1.0.1: + resolution: {integrity: sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==} + dev: true + /ignore@5.3.1: resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} engines: {node: '>= 4'} @@ -7840,6 +8004,10 @@ packages: sprintf-js: 1.1.3 optional: true + /ip-regex@4.3.0: + resolution: {integrity: sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==} + engines: {node: '>=8'} + /ipaddr.js@1.9.1: resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} engines: {node: '>= 0.10'} @@ -8004,6 +8172,13 @@ packages: has-bigints: 1.0.2 dev: true + /is-binary-path@2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + dependencies: + binary-extensions: 2.3.0 + dev: true + /is-boolean-object@1.1.2: resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} engines: {node: '>= 0.4'} @@ -8277,7 +8452,7 @@ packages: resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} engines: {node: '>=10'} dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@5.5.0) istanbul-lib-coverage: 3.2.2 source-map: 0.6.1 transitivePeerDependencies: @@ -8899,6 +9074,17 @@ packages: object.values: 1.2.0 dev: true + /key-did-provider-ed25519@2.0.1: + resolution: {integrity: sha512-FaB2g7zUAeN/bLaFl2YSNQx9NsxgDd/3TR1YGvoXLhENsvZBdyA2V7hX8/MZhZ5jm82wL5lRw3O4UXuz/pJANQ==} + engines: {node: '>=14.14'} + dependencies: + '@stablelib/ed25519': 1.0.3 + did-jwt: 6.11.6 + fast-json-stable-stringify: 2.1.0 + rpc-utils: 0.6.2 + uint8arrays: 3.1.1 + dev: true + /key-did-provider-ed25519@3.0.2: resolution: {integrity: sha512-4Yw0CeO1hKRaUsh9NIz4tn4Ysr09CdoJItyT0vHjd5iedJ+FvVt7pTbNr7IY0/+8mWvYslutAK5LFrwu5agpsA==} engines: {node: '>=14.14'} @@ -8928,6 +9114,16 @@ packages: - zod dev: false + /key-did-resolver@2.1.3: + resolution: {integrity: sha512-zEDHuM9mictWyj8lKO72uqjvsgz7Eu2hioI4gvAEA4IbB9ojBiBcshMt0ptOmFKV6WqBnxW2gTH4eO5Zj4LUMQ==} + dependencies: + '@stablelib/ed25519': 1.0.3 + bigint-mod-arith: 3.3.1 + multiformats: 9.9.0 + uint8arrays: 3.1.1 + varint: 6.0.0 + dev: true + /key-did-resolver@4.0.0: resolution: {integrity: sha512-+U2nd/0rjO4Yqe2hnHBD7ygcLRfT43Oje9IIjv1BlBi0lopwxZpIFQ7GekguOHK02r+JGdl8mpJVNHs5lvXVOA==} engines: {node: '>=14.14'} @@ -8988,7 +9184,7 @@ packages: dependencies: colorette: 2.0.19 commander: 10.0.1 - debug: 4.3.4 + debug: 4.3.4(supports-color@5.5.0) escalade: 3.1.2 esm: 3.2.25 get-package-type: 0.1.0 @@ -9319,6 +9515,10 @@ packages: semver: 7.6.0 dev: true + /make-error@1.3.6: + resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} + dev: true + /make-fetch-happen@9.1.0: resolution: {integrity: sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==} engines: {node: '>= 10'} @@ -9791,6 +9991,30 @@ packages: resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} dev: true + /nodemon@3.1.0: + resolution: {integrity: sha512-xqlktYlDMCepBJd43ZQhjWwMw2obW/JRvkrLxq5RCNcuDDX1DbcPT+qT1IlIIdf+DhnWs90JpTMe+Y5KxOchvA==} + engines: {node: '>=10'} + hasBin: true + dependencies: + chokidar: 3.6.0 + debug: 4.3.4(supports-color@5.5.0) + ignore-by-default: 1.0.1 + minimatch: 3.1.2 + pstree.remy: 1.1.8 + semver: 7.6.0 + simple-update-notifier: 2.0.0 + supports-color: 5.5.0 + touch: 3.1.0 + undefsafe: 2.0.5 + dev: true + + /nopt@1.0.10: + resolution: {integrity: sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==} + hasBin: true + dependencies: + abbrev: 1.1.1 + dev: true + /nopt@5.0.0: resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==} engines: {node: '>=6'} @@ -10497,6 +10721,10 @@ packages: resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} dev: true + /pstree.remy@1.1.8: + resolution: {integrity: sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==} + dev: true + /pump@1.0.3: resolution: {integrity: sha512-8k0JupWme55+9tCVE+FS5ULT3K6AbgqrGa58lTT49RpyfwwcGedHqaC5LlQNdEAumn/wFsu6aPwkuPMioy8kqw==} dependencies: @@ -10657,6 +10885,13 @@ packages: readable-stream: 3.6.2 dev: true + /readdirp@3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} + dependencies: + picomatch: 2.3.1 + dev: true + /receptacle@1.3.2: resolution: {integrity: sha512-HrsFvqZZheusncQRiEE7GatOAETrARKV/lnfYicIm8lbvp/JQOdADOfhjBd2DajvoszEyxSM6RlAAIZgEoeu/A==} dependencies: @@ -10739,7 +10974,6 @@ packages: /resolve-pkg-maps@1.0.0: resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} - dev: true /resolve.exports@2.0.2: resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==} @@ -10829,7 +11063,7 @@ packages: '@types/abstract-leveldown': 5.0.2 abstract-leveldown: 6.3.0 aws-sdk: 2.1594.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@5.5.0) inherits: 2.0.4 levelup: 5.1.1 ltgt: 2.2.1 @@ -11045,6 +11279,13 @@ packages: once: 1.4.0 simple-concat: 1.0.1 + /simple-update-notifier@2.0.0: + resolution: {integrity: sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==} + engines: {node: '>=10'} + dependencies: + semver: 7.6.0 + dev: true + /sisteransi@1.0.5: resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} dev: true @@ -11071,7 +11312,7 @@ packages: requiresBuild: true dependencies: agent-base: 6.0.2 - debug: 4.3.4 + debug: 4.3.4(supports-color@5.5.0) socks: 2.8.1 transitivePeerDependencies: - supports-color @@ -11164,6 +11405,9 @@ packages: /sqlite3@5.1.7: resolution: {integrity: sha512-GGIyOiFaG+TUra3JIfkI/zGP8yZYLPQ0pl1bH+ODjiX57sPhrLU5sQJn1y9bDKZUFYkX1crlrPfSYt0BKKdkog==} requiresBuild: true + peerDependenciesMeta: + node-gyp: + optional: true dependencies: bindings: 1.5.0 node-addon-api: 7.1.0 @@ -11367,7 +11611,6 @@ packages: engines: {node: '>=4'} dependencies: has-flag: 3.0.0 - dev: true /supports-color@7.2.0: resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} @@ -11536,6 +11779,13 @@ packages: ieee754: 1.2.1 dev: true + /touch@3.1.0: + resolution: {integrity: sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==} + hasBin: true + dependencies: + nopt: 1.0.10 + dev: true + /tr46@0.0.3: resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} @@ -11564,6 +11814,38 @@ packages: typescript: 5.4.4 dev: true + /ts-node@10.9.1(@swc/core@1.4.13)(@types/node@20.12.7)(typescript@5.4.4): + resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} + hasBin: true + peerDependencies: + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': '*' + typescript: '>=2.7' + peerDependenciesMeta: + '@swc/core': + optional: true + '@swc/wasm': + optional: true + dependencies: + '@cspotcode/source-map-support': 0.8.1 + '@swc/core': 1.4.13 + '@tsconfig/node10': 1.0.11 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 20.12.7 + acorn: 8.11.3 + acorn-walk: 8.3.2 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 5.4.4 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + dev: true + /tsconfig-paths@3.15.0: resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} dependencies: @@ -11599,7 +11881,6 @@ packages: get-tsconfig: 4.7.3 optionalDependencies: fsevents: 2.3.3 - dev: true /tunnel-agent@0.6.0: resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} @@ -11853,6 +12134,10 @@ packages: which-boxed-primitive: 1.0.2 dev: true + /undefsafe@2.0.5: + resolution: {integrity: sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==} + dev: true + /undici-types@5.26.5: resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} @@ -11952,6 +12237,10 @@ packages: resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==} hasBin: true + /v8-compile-cache-lib@3.0.1: + resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} + dev: true + /v8-to-istanbul@9.2.0: resolution: {integrity: sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==} engines: {node: '>=10.12.0'} @@ -12224,6 +12513,11 @@ packages: yargs-parser: 21.1.1 dev: true + /yn@3.1.1: + resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} + engines: {node: '>=6'} + dev: true + /yocto-queue@0.1.0: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'}