diff --git a/.env.test b/.env.test index ed9b57b..49ad650 100644 --- a/.env.test +++ b/.env.test @@ -6,11 +6,15 @@ GRAPHQL_DEBUG=true GRAPHQL_PLAYGROUND=true GRAPHQL_SORT_SCHEMA=true GRAPHQL_INTROSPECTION=true -DATABASE_HOST=0.0.0.0 +DATABASE_HOST=localhost DATABASE_NAME=ink DATABASE_USERNAME=root DATABASE_PASSWORD=password +DATABASE_PORT=5432 +DATABASE_SSL_CA="" DATABASE_RETRY_ATTEMPTS=5 DATABASE_RETRY_DELAY=3000 +WS_PROVIDER=ws://127.0.0.1:9944 LOAD_ALL_BLOCKS=false FIRST_BLOCK_TO_LOAD=0 +BLOCKS_CONCURRENCY=1000 diff --git a/docker-compose.yaml b/docker-compose.yaml index e8597d3..57d869d 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -13,7 +13,8 @@ services: - postgres build: context: . - dockerfile: Dockerfile #dev.Dockefile + # dockerfile: dev.Dockerfile + dockerfile: Dockerfile ports: - 8080:8080 volumes: diff --git a/mocks/contracts-mocks.ts b/mocks/contracts-mocks.ts index 04333a1..9529bd7 100644 --- a/mocks/contracts-mocks.ts +++ b/mocks/contracts-mocks.ts @@ -1,7 +1,7 @@ import abi from './erc20' export const generateAbiInBase64 = () => { - const buff = new Buffer(JSON.stringify(abi)) + const buff = Buffer.from(JSON.stringify(abi)) const base64data = buff.toString('base64') return base64data } diff --git a/package.json b/package.json index 398d18d..6e84a31 100644 --- a/package.json +++ b/package.json @@ -83,58 +83,55 @@ }, "homepage": "https://github.com/blockcoders/ink-substrate-explorer-api#readme", "dependencies": { - "@fastify/compress": "5.0.0", - "@fastify/helmet": "8.1.0", - "@nestjs/apollo": "^10.0.19", + "@fastify/compress": "^5.0.0", + "@fastify/helmet": "^8.1.0", + "@nestjs/apollo": "^10.1.6", "@nestjs/common": "^8.4.7", "@nestjs/config": "^2.2.0", "@nestjs/core": "^8.4.7", - "@nestjs/graphql": "^10.0.21", - "@nestjs/mapped-types": "1.1.0", - "@nestjs/platform-fastify": "8.4.7", - "@nestjs/typeorm": "9.0.0", - "@polkadot/api": "^9.4.3", - "@polkadot/api-augment": "^9.4.3", - "@polkadot/api-contract": "^9.4.3", - "@polkadot/types": "^9.4.3", - "@polkadot/types-codec": "^9.4.3", - "@polkadot/types-create": "^9.4.3", - "@polkadot/util": "10.1.2", - "@substrate/txwrapper": "^7.0.1", - "@substrate/txwrapper-core": "^3.1.7", - "@substrate/txwrapper-registry": "^3.1.7", - "apollo-server-fastify": "^3.10.0", + "@nestjs/graphql": "^10.1.6", + "@nestjs/mapped-types": "^1.2.0", + "@nestjs/platform-fastify": "^8.4.7", + "@nestjs/typeorm": "^9.0.1", + "@polkadot/api": "9.8.2", + "@polkadot/api-augment": "9.8.2", + "@polkadot/api-contract": "9.8.2", + "@polkadot/types": "9.8.2", + "@polkadot/types-codec": "9.8.2", + "@polkadot/types-create": "9.8.2", + "@polkadot/util": "10.1.12", + "apollo-server-fastify": "^3.11.1", "async-await-retry": "^2.0.0", "class-transformer": "^0.5.1", "class-validator": "^0.13.2", "compression": "^1.7.4", - "fastify": "^3.17.0", - "graphql": "16.5.0", + "fastify": "^3.29.3", + "graphql": "^16.6.0", "graphql-type-json": "^0.3.2", "nestjs-pino": "^3.1.1", - "p-queue": "6.6.2", - "pg": "^8.7.3", - "pino": "^8.3.1", - "pino-http": "^8.2.0", + "p-queue": "^6.6.2", + "pg": "^8.8.0", + "pino": "^8.7.0", + "pino-http": "^8.2.1", "reflect-metadata": "^0.1.13", "rimraf": "^3.0.2", - "rxjs": "^7.5.6", - "typeorm": "^0.3.7", + "rxjs": "^7.5.7", + "typeorm": "^0.3.10", "uuid": "^8.3.2", "uuidv4": "^6.2.13" }, "devDependencies": { "@jest/types": "^28.1.3", - "@nestjs/cli": "^8.0.1", + "@nestjs/cli": "^8.2.8", "@nestjs/schematics": "^8.0.11", "@nestjs/testing": "^8.4.7", - "@types/jest": "^28.1.6", - "@types/node": "^16.11.7", + "@types/jest": "^28.1.8", + "@types/node": "^16.18.3", "@types/supertest": "^2.0.12", "@types/uuid": "^8.3.4", - "@typescript-eslint/eslint-plugin": "^5.32.0", - "@typescript-eslint/parser": "^5.32.0", - "eslint": "^8.21.0", + "@typescript-eslint/eslint-plugin": "^5.43.0", + "@typescript-eslint/parser": "^5.43.0", + "eslint": "^8.27.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-prettier": "^4.2.1", @@ -142,14 +139,13 @@ "pino-pretty": "^8.1.0", "pre-commit": "^1.2.2", "prettier": "^2.7.1", - "supertest": "^6.2.4", - "ts-jest": "^28.0.7", - "ts-loader": "^9.3.1", + "supertest": "^6.3.1", + "ts-jest": "^28.0.8", + "ts-loader": "^9.4.1", "ts-node": "^10.9.1", - "tsconfig-paths": "^4.0.0", - "typescript": "^4.7.4", - "util": "link:@types/@polkadot/util", - "webpack": "^5.74.0" + "tsconfig-paths": "^4.1.0", + "typescript": "4.7.4", + "webpack": "^5.75.0" }, "jest": { "verbose": true, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7b71472..3a9d69e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,110 +1,103 @@ lockfileVersion: 5.4 specifiers: - '@fastify/compress': 5.0.0 - '@fastify/helmet': 8.1.0 + '@fastify/compress': ^5.0.0 + '@fastify/helmet': ^8.1.0 '@jest/types': ^28.1.3 - '@nestjs/apollo': ^10.0.19 - '@nestjs/cli': ^8.0.1 + '@nestjs/apollo': ^10.1.6 + '@nestjs/cli': ^8.2.8 '@nestjs/common': ^8.4.7 '@nestjs/config': ^2.2.0 '@nestjs/core': ^8.4.7 - '@nestjs/graphql': ^10.0.21 - '@nestjs/mapped-types': 1.1.0 - '@nestjs/platform-fastify': 8.4.7 + '@nestjs/graphql': ^10.1.6 + '@nestjs/mapped-types': ^1.2.0 + '@nestjs/platform-fastify': ^8.4.7 '@nestjs/schematics': ^8.0.11 '@nestjs/testing': ^8.4.7 - '@nestjs/typeorm': 9.0.0 - '@polkadot/api': ^9.4.3 - '@polkadot/api-augment': ^9.4.3 - '@polkadot/api-contract': ^9.4.3 - '@polkadot/types': ^9.4.3 - '@polkadot/types-codec': ^9.4.3 - '@polkadot/types-create': ^9.4.3 - '@polkadot/util': 10.1.2 - '@substrate/txwrapper': ^7.0.1 - '@substrate/txwrapper-core': ^3.1.7 - '@substrate/txwrapper-registry': ^3.1.7 - '@types/jest': ^28.1.6 - '@types/node': ^16.11.7 + '@nestjs/typeorm': ^9.0.1 + '@polkadot/api': 9.8.2 + '@polkadot/api-augment': 9.8.2 + '@polkadot/api-contract': 9.8.2 + '@polkadot/types': 9.8.2 + '@polkadot/types-codec': 9.8.2 + '@polkadot/types-create': 9.8.2 + '@polkadot/util': 10.1.12 + '@types/jest': ^28.1.8 + '@types/node': ^16.18.3 '@types/supertest': ^2.0.12 '@types/uuid': ^8.3.4 - '@typescript-eslint/eslint-plugin': ^5.32.0 - '@typescript-eslint/parser': ^5.32.0 - apollo-server-fastify: ^3.10.0 + '@typescript-eslint/eslint-plugin': ^5.43.0 + '@typescript-eslint/parser': ^5.43.0 + apollo-server-fastify: ^3.11.1 async-await-retry: ^2.0.0 class-transformer: ^0.5.1 class-validator: ^0.13.2 compression: ^1.7.4 - eslint: ^8.21.0 + eslint: ^8.27.0 eslint-config-prettier: ^8.5.0 eslint-plugin-import: ^2.26.0 eslint-plugin-prettier: ^4.2.1 - fastify: ^3.17.0 - graphql: 16.5.0 + fastify: ^3.29.3 + graphql: ^16.6.0 graphql-type-json: ^0.3.2 jest: ^28.1.3 nestjs-pino: ^3.1.1 - p-queue: 6.6.2 - pg: ^8.7.3 - pino: ^8.3.1 - pino-http: ^8.2.0 + p-queue: ^6.6.2 + pg: ^8.8.0 + pino: ^8.7.0 + pino-http: ^8.2.1 pino-pretty: ^8.1.0 pre-commit: ^1.2.2 prettier: ^2.7.1 reflect-metadata: ^0.1.13 rimraf: ^3.0.2 - rxjs: ^7.5.6 - supertest: ^6.2.4 - ts-jest: ^28.0.7 - ts-loader: ^9.3.1 + rxjs: ^7.5.7 + supertest: ^6.3.1 + ts-jest: ^28.0.8 + ts-loader: ^9.4.1 ts-node: ^10.9.1 - tsconfig-paths: ^4.0.0 - typeorm: ^0.3.7 - typescript: ^4.7.4 - util: link:@types/@polkadot/util + tsconfig-paths: ^4.1.0 + typeorm: ^0.3.10 + typescript: 4.7.4 uuid: ^8.3.2 uuidv4: ^6.2.13 - webpack: ^5.74.0 + webpack: ^5.75.0 dependencies: '@fastify/compress': 5.0.0 '@fastify/helmet': 8.1.0 - '@nestjs/apollo': 10.0.19_4hwktyriqqbrdnkjkceiiy5j7i - '@nestjs/common': 8.4.7_allg6cauirbqzgqcmexy2wdnoq - '@nestjs/config': 2.2.0_zyw32gfu5yv6lfoz64j5eiekme - '@nestjs/core': 8.4.7_zyw32gfu5yv6lfoz64j5eiekme - '@nestjs/graphql': 10.0.21_azbz4vimtm5rsq3nyrt5st4aze - '@nestjs/mapped-types': 1.1.0_7zw7e46jhcfuw5vwuwho2brjki + '@nestjs/apollo': 10.1.6_oivciiyt4ozyp6qczxfjdfn3uu + '@nestjs/common': 8.4.7_x6yqyveuahcdef4z4mxykmuv6a + '@nestjs/config': 2.2.0_bkbhg4knmtesqnnagm7a2p5cuy + '@nestjs/core': 8.4.7_bkbhg4knmtesqnnagm7a2p5cuy + '@nestjs/graphql': 10.1.6_vidbvhpv4hwn234liq737aiomy + '@nestjs/mapped-types': 1.2.0_7zw7e46jhcfuw5vwuwho2brjki '@nestjs/platform-fastify': 8.4.7_7tsmhnugyerf5okgqzer2mfqme - '@nestjs/typeorm': 9.0.0_zhrs42futwpjx7z3p6twpp4g7i - '@polkadot/api': 9.4.3 - '@polkadot/api-augment': 9.4.3 - '@polkadot/api-contract': 9.4.3 - '@polkadot/types': 9.4.3 - '@polkadot/types-codec': 9.4.3 - '@polkadot/types-create': 9.4.3 - '@polkadot/util': 10.1.2 - '@substrate/txwrapper': 7.0.1 - '@substrate/txwrapper-core': 3.1.7 - '@substrate/txwrapper-registry': 3.1.7 - apollo-server-fastify: 3.10.0_fs6cl6gqybbcj7xzz72msc6zye + '@nestjs/typeorm': 9.0.1_3s6uo3vw5b67mj2ct3iregv5v4 + '@polkadot/api': 9.8.2 + '@polkadot/api-augment': 9.8.2 + '@polkadot/api-contract': 9.8.2 + '@polkadot/types': 9.8.2 + '@polkadot/types-codec': 9.8.2 + '@polkadot/types-create': 9.8.2 + '@polkadot/util': 10.1.12 + apollo-server-fastify: 3.11.1_sf3em2md5juc2kebq37yhduz24 async-await-retry: 2.0.0 class-transformer: 0.5.1 class-validator: 0.13.2 compression: 1.7.4 - fastify: 3.29.1 - graphql: 16.5.0 - graphql-type-json: 0.3.2_graphql@16.5.0 - nestjs-pino: 3.1.1_isil7xagyf5s32dueim4ljgsga + fastify: 3.29.3 + graphql: 16.6.0 + graphql-type-json: 0.3.2_graphql@16.6.0 + nestjs-pino: 3.1.1_ar6wzga4b223sd7tvh6kksb5h4 p-queue: 6.6.2 - pg: 8.7.3 - pino: 8.3.1 - pino-http: 8.2.0 + pg: 8.8.0 + pino: 8.7.0 + pino-http: 8.2.1 reflect-metadata: 0.1.13 rimraf: 3.0.2 - rxjs: 7.5.6 - typeorm: 0.3.7_pg@8.7.3+ts-node@10.9.1 + rxjs: 7.5.7 + typeorm: 0.3.10_pg@8.8.0+ts-node@10.9.1 uuid: 8.3.2 uuidv4: 6.2.13 @@ -113,43 +106,36 @@ devDependencies: '@nestjs/cli': 8.2.8 '@nestjs/schematics': 8.0.11_typescript@4.7.4 '@nestjs/testing': 8.4.7_7tsmhnugyerf5okgqzer2mfqme - '@types/jest': 28.1.6 - '@types/node': 16.11.47 + '@types/jest': 28.1.8 + '@types/node': 16.18.3 '@types/supertest': 2.0.12 '@types/uuid': 8.3.4 - '@typescript-eslint/eslint-plugin': 5.32.0_iosr3hrei2tubxveewluhu5lhy - '@typescript-eslint/parser': 5.32.0_qugx7qdu5zevzvxaiqyxfiwquq - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 - eslint-plugin-import: 2.26.0_wuikv5nqgdfyng42xxm7lklfmi - eslint-plugin-prettier: 4.2.1_h62lvancfh4b7r6zn2dgodrh5e - jest: 28.1.3_pqtjtaupojlaguyui6z2iois64 + '@typescript-eslint/eslint-plugin': 5.43.0_qkzzhbbraoydjxplhj4djkikc4 + '@typescript-eslint/parser': 5.43.0_2uhzae5rel2qyw7fhfmxrmdt3q + eslint: 8.27.0 + eslint-config-prettier: 8.5.0_eslint@8.27.0 + eslint-plugin-import: 2.26.0_wbsj7pk5g7hogwvhsif6xntns4 + eslint-plugin-prettier: 4.2.1_v7o5sx5x3wbs57ifz6wc4f76we + jest: 28.1.3_dnlfjp7n5lpfgnj4digwzn5fhe pino-pretty: 8.1.0 pre-commit: 1.2.2 prettier: 2.7.1 - supertest: 6.2.4 - ts-jest: 28.0.7_lhw3xkmzugq5tscs3x2ndm4sby - ts-loader: 9.3.1_xnp4kzegbjokq62cajex2ovgkm - ts-node: 10.9.1_ow5yu25silzxcp7pmv7jv4j54m - tsconfig-paths: 4.0.0 + supertest: 6.3.1 + ts-jest: 28.0.8_lhw3xkmzugq5tscs3x2ndm4sby + ts-loader: 9.4.1_l2co7ao223gzrfox7yaiyzd7wu + ts-node: 10.9.1_jyxu4bw6aqgjw6ykt6t6hx4o6e + tsconfig-paths: 4.1.0 typescript: 4.7.4 - util: link:@types/@polkadot/util - webpack: 5.74.0 + webpack: 5.75.0 packages: - /@acala-network/type-definitions/4.1.5: - resolution: {integrity: sha512-XwXtKf5ESfzGk32N1sE3MlBtnamz2JZYtjB6KcKe9eOyv+3lowQvRn4Z347rNSEp+tpenZWnLwBXk4XWhdiSoQ==} - dependencies: - '@open-web3/orml-type-definitions': 1.1.4 - dev: false - /@ampproject/remapping/2.2.0: resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==} engines: {node: '>=6.0.0'} dependencies: '@jridgewell/gen-mapping': 0.1.1 - '@jridgewell/trace-mapping': 0.3.14 + '@jridgewell/trace-mapping': 0.3.17 dev: true /@angular-devkit/core/13.3.5: @@ -259,8 +245,8 @@ packages: - chokidar dev: true - /@apollo/protobufjs/1.2.4: - resolution: {integrity: sha512-npVJ9NVU/pynj+SCU+fambvTneJDyCnif738DnZ7pCxdDtzeEz7WkpSIq5wNUmWm5Td55N+S2xfqZ+WP4hDLng==} + /@apollo/protobufjs/1.2.6: + resolution: {integrity: sha512-Wqo1oSHNUj/jxmsVp4iR3I480p6qdqHikn38lKrFhfzcDJ7lwd7Ck7cHRl4JE81tWNArl77xhnG/OkZhxKBYOw==} hasBin: true requiresBuild: true dependencies: @@ -279,91 +265,116 @@ packages: long: 4.0.0 dev: false - /@apollo/utils.dropunuseddefinitions/1.1.0_graphql@16.5.0: + /@apollo/protobufjs/1.2.7: + resolution: {integrity: sha512-Lahx5zntHPZia35myYDBRuF58tlwPskwHc5CWBZC/4bMKB6siTBWwtMrkqXcsNwQiFSzSx5hKdRPUmemrEp3Gg==} + hasBin: true + requiresBuild: true + dependencies: + '@protobufjs/aspromise': 1.1.2 + '@protobufjs/base64': 1.1.2 + '@protobufjs/codegen': 2.0.4 + '@protobufjs/eventemitter': 1.1.0 + '@protobufjs/fetch': 1.1.0 + '@protobufjs/float': 1.0.2 + '@protobufjs/inquire': 1.1.0 + '@protobufjs/path': 1.1.2 + '@protobufjs/pool': 1.1.0 + '@protobufjs/utf8': 1.1.0 + '@types/long': 4.0.2 + long: 4.0.0 + dev: false + + /@apollo/usage-reporting-protobuf/4.0.2: + resolution: {integrity: sha512-GfE8aDqi/lAFut95pjH9IRvH0zGsQ5G/2lYL0ZLZfML7ArX+A4UVHFANQcPCcUYGE6bI6OPhLekg4Vsjf6B1cw==} + dependencies: + '@apollo/protobufjs': 1.2.7 + dev: false + + /@apollo/utils.dropunuseddefinitions/1.1.0_graphql@16.6.0: resolution: {integrity: sha512-jU1XjMr6ec9pPoL+BFWzEPW7VHHulVdGKMkPAMiCigpVIT11VmCbnij0bWob8uS3ODJ65tZLYKAh/55vLw2rbg==} engines: {node: '>=12.13.0'} peerDependencies: graphql: 14.x || 15.x || 16.x dependencies: - graphql: 16.5.0 + graphql: 16.6.0 dev: false /@apollo/utils.keyvaluecache/1.0.1: resolution: {integrity: sha512-nLgYLomqjVimEzQ4cdvVQkcryi970NDvcRVPfd0OPeXhBfda38WjBq+WhQFk+czSHrmrSp34YHBxpat0EtiowA==} dependencies: - '@apollo/utils.logger': 1.0.0 - lru-cache: 7.13.2 + '@apollo/utils.logger': 1.0.1 + lru-cache: 7.14.1 dev: false - /@apollo/utils.logger/1.0.0: - resolution: {integrity: sha512-dx9XrjyisD2pOa+KsB5RcDbWIAdgC91gJfeyLCgy0ctJMjQe7yZK5kdWaWlaOoCeX0z6YI9iYlg7vMPyMpQF3Q==} + /@apollo/utils.logger/1.0.1: + resolution: {integrity: sha512-XdlzoY7fYNK4OIcvMD2G94RoFZbzTQaNP0jozmqqMudmaGo2I/2Jx71xlDJ801mWA/mbYRihyaw6KJii7k5RVA==} dev: false - /@apollo/utils.printwithreducedwhitespace/1.1.0_graphql@16.5.0: + /@apollo/utils.printwithreducedwhitespace/1.1.0_graphql@16.6.0: resolution: {integrity: sha512-GfFSkAv3n1toDZ4V6u2d7L4xMwLA+lv+6hqXicMN9KELSJ9yy9RzuEXaX73c/Ry+GzRsBy/fdSUGayGqdHfT2Q==} engines: {node: '>=12.13.0'} peerDependencies: graphql: 14.x || 15.x || 16.x dependencies: - graphql: 16.5.0 + graphql: 16.6.0 dev: false - /@apollo/utils.removealiases/1.0.0_graphql@16.5.0: + /@apollo/utils.removealiases/1.0.0_graphql@16.6.0: resolution: {integrity: sha512-6cM8sEOJW2LaGjL/0vHV0GtRaSekrPQR4DiywaApQlL9EdROASZU5PsQibe2MWeZCOhNrPRuHh4wDMwPsWTn8A==} engines: {node: '>=12.13.0'} peerDependencies: graphql: 14.x || 15.x || 16.x dependencies: - graphql: 16.5.0 + graphql: 16.6.0 dev: false - /@apollo/utils.sortast/1.1.0_graphql@16.5.0: + /@apollo/utils.sortast/1.1.0_graphql@16.6.0: resolution: {integrity: sha512-VPlTsmUnOwzPK5yGZENN069y6uUHgeiSlpEhRnLFYwYNoJHsuJq2vXVwIaSmts015WTPa2fpz1inkLYByeuRQA==} engines: {node: '>=12.13.0'} peerDependencies: graphql: 14.x || 15.x || 16.x dependencies: - graphql: 16.5.0 + graphql: 16.6.0 lodash.sortby: 4.7.0 dev: false - /@apollo/utils.stripsensitiveliterals/1.2.0_graphql@16.5.0: + /@apollo/utils.stripsensitiveliterals/1.2.0_graphql@16.6.0: resolution: {integrity: sha512-E41rDUzkz/cdikM5147d8nfCFVKovXxKBcjvLEQ7bjZm/cg9zEcXvS6vFY8ugTubI3fn6zoqo0CyU8zT+BGP9w==} engines: {node: '>=12.13.0'} peerDependencies: graphql: 14.x || 15.x || 16.x dependencies: - graphql: 16.5.0 + graphql: 16.6.0 dev: false - /@apollo/utils.usagereporting/1.0.0_graphql@16.5.0: - resolution: {integrity: sha512-5PL7hJMkTPmdo3oxPtigRrIyPxDk/ddrUryHPDaezL1lSFExpNzsDd2f1j0XJoHOg350GRd3LyD64caLA2PU1w==} + /@apollo/utils.usagereporting/1.0.1_graphql@16.6.0: + resolution: {integrity: sha512-6dk+0hZlnDbahDBB2mP/PZ5ybrtCJdLMbeNJD+TJpKyZmSY6bA3SjI8Cr2EM9QA+AdziywuWg+SgbWUF3/zQqQ==} engines: {node: '>=12.13.0'} peerDependencies: graphql: 14.x || 15.x || 16.x dependencies: - '@apollo/utils.dropunuseddefinitions': 1.1.0_graphql@16.5.0 - '@apollo/utils.printwithreducedwhitespace': 1.1.0_graphql@16.5.0 - '@apollo/utils.removealiases': 1.0.0_graphql@16.5.0 - '@apollo/utils.sortast': 1.1.0_graphql@16.5.0 - '@apollo/utils.stripsensitiveliterals': 1.2.0_graphql@16.5.0 - apollo-reporting-protobuf: 3.3.2 - graphql: 16.5.0 + '@apollo/usage-reporting-protobuf': 4.0.2 + '@apollo/utils.dropunuseddefinitions': 1.1.0_graphql@16.6.0 + '@apollo/utils.printwithreducedwhitespace': 1.1.0_graphql@16.6.0 + '@apollo/utils.removealiases': 1.0.0_graphql@16.6.0 + '@apollo/utils.sortast': 1.1.0_graphql@16.6.0 + '@apollo/utils.stripsensitiveliterals': 1.2.0_graphql@16.6.0 + graphql: 16.6.0 dev: false - /@apollographql/apollo-tools/0.5.4_graphql@16.5.0: + /@apollographql/apollo-tools/0.5.4_graphql@16.6.0: resolution: {integrity: sha512-shM3q7rUbNyXVVRkQJQseXv6bnYM3BUma/eZhwXR4xsuM+bqWnJKvW7SAfRjP7LuSCocrexa5AXhjjawNHrIlw==} engines: {node: '>=8', npm: '>=6'} peerDependencies: graphql: ^14.2.1 || ^15.0.0 || ^16.0.0 dependencies: - graphql: 16.5.0 + graphql: 16.6.0 dev: false /@apollographql/graphql-playground-html/1.6.29: resolution: {integrity: sha512-xCcXpoz52rI4ksJSdOCxeOCn2DLocxwHf9dVT/Q90Pte1LX+LY+91SFtJF3KXVHH8kEin+g1KKCQPKBjZJfWNA==} dependencies: - xss: 1.0.13 + xss: 1.0.14 dev: false /@babel/code-frame/7.18.6: @@ -373,26 +384,26 @@ packages: '@babel/highlight': 7.18.6 dev: true - /@babel/compat-data/7.18.8: - resolution: {integrity: sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==} + /@babel/compat-data/7.20.1: + resolution: {integrity: sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==} engines: {node: '>=6.9.0'} dev: true - /@babel/core/7.18.10: - resolution: {integrity: sha512-JQM6k6ENcBFKVtWvLavlvi/mPcpYZ3+R+2EySDEMSMbp7Mn4FexlbbJVrx2R7Ijhr01T8gyqrOaABWIOgxeUyw==} + /@babel/core/7.20.2: + resolution: {integrity: sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.18.6 - '@babel/generator': 7.18.10 - '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10 - '@babel/helper-module-transforms': 7.18.9 - '@babel/helpers': 7.18.9 - '@babel/parser': 7.18.10 + '@babel/generator': 7.20.4 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.2 + '@babel/helper-module-transforms': 7.20.2 + '@babel/helpers': 7.20.1 + '@babel/parser': 7.20.3 '@babel/template': 7.18.10 - '@babel/traverse': 7.18.10 - '@babel/types': 7.18.10 - convert-source-map: 1.8.0 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.2 + convert-source-map: 1.9.0 debug: 4.3.4 gensync: 1.0.0-beta.2 json5: 2.2.1 @@ -401,25 +412,25 @@ packages: - supports-color dev: true - /@babel/generator/7.18.10: - resolution: {integrity: sha512-0+sW7e3HjQbiHbj1NeU/vN8ornohYlacAfZIaXhdoGweQqgcNy69COVciYYqEXJ/v+9OBA7Frxm4CVAuNqKeNA==} + /@babel/generator/7.20.4: + resolution: {integrity: sha512-luCf7yk/cm7yab6CAW1aiFnmEfBJplb/JojV56MYEK7ziWfGmFlTfmL9Ehwfy4gFhbjBfWO1wj7/TuSbVNEEtA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.20.2 '@jridgewell/gen-mapping': 0.3.2 jsesc: 2.5.2 dev: true - /@babel/helper-compilation-targets/7.18.9_@babel+core@7.18.10: - resolution: {integrity: sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==} + /@babel/helper-compilation-targets/7.20.0_@babel+core@7.20.2: + resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.18.8 - '@babel/core': 7.18.10 + '@babel/compat-data': 7.20.1 + '@babel/core': 7.20.2 '@babel/helper-validator-option': 7.18.6 - browserslist: 4.21.3 + browserslist: 4.21.4 semver: 6.3.0 dev: true @@ -428,70 +439,70 @@ packages: engines: {node: '>=6.9.0'} dev: true - /@babel/helper-function-name/7.18.9: - resolution: {integrity: sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==} + /@babel/helper-function-name/7.19.0: + resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.18.10 - '@babel/types': 7.18.10 + '@babel/types': 7.20.2 dev: true /@babel/helper-hoist-variables/7.18.6: resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.20.2 dev: true /@babel/helper-module-imports/7.18.6: resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.20.2 dev: true - /@babel/helper-module-transforms/7.18.9: - resolution: {integrity: sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==} + /@babel/helper-module-transforms/7.20.2: + resolution: {integrity: sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-simple-access': 7.18.6 + '@babel/helper-simple-access': 7.20.2 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/helper-validator-identifier': 7.18.6 + '@babel/helper-validator-identifier': 7.19.1 '@babel/template': 7.18.10 - '@babel/traverse': 7.18.10 - '@babel/types': 7.18.10 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.2 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-plugin-utils/7.18.9: - resolution: {integrity: sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==} + /@babel/helper-plugin-utils/7.20.2: + resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==} engines: {node: '>=6.9.0'} dev: true - /@babel/helper-simple-access/7.18.6: - resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==} + /@babel/helper-simple-access/7.20.2: + resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.20.2 dev: true /@babel/helper-split-export-declaration/7.18.6: resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.20.2 dev: true - /@babel/helper-string-parser/7.18.10: - resolution: {integrity: sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==} + /@babel/helper-string-parser/7.19.4: + resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} engines: {node: '>=6.9.0'} dev: true - /@babel/helper-validator-identifier/7.18.6: - resolution: {integrity: sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==} + /@babel/helper-validator-identifier/7.19.1: + resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} engines: {node: '>=6.9.0'} dev: true @@ -500,13 +511,13 @@ packages: engines: {node: '>=6.9.0'} dev: true - /@babel/helpers/7.18.9: - resolution: {integrity: sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==} + /@babel/helpers/7.20.1: + resolution: {integrity: sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.18.10 - '@babel/traverse': 7.18.10 - '@babel/types': 7.18.10 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.2 transitivePeerDependencies: - supports-color dev: true @@ -515,157 +526,143 @@ packages: resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-validator-identifier': 7.18.6 + '@babel/helper-validator-identifier': 7.19.1 chalk: 2.4.2 js-tokens: 4.0.0 dev: true - /@babel/parser/7.18.10: - resolution: {integrity: sha512-TYk3OA0HKL6qNryUayb5UUEhM/rkOQozIBEA5ITXh5DWrSp0TlUQXMyZmnWxG/DizSWBeeQ0Zbc5z8UGaaqoeg==} + /@babel/parser/7.20.3: + resolution: {integrity: sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.20.2 dev: true - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.10: + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.2: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.18.10: + /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.10: + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.2: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.10: + /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.20.2: resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.10: + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.10: + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.2: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.10: + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.10: + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.2: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.10: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.10: + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.10: + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.10: + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.2: resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.18.10: - resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==} + /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.20.2: + resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/runtime/7.18.9: - resolution: {integrity: sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw==} - engines: {node: '>=6.9.0'} - dependencies: - regenerator-runtime: 0.13.9 - dev: false - - /@babel/runtime/7.19.0: - resolution: {integrity: sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA==} - engines: {node: '>=6.9.0'} - dependencies: - regenerator-runtime: 0.13.9 - dev: false - - /@babel/runtime/7.19.4: - resolution: {integrity: sha512-EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA==} + /@babel/runtime/7.20.1: + resolution: {integrity: sha512-mrzLkl6U9YLF8qpqI7TB82PESyEGjm/0Ly91jG575eVxMMlb8fYfOXFZIJ8XfLrJZQbm7dlKry2bJmXBUEkdFg==} engines: {node: '>=6.9.0'} dependencies: - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 dev: false /@babel/template/7.18.10: @@ -673,34 +670,34 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/parser': 7.18.10 - '@babel/types': 7.18.10 + '@babel/parser': 7.20.3 + '@babel/types': 7.20.2 dev: true - /@babel/traverse/7.18.10: - resolution: {integrity: sha512-J7ycxg0/K9XCtLyHf0cz2DqDihonJeIo+z+HEdRe9YuT8TY4A66i+Ab2/xZCEW7Ro60bPCBBfqqboHSamoV3+g==} + /@babel/traverse/7.20.1: + resolution: {integrity: sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/generator': 7.18.10 + '@babel/generator': 7.20.4 '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.18.9 + '@babel/helper-function-name': 7.19.0 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.18.10 - '@babel/types': 7.18.10 + '@babel/parser': 7.20.3 + '@babel/types': 7.20.2 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color dev: true - /@babel/types/7.18.10: - resolution: {integrity: sha512-MJvnbEiiNkpjo+LknnmRrqbY1GPUUggjv+wQVjetM/AONoupqRALB7I6jGqNUAZsKcRIEu2J6FRFvsczljjsaQ==} + /@babel/types/7.20.2: + resolution: {integrity: sha512-FnnvsNWgZCr232sqtXggapvlkk/tuwR/qhGzcmxI0GXLCjmPYQPzio2FbdlWuY6y1sHFfQKk+rRbUZ9VStQMog==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-string-parser': 7.18.10 - '@babel/helper-validator-identifier': 7.18.6 + '@babel/helper-string-parser': 7.19.4 + '@babel/helper-validator-identifier': 7.19.1 to-fast-properties: 2.0.0 dev: true @@ -708,12 +705,6 @@ packages: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} dev: true - /@bifrost-finance/type-definitions/1.6.1: - resolution: {integrity: sha512-vYa1c+m2104RGYxYpJVt6HIGjDBG1mFV6VE6LgpbBpcXuDj17GkB0z1f4B9jBpM6XvWm/NvW1JIYkybib5akWQ==} - dependencies: - '@open-web3/orml-type-definitions': 0.9.4-38 - dev: false - /@colors/colors/1.5.0: resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} engines: {node: '>=0.1.90'} @@ -721,55 +712,20 @@ packages: dev: true optional: true - /@crustio/type-definitions/1.3.0: - resolution: {integrity: sha512-xdW6npZTmWfDzZEVCMjRK7f7wQrU/cgIltGlvnXY2AFD2m9uBW+s6/lx9YHuLbk7y3NrrQwbp3owFuGw4A2hNw==} - dependencies: - '@open-web3/orml-type-definitions': 0.9.4-38 - dev: false - /@cspotcode/source-map-support/0.8.1: resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} engines: {node: '>=12'} dependencies: '@jridgewell/trace-mapping': 0.3.9 - /@darwinia/types-known/2.8.8: - resolution: {integrity: sha512-Oav4rnUDGtAhttZYhrlsBYh9O2snZxE3NxVz3sUHXJio8Jx69ql15FYKE/1lwzJzISsj1rz5j9iqNRtbKhm3ZA==} - dev: false - - /@darwinia/types/2.8.8: - resolution: {integrity: sha512-dPLQMLHot/yDo7VlusQtyeL0gz8JQHwltICgz/hW9V1zsfsY+WKq5GAvT+kNcTr9j1SwMTZs+jhe0gq3Hp+LYg==} - dev: false - - /@digitalnative/type-definitions/1.1.27: - resolution: {integrity: sha512-xzkcPX/yv4oYp7OzlkfozVR1KDwqLjQFJhIPLJp3zuVudGFo4I+spwFQmWQswcxgZI1HGoQGVePzEqAQIRZtVQ==} - dependencies: - '@polkadot/keyring': 6.11.1 - '@polkadot/types': 4.17.1 - dev: false - - /@docknetwork/node-types/0.7.0: - resolution: {integrity: sha512-njl7EtCnMBM7zwOhXE17Sx4am2EVF3yhYpxQ4+9bwWNTAf1rNtGBON98q7d2Cwk2eSeyLIWJVpJ+nRkHSdJCjA==} - engines: {node: '>=14.0.0'} - dev: false - - /@edgeware/node-types/3.6.2-wako: - resolution: {integrity: sha512-kBGCoWoRSUOj864BiTwHGfsfuhGr2ycWEsjw9FB2VdJ5esJDVq3K6WZs/J2rtrtybKJWADqIp5K0ptDBlg1XqA==} - engines: {node: '>=14.0.0'} - dev: false - - /@equilab/definitions/1.4.12: - resolution: {integrity: sha512-zdatJhGgibuzoAAFIWcxM0ti/hsEhLIaEOyOqgwYxm3RBgW6ioDnjxiNv7nvndK0mzi1YR+Xux6p0T7QKyw7cw==} - dev: false - - /@eslint/eslintrc/1.3.0: - resolution: {integrity: sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==} + /@eslint/eslintrc/1.3.3: + resolution: {integrity: sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 debug: 4.3.4 - espree: 9.3.3 - globals: 13.17.0 + espree: 9.4.1 + globals: 13.18.0 ignore: 5.2.0 import-fresh: 3.3.0 js-yaml: 4.1.0 @@ -829,82 +785,113 @@ packages: helmet: 5.1.1 dev: false - /@graphql-tools/merge/8.3.0_graphql@16.5.0: - resolution: {integrity: sha512-xRa7RAQok/0DD2YnjuqikMrr7dUAxTpdGtZ7BkvUUGhYs3B3p7reCAfvOVr1DJAqVToP7hdlMk+S5+Ylk+AaqA==} + /@graphql-tools/merge/8.3.11_graphql@16.6.0: + resolution: {integrity: sha512-IpZh8r8e8FycXaUv04xe5HQH9siD1tkS8MvaO8Wb2FaPXv15XSYP+Wsb2MUStpIqGfQxa6xY/+eEuxv+VqwXyg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 8.8.0_graphql@16.5.0 - graphql: 16.5.0 - tslib: 2.4.0 + '@graphql-tools/utils': 9.1.0_graphql@16.6.0 + graphql: 16.6.0 + tslib: 2.4.1 + dev: false + + /@graphql-tools/merge/8.3.12_graphql@16.6.0: + resolution: {integrity: sha512-BFL8r4+FrqecPnIW0H8UJCBRQ4Y8Ep60aujw9c/sQuFmQTiqgWgpphswMGfaosP2zUinDE3ojU5wwcS2IJnumA==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + '@graphql-tools/utils': 9.1.1_graphql@16.6.0 + graphql: 16.6.0 + tslib: 2.4.1 dev: false - /@graphql-tools/merge/8.3.1_graphql@16.5.0: + /@graphql-tools/merge/8.3.1_graphql@16.6.0: resolution: {integrity: sha512-BMm99mqdNZbEYeTPK3it9r9S6rsZsQKtlqJsSBknAclXq2pGEfOxjcIZi+kBSkHZKPKCRrYDd5vY0+rUmIHVLg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 8.9.0_graphql@16.5.0 - graphql: 16.5.0 - tslib: 2.4.0 + '@graphql-tools/utils': 8.9.0_graphql@16.6.0 + graphql: 16.6.0 + tslib: 2.4.1 dev: false - /@graphql-tools/mock/8.7.1_graphql@16.5.0: - resolution: {integrity: sha512-k85qWloFnxw1AAu7P153y1y+9GEbiQ4T17uay2o2QZKtjxPkBADkX0sKYsI7oj+ip+l/D4an3FfsbWATGxzT8w==} + /@graphql-tools/mock/8.7.12_graphql@16.6.0: + resolution: {integrity: sha512-bEjj52T5idjzqFXfDZPFfPZDPFEjVmayYA6RYqMxM3Qdv5JJ8pSMEGDBcXhinbQudPKdRkLmR17usNmRMpUQEg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/schema': 8.5.1_graphql@16.5.0 - '@graphql-tools/utils': 8.9.0_graphql@16.5.0 + '@graphql-tools/schema': 9.0.10_graphql@16.6.0 + '@graphql-tools/utils': 9.1.1_graphql@16.6.0 fast-json-stable-stringify: 2.1.0 - graphql: 16.5.0 - tslib: 2.4.0 + graphql: 16.6.0 + tslib: 2.4.1 dev: false - /@graphql-tools/schema/8.5.0_graphql@16.5.0: - resolution: {integrity: sha512-VeFtKjM3SA9/hCJJfr95aEdC3G0xIKM9z0Qdz4i+eC1g2fdZYnfWFt2ucW4IME+2TDd0enHlKzaV0qk2SLVUww==} + /@graphql-tools/schema/8.5.1_graphql@16.6.0: + resolution: {integrity: sha512-0Esilsh0P/qYcB5DKQpiKeQs/jevzIadNTaT0jeWklPMwNbT7yMX4EqZany7mbeRRlSRwMzNzL5olyFdffHBZg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/merge': 8.3.0_graphql@16.5.0 - '@graphql-tools/utils': 8.8.0_graphql@16.5.0 - graphql: 16.5.0 - tslib: 2.4.0 + '@graphql-tools/merge': 8.3.1_graphql@16.6.0 + '@graphql-tools/utils': 8.9.0_graphql@16.6.0 + graphql: 16.6.0 + tslib: 2.4.1 value-or-promise: 1.0.11 dev: false - /@graphql-tools/schema/8.5.1_graphql@16.5.0: - resolution: {integrity: sha512-0Esilsh0P/qYcB5DKQpiKeQs/jevzIadNTaT0jeWklPMwNbT7yMX4EqZany7mbeRRlSRwMzNzL5olyFdffHBZg==} + /@graphql-tools/schema/9.0.10_graphql@16.6.0: + resolution: {integrity: sha512-lV0o4df9SpPiaeeDAzgdCJ2o2N9Wvsp0SMHlF2qDbh9aFCFQRsXuksgiDm2yTgT3TG5OtUes/t0D6uPjPZFUbQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/merge': 8.3.1_graphql@16.5.0 - '@graphql-tools/utils': 8.9.0_graphql@16.5.0 - graphql: 16.5.0 - tslib: 2.4.0 + '@graphql-tools/merge': 8.3.12_graphql@16.6.0 + '@graphql-tools/utils': 9.1.1_graphql@16.6.0 + graphql: 16.6.0 + tslib: 2.4.1 value-or-promise: 1.0.11 dev: false - /@graphql-tools/utils/8.8.0_graphql@16.5.0: - resolution: {integrity: sha512-KJrtx05uSM/cPYFdTnGAS1doL5bftJLAiFCDMZ8Vkifztz3BFn3gpFiy/o4wDtM8s39G46mxmt2Km/RmeltfGw==} + /@graphql-tools/schema/9.0.9_graphql@16.6.0: + resolution: {integrity: sha512-hwg8trUytO5ayQ8bzL3+sAyXcu2rhKt5pLXpLO0/TMTN2nXd3DBO4mqx+Ra4Er2mE/msInGQ5EmZbxVBPv+hSg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - graphql: 16.5.0 - tslib: 2.4.0 + '@graphql-tools/merge': 8.3.11_graphql@16.6.0 + '@graphql-tools/utils': 9.1.0_graphql@16.6.0 + graphql: 16.6.0 + tslib: 2.4.1 + value-or-promise: 1.0.11 dev: false - /@graphql-tools/utils/8.9.0_graphql@16.5.0: + /@graphql-tools/utils/8.9.0_graphql@16.6.0: resolution: {integrity: sha512-pjJIWH0XOVnYGXCqej8g/u/tsfV4LvLlj0eATKQu5zwnxd/TiTHq7Cg313qUPTFFHZ3PP5wJ15chYVtLDwaymg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - graphql: 16.5.0 - tslib: 2.4.0 + graphql: 16.6.0 + tslib: 2.4.1 + dev: false + + /@graphql-tools/utils/9.1.0_graphql@16.6.0: + resolution: {integrity: sha512-4Ketxo98IwKA/56LP6cI6PgQBwUCujszQcTNkzjq7liJPa2mLjKnmVOJ0bauMwKcEazeYuZagceljb0POmEGvQ==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + graphql: 16.6.0 + tslib: 2.4.1 + dev: false + + /@graphql-tools/utils/9.1.1_graphql@16.6.0: + resolution: {integrity: sha512-DXKLIEDbihK24fktR2hwp/BNIVwULIHaSTNTNhXS+19vgT50eX9wndx1bPxGwHnVBOONcwjXy0roQac49vdt/w==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + graphql: 16.6.0 + tslib: 2.4.1 dev: false - /@humanwhocodes/config-array/0.10.4: - resolution: {integrity: sha512-mXAIHxZT3Vcpg83opl1wGlVZ9xydbfZO3r5YfRSH6Gpp2J/PfdBP0wbDa2sO6/qRbcalpoevVyW6A/fI6LfeMw==} + /@humanwhocodes/config-array/0.11.7: + resolution: {integrity: sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw==} engines: {node: '>=10.10.0'} dependencies: '@humanwhocodes/object-schema': 1.2.1 @@ -914,18 +901,15 @@ packages: - supports-color dev: true - /@humanwhocodes/gitignore-to-minimatch/1.0.2: - resolution: {integrity: sha512-rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA==} + /@humanwhocodes/module-importer/1.0.1: + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + engines: {node: '>=12.22'} dev: true /@humanwhocodes/object-schema/1.2.1: resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} dev: true - /@interlay/interbtc-types/1.7.0: - resolution: {integrity: sha512-gh+cI1pTYRxHM5XZyb85OIsrotatTYKBbqiIj7xo6sLrONMagWl1T2DwsJy4wn0A9qtETw/PqLirV7bAC1TXpg==} - dev: false - /@istanbuljs/load-nyc-config/1.1.0: resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} engines: {node: '>=8'} @@ -947,7 +931,7 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@jest/types': 28.1.3 - '@types/node': 16.11.47 + '@types/node': 16.18.3 chalk: 4.1.2 jest-message-util: 28.1.3 jest-util: 28.1.3 @@ -968,14 +952,14 @@ packages: '@jest/test-result': 28.1.3 '@jest/transform': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 16.11.47 + '@types/node': 16.18.3 ansi-escapes: 4.3.2 chalk: 4.1.2 - ci-info: 3.3.2 + ci-info: 3.6.1 exit: 0.1.2 graceful-fs: 4.2.10 jest-changed-files: 28.1.3 - jest-config: 28.1.3_pqtjtaupojlaguyui6z2iois64 + jest-config: 28.1.3_dnlfjp7n5lpfgnj4digwzn5fhe jest-haste-map: 28.1.3 jest-message-util: 28.1.3 jest-regex-util: 28.0.2 @@ -1003,7 +987,7 @@ packages: dependencies: '@jest/fake-timers': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 16.11.47 + '@types/node': 16.18.3 jest-mock: 28.1.3 dev: true @@ -1030,7 +1014,7 @@ packages: dependencies: '@jest/types': 28.1.3 '@sinonjs/fake-timers': 9.1.2 - '@types/node': 16.11.47 + '@types/node': 16.18.3 jest-message-util: 28.1.3 jest-mock: 28.1.3 jest-util: 28.1.3 @@ -1061,15 +1045,15 @@ packages: '@jest/test-result': 28.1.3 '@jest/transform': 28.1.3 '@jest/types': 28.1.3 - '@jridgewell/trace-mapping': 0.3.14 - '@types/node': 16.11.47 + '@jridgewell/trace-mapping': 0.3.17 + '@types/node': 16.18.3 chalk: 4.1.2 collect-v8-coverage: 1.0.1 exit: 0.1.2 glob: 7.2.3 graceful-fs: 4.2.10 istanbul-lib-coverage: 3.2.0 - istanbul-lib-instrument: 5.2.0 + istanbul-lib-instrument: 5.2.1 istanbul-lib-report: 3.0.0 istanbul-lib-source-maps: 4.0.1 istanbul-reports: 3.1.5 @@ -1089,14 +1073,14 @@ packages: resolution: {integrity: sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@sinclair/typebox': 0.24.26 + '@sinclair/typebox': 0.24.51 dev: true /@jest/source-map/28.1.2: resolution: {integrity: sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@jridgewell/trace-mapping': 0.3.14 + '@jridgewell/trace-mapping': 0.3.17 callsites: 3.1.0 graceful-fs: 4.2.10 dev: true @@ -1125,12 +1109,12 @@ packages: resolution: {integrity: sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.2 '@jest/types': 28.1.3 - '@jridgewell/trace-mapping': 0.3.14 + '@jridgewell/trace-mapping': 0.3.17 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 - convert-source-map: 1.8.0 + convert-source-map: 1.9.0 fast-json-stable-stringify: 2.1.0 graceful-fs: 4.2.10 jest-haste-map: 28.1.3 @@ -1139,7 +1123,7 @@ packages: micromatch: 4.0.5 pirates: 4.0.5 slash: 3.0.0 - write-file-atomic: 4.0.1 + write-file-atomic: 4.0.2 transitivePeerDependencies: - supports-color dev: true @@ -1151,8 +1135,8 @@ packages: '@jest/schemas': 28.1.3 '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 16.11.47 - '@types/yargs': 17.0.10 + '@types/node': 16.18.3 + '@types/yargs': 17.0.13 chalk: 4.1.2 dev: true @@ -1174,7 +1158,7 @@ packages: dependencies: '@jridgewell/set-array': 1.1.2 '@jridgewell/sourcemap-codec': 1.4.14 - '@jridgewell/trace-mapping': 0.3.14 + '@jridgewell/trace-mapping': 0.3.17 dev: true /@jridgewell/resolve-uri/3.1.0: @@ -1190,14 +1174,14 @@ packages: resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==} dependencies: '@jridgewell/gen-mapping': 0.3.2 - '@jridgewell/trace-mapping': 0.3.14 + '@jridgewell/trace-mapping': 0.3.17 dev: true /@jridgewell/sourcemap-codec/1.4.14: resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} - /@jridgewell/trace-mapping/0.3.14: - resolution: {integrity: sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ==} + /@jridgewell/trace-mapping/0.3.17: + resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==} dependencies: '@jridgewell/resolve-uri': 3.1.0 '@jridgewell/sourcemap-codec': 1.4.14 @@ -1209,43 +1193,8 @@ packages: '@jridgewell/resolve-uri': 3.1.0 '@jridgewell/sourcemap-codec': 1.4.14 - /@kiltprotocol/type-definitions/0.1.23: - resolution: {integrity: sha512-5bGUDo8aVTWttwUrV1gyRUlbBn9zllv6/ofAda9ejMbjY5o99YqsAWlXg1mro6BqE3rcF/i0tGbIdO9Z0tOttA==} - dev: false - - /@laminar/type-definitions/0.3.1: - resolution: {integrity: sha512-QWC2qtvbPIxal+gMfUocZmwK0UsD7Sb0RUm4Hallkp+OXXL+3uBLwztYDLS5LtocOn0tfR//sgpnfsEIEb71Lw==} - dependencies: - '@open-web3/orml-type-definitions': 0.8.2-11 - dev: false - - /@logion/node-api/0.3.2-1: - resolution: {integrity: sha512-tfkctyYqSfZ55ycEKra26Efj3gHw3F3/N/9J1tf1e1s7Bgy5nYb8jyYCpxJHEh6bZ5Qz3E5j+JnSPSpbh4Z9eA==} - engines: {node: '>=16'} - dependencies: - '@polkadot/api': 8.14.1 - '@polkadot/util': 9.7.2 - '@polkadot/util-crypto': 9.7.2 - '@types/uuid': 8.3.4 - fast-sha256: 1.3.0 - moment: 2.29.4 - uuid: 8.3.2 - transitivePeerDependencies: - - supports-color - dev: false - - /@mangata-finance/types/0.5.0: - resolution: {integrity: sha512-15Jwtb+w6u0GmW7/pon2zeKmEOg3dbUrZMUXuE09zu6QWgAxkdsenBBQVSSRoZYpRvP4Ypjx4JZrl/165RNGPQ==} - dev: false - - /@metaverse-network-sdk/type-definitions/0.0.1-13: - resolution: {integrity: sha512-qxV8M/wHK5R5bJP+t1SOQP2l8zRT8e1+wCbrqpVeh4VOw/DU9+EBBTYXnui9AbuJvrej/wLDiI0g3MqK0TsYrA==} - dependencies: - lodash.merge: 4.6.2 - dev: false - - /@nestjs/apollo/10.0.19_4hwktyriqqbrdnkjkceiiy5j7i: - resolution: {integrity: sha512-uj10uZOQYBeUMYnKma0gpBSFDubZnXp4mqIRMJFNTF/0lEywFUEmdIc4IiRFSN3C4SY4EDIbUyDAMDRE3Ablew==} + /@nestjs/apollo/10.1.6_oivciiyt4ozyp6qczxfjdfn3uu: + resolution: {integrity: sha512-BQJBBUTjEQ6roCHPC2io/OV+4n/ph1kyN38FFHtTiGHAgWx+YdeMT4LEGcaM1qBOuGC7PyNYTL3Cm2gzsGPSdg==} peerDependencies: '@apollo/gateway': ^0.44.1 || ^0.46.0 || ^0.48.0 || ^0.49.0 || ^0.50.0 || ^2.0.0 '@nestjs/common': ^8.2.3 || ^9.0.0 @@ -1265,14 +1214,14 @@ packages: apollo-server-fastify: optional: true dependencies: - '@nestjs/common': 8.4.7_allg6cauirbqzgqcmexy2wdnoq - '@nestjs/core': 8.4.7_zyw32gfu5yv6lfoz64j5eiekme - '@nestjs/graphql': 10.0.21_azbz4vimtm5rsq3nyrt5st4aze - apollo-server-fastify: 3.10.0_fs6cl6gqybbcj7xzz72msc6zye - graphql: 16.5.0 + '@nestjs/common': 8.4.7_x6yqyveuahcdef4z4mxykmuv6a + '@nestjs/core': 8.4.7_bkbhg4knmtesqnnagm7a2p5cuy + '@nestjs/graphql': 10.1.6_vidbvhpv4hwn234liq737aiomy + apollo-server-fastify: 3.11.1_sf3em2md5juc2kebq37yhduz24 + graphql: 16.6.0 iterall: 1.3.0 lodash.omit: 4.5.0 - tslib: 2.4.0 + tslib: 2.4.1 dev: false /@nestjs/cli/8.2.8: @@ -1310,7 +1259,7 @@ packages: - webpack-cli dev: true - /@nestjs/common/8.4.7_allg6cauirbqzgqcmexy2wdnoq: + /@nestjs/common/8.4.7_x6yqyveuahcdef4z4mxykmuv6a: resolution: {integrity: sha512-m/YsbcBal+gA5CFrDpqXqsSfylo+DIQrkFY3qhVIltsYRfu8ct8J9pqsTO6OPf3mvqdOpFGrV5sBjoyAzOBvsw==} peerDependencies: cache-manager: '*' @@ -1331,29 +1280,29 @@ packages: class-validator: 0.13.2 iterare: 1.2.1 reflect-metadata: 0.1.13 - rxjs: 7.5.6 + rxjs: 7.5.7 tslib: 2.4.0 uuid: 8.3.2 transitivePeerDependencies: - debug - /@nestjs/config/2.2.0_zyw32gfu5yv6lfoz64j5eiekme: + /@nestjs/config/2.2.0_bkbhg4knmtesqnnagm7a2p5cuy: resolution: {integrity: sha512-78Eg6oMbCy3D/YvqeiGBTOWei1Jwi3f2pSIZcZ1QxY67kYsJzTRTkwRT8Iv30DbK0sGKc1mcloDLD5UXgZAZtg==} peerDependencies: '@nestjs/common': ^7.0.0 || ^8.0.0 || ^9.0.0 reflect-metadata: ^0.1.13 rxjs: ^6.0.0 || ^7.2.0 dependencies: - '@nestjs/common': 8.4.7_allg6cauirbqzgqcmexy2wdnoq + '@nestjs/common': 8.4.7_x6yqyveuahcdef4z4mxykmuv6a dotenv: 16.0.1 dotenv-expand: 8.0.3 lodash: 4.17.21 reflect-metadata: 0.1.13 - rxjs: 7.5.6 + rxjs: 7.5.7 uuid: 8.3.2 dev: false - /@nestjs/core/8.4.7_zyw32gfu5yv6lfoz64j5eiekme: + /@nestjs/core/8.4.7_bkbhg4knmtesqnnagm7a2p5cuy: resolution: {integrity: sha512-XB9uexHqzr2xkPo6QSiQWJJttyYYLmvQ5My64cFvWFi7Wk2NIus0/xUNInwX3kmFWB6pF1ab5Y2ZBvWdPwGBhw==} requiresBuild: true peerDependencies: @@ -1371,52 +1320,52 @@ packages: '@nestjs/websockets': optional: true dependencies: - '@nestjs/common': 8.4.7_allg6cauirbqzgqcmexy2wdnoq + '@nestjs/common': 8.4.7_x6yqyveuahcdef4z4mxykmuv6a '@nuxtjs/opencollective': 0.3.2 fast-safe-stringify: 2.1.1 iterare: 1.2.1 object-hash: 3.0.0 path-to-regexp: 3.2.0 reflect-metadata: 0.1.13 - rxjs: 7.5.6 + rxjs: 7.5.7 tslib: 2.4.0 uuid: 8.3.2 transitivePeerDependencies: - encoding - /@nestjs/graphql/10.0.21_azbz4vimtm5rsq3nyrt5st4aze: - resolution: {integrity: sha512-wrc3KFT5Tj+HieAR8IOgvtaQRMHpjInuBaykq76Drn4do6qoGZ509DDw7LQ8U3E2VWXe8F4ItnyxskBphoqEgA==} + /@nestjs/graphql/10.1.6_vidbvhpv4hwn234liq737aiomy: + resolution: {integrity: sha512-RiDTqyBqk+qolcMMKBANuG5zw0q0zbVmkwWydB2F1ObvUyl5t/GOAcR8mbq3gvpfYzylQ5t5/svWUDq/7dcpaQ==} peerDependencies: '@apollo/subgraph': ^0.1.5 || ^0.3.0 || ^0.4.0 || ^2.0.0 '@nestjs/common': ^8.2.3 || ^9.0.0 '@nestjs/core': ^8.2.3 || ^9.0.0 graphql: ^15.8.0 || ^16.0.0 reflect-metadata: ^0.1.13 - ts-morph: ^13.0.2 || ^14.0.0 || ^15.0.0 + ts-morph: ^13.0.2 || ^14.0.0 || ^15.0.0 || ^16.0.0 peerDependenciesMeta: '@apollo/subgraph': optional: true ts-morph: optional: true dependencies: - '@graphql-tools/merge': 8.3.0_graphql@16.5.0 - '@graphql-tools/schema': 8.5.0_graphql@16.5.0 - '@graphql-tools/utils': 8.8.0_graphql@16.5.0 - '@nestjs/common': 8.4.7_allg6cauirbqzgqcmexy2wdnoq - '@nestjs/core': 8.4.7_zyw32gfu5yv6lfoz64j5eiekme - '@nestjs/mapped-types': 1.1.0_7zw7e46jhcfuw5vwuwho2brjki + '@graphql-tools/merge': 8.3.11_graphql@16.6.0 + '@graphql-tools/schema': 9.0.9_graphql@16.6.0 + '@graphql-tools/utils': 9.1.0_graphql@16.6.0 + '@nestjs/common': 8.4.7_x6yqyveuahcdef4z4mxykmuv6a + '@nestjs/core': 8.4.7_bkbhg4knmtesqnnagm7a2p5cuy + '@nestjs/mapped-types': 1.2.0_7zw7e46jhcfuw5vwuwho2brjki chokidar: 3.5.3 - fast-glob: 3.2.11 - graphql: 16.5.0 - graphql-tag: 2.12.6_graphql@16.5.0 - graphql-ws: 5.5.5_graphql@16.5.0 + fast-glob: 3.2.12 + graphql: 16.6.0 + graphql-tag: 2.12.6_graphql@16.6.0 + graphql-ws: 5.5.5_graphql@16.6.0 lodash: 4.17.21 normalize-path: 3.0.0 reflect-metadata: 0.1.13 - subscriptions-transport-ws: 0.11.0_graphql@16.5.0 - tslib: 2.4.0 - uuid: 8.3.2 - ws: 8.8.1 + subscriptions-transport-ws: 0.11.0_graphql@16.6.0 + tslib: 2.4.1 + uuid: 9.0.0 + ws: 8.11.0 transitivePeerDependencies: - bufferutil - class-transformer @@ -1424,8 +1373,8 @@ packages: - utf-8-validate dev: false - /@nestjs/mapped-types/1.1.0_7zw7e46jhcfuw5vwuwho2brjki: - resolution: {integrity: sha512-+2kSly4P1QI+9eGt+/uGyPdEG1hVz7nbpqPHWZVYgoqz8eOHljpXPag+UCVRw9zo2XCu4sgNUIGe8Uk0+OvUQg==} + /@nestjs/mapped-types/1.2.0_7zw7e46jhcfuw5vwuwho2brjki: + resolution: {integrity: sha512-NTFwPZkQWsArQH8QSyFWGZvJ08gR+R4TofglqZoihn/vU+ktHEJjMqsIsADwb7XD97DhiD+TVv5ac+jG33BHrg==} peerDependencies: '@nestjs/common': ^7.0.8 || ^8.0.0 || ^9.0.0 class-transformer: ^0.2.0 || ^0.3.0 || ^0.4.0 || ^0.5.0 @@ -1437,7 +1386,7 @@ packages: class-validator: optional: true dependencies: - '@nestjs/common': 8.4.7_allg6cauirbqzgqcmexy2wdnoq + '@nestjs/common': 8.4.7_x6yqyveuahcdef4z4mxykmuv6a class-transformer: 0.5.1 class-validator: 0.13.2 reflect-metadata: 0.1.13 @@ -1449,8 +1398,8 @@ packages: '@nestjs/common': ^8.0.0 '@nestjs/core': ^8.0.0 dependencies: - '@nestjs/common': 8.4.7_allg6cauirbqzgqcmexy2wdnoq - '@nestjs/core': 8.4.7_zyw32gfu5yv6lfoz64j5eiekme + '@nestjs/common': 8.4.7_x6yqyveuahcdef4z4mxykmuv6a + '@nestjs/core': 8.4.7_bkbhg4knmtesqnnagm7a2p5cuy fastify: 3.29.0 fastify-cors: 6.1.0 fastify-formbody: 5.3.0 @@ -1505,13 +1454,13 @@ packages: '@nestjs/platform-express': optional: true dependencies: - '@nestjs/common': 8.4.7_allg6cauirbqzgqcmexy2wdnoq - '@nestjs/core': 8.4.7_zyw32gfu5yv6lfoz64j5eiekme + '@nestjs/common': 8.4.7_x6yqyveuahcdef4z4mxykmuv6a + '@nestjs/core': 8.4.7_bkbhg4knmtesqnnagm7a2p5cuy tslib: 2.4.0 dev: true - /@nestjs/typeorm/9.0.0_zhrs42futwpjx7z3p6twpp4g7i: - resolution: {integrity: sha512-pTH9ZlngObaPlt7//CY2lSb+3ouFczUQJln1ctXIpGwZdY3QBrwsxF3hnJXsCYNa+IPfz27qJUeoAQmp65kGZw==} + /@nestjs/typeorm/9.0.1_3s6uo3vw5b67mj2ct3iregv5v4: + resolution: {integrity: sha512-A2BgLIPsMtmMI0bPKEf4bmzgFPsnvHqNBx3KkvaJ7hJrBQy0OqYOb+Rr06ifblKWDWS2tUPNrAFQbZjtk3PI+g==} peerDependencies: '@nestjs/common': ^8.0.0 || ^9.0.0 '@nestjs/core': ^8.0.0 || ^9.0.0 @@ -1519,38 +1468,18 @@ packages: rxjs: ^7.2.0 typeorm: ^0.3.0 dependencies: - '@nestjs/common': 8.4.7_allg6cauirbqzgqcmexy2wdnoq - '@nestjs/core': 8.4.7_zyw32gfu5yv6lfoz64j5eiekme + '@nestjs/common': 8.4.7_x6yqyveuahcdef4z4mxykmuv6a + '@nestjs/core': 8.4.7_bkbhg4knmtesqnnagm7a2p5cuy reflect-metadata: 0.1.13 - rxjs: 7.5.6 - typeorm: 0.3.7_pg@8.7.3+ts-node@10.9.1 + rxjs: 7.5.7 + typeorm: 0.3.10_pg@8.8.0+ts-node@10.9.1 uuid: 8.3.2 dev: false - /@noble/hashes/1.0.0: - resolution: {integrity: sha512-DZVbtY62kc3kkBtMHqwCOfXrT/hnoORy5BJ4+HU1IR59X0KWAOqsfzQPcUl/lQLlG7qXbe/fZ3r/emxtAl+sqg==} - dev: false - - /@noble/hashes/1.1.2: - resolution: {integrity: sha512-KYRCASVTv6aeUi1tsF8/vpyR7zpfs3FUzy2Jqm+MU+LmUKhQ0y2FpfwqkCcxSg2ua4GALJd8k2R76WxwZGbQpA==} - dev: false - /@noble/hashes/1.1.3: resolution: {integrity: sha512-CE0FCR57H2acVI5UOzIGSSIYxZ6v/HOhDR0Ro9VLyhnzLwx0o8W1mmgaqlEUx4049qJDlIBRztv5k+MM8vbO3A==} dev: false - /@noble/secp256k1/1.5.5: - resolution: {integrity: sha512-sZ1W6gQzYnu45wPrWx8D3kwI2/U29VYTx9OjbDAd7jwRItJ0cSTMPRL/C8AWZFn9kWFLQGqEXVEE86w4Z8LpIQ==} - dev: false - - /@noble/secp256k1/1.6.0: - resolution: {integrity: sha512-DWSsg8zMHOYMYBqIQi96BQuthZrp98LCeMNcUOaffCIVYQ5yxDbNikLF+H7jEnmNNmXbtVic46iCuVWzar+MgA==} - dev: false - - /@noble/secp256k1/1.6.3: - resolution: {integrity: sha512-T04e4iTurVy7I8Sw4+c5OSN9/RkPlo1uKxAomtxQNLq8j1uPAqnsqG1bqvY3Jv7c13gyr6dui0zmh/I3+f/JaQ==} - dev: false - /@noble/secp256k1/1.7.0: resolution: {integrity: sha512-kbacwGSsH/CTout0ZnZWxnW1B+jH/7r/WAAKLBtrRJ/+CUH7lgmQzl3GTrQua3SGKWNSDsS6lmjnDpIJ5Dxyaw==} dev: false @@ -1584,132 +1513,49 @@ packages: transitivePeerDependencies: - encoding - /@open-web3/orml-type-definitions/0.8.2-11: - resolution: {integrity: sha512-cUv5+mprnaGNt0tu3FhK1nFRBK7SGjPhA1O0nxWWeRmuuH5fjkr0glbHE9kcKuCBfsh7nt6NGwxwl9emQtUDSA==} - dev: false - - /@open-web3/orml-type-definitions/0.9.4-38: - resolution: {integrity: sha512-kV0++JlRLEf7Z1y+Jm+792zqx6Q7dzpGP73rJJmQrBaeTML5mQzu4veZ24TVtcLV6hsGjUU/ixrJODNj6CCuZQ==} - dependencies: - lodash.merge: 4.6.2 - dev: false - - /@open-web3/orml-type-definitions/1.1.4: - resolution: {integrity: sha512-diuQx0Pf7cfoBtCpZTrBQOeIur0POp6Y9qfDS3p11RBF2XKwQ7jw/YKEFYqga1AyrzTcoSEE2OYUfeW3AKU94w==} - dependencies: - lodash.merge: 4.6.2 - dev: false - - /@parallel-finance/type-definitions/1.7.7: - resolution: {integrity: sha512-+ZicrAcDOHcj5uAMTo0xi7vtHfDYBnhCrAmHKruQJCB0hVEtgPynkuRaNRyixfvBRCQlU1uYl41kXcePrKwT1g==} - dependencies: - '@open-web3/orml-type-definitions': 1.1.4 - dev: false - - /@phala/typedefs/0.2.30: - resolution: {integrity: sha512-9OOPm0oWGoJ216EbziqMU3SCybNuOhYrSnthMFiYdaWigabwQBXFkDDNIT8RFPnVe4Jnf225vWGgvDjypF/Ayg==} - dev: false - - /@polkadot/api-augment/7.15.1: - resolution: {integrity: sha512-7csQLS6zuYuGq7W1EkTBz1ZmxyRvx/Qpz7E7zPSwxmY8Whb7Yn2effU9XF0eCcRpyfSW8LodF8wMmLxGYs1OaQ==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/api-base': 7.15.1 - '@polkadot/rpc-augment': 7.15.1 - '@polkadot/types': 7.15.1 - '@polkadot/types-augment': 7.15.1 - '@polkadot/types-codec': 7.15.1 - '@polkadot/util': 8.7.1 - transitivePeerDependencies: - - encoding - - supports-color - dev: false - - /@polkadot/api-augment/8.14.1: - resolution: {integrity: sha512-65GMlgVnZd08Ifh8uAj+p/+MlXxvsAfBcCHjQhOmbCE0dki+rzTPUR31LsWyDKtuw+nUBj0iZN4PelO+wU4r0g==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/api-base': 8.14.1 - '@polkadot/rpc-augment': 8.14.1 - '@polkadot/types': 8.14.1 - '@polkadot/types-augment': 8.14.1 - '@polkadot/types-codec': 8.14.1 - '@polkadot/util': 10.1.10 - transitivePeerDependencies: - - supports-color - dev: false - - /@polkadot/api-augment/9.4.3: - resolution: {integrity: sha512-w1iAdfpHprQiPkk9s98vRFqf9AJ70GoheGAEqO6p7JKYoutPlA8Pg8NiacwiCWW464zdbRn/T2/fWGtn8Iv27A==} + /@polkadot/api-augment/9.8.2: + resolution: {integrity: sha512-qAkbQXEDnXWopQAieBT60OtkpcTB6zML0oPZuccH6rwogZ5wgVZEn+XmE7LyyBipYF/Htzt9D5Bq03pTrHrlVA==} engines: {node: '>=14.0.0'} dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/api-base': 9.4.3 - '@polkadot/rpc-augment': 9.4.3 - '@polkadot/types': 9.4.3 - '@polkadot/types-augment': 9.4.3 - '@polkadot/types-codec': 9.4.3 - '@polkadot/util': 10.1.10 + '@babel/runtime': 7.20.1 + '@polkadot/api-base': 9.8.2 + '@polkadot/rpc-augment': 9.8.2 + '@polkadot/types': 9.8.2 + '@polkadot/types-augment': 9.8.2 + '@polkadot/types-codec': 9.8.2 + '@polkadot/util': 10.1.12 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate dev: false - /@polkadot/api-augment/9.5.2: - resolution: {integrity: sha512-dH6QMY8Z3zI6CrgSU3eSe6f0KWDb5PYGztg/FXGPrjh7Vjic7syWZ1LD6zaHJAFWDp80BEdEXfqr4lConrCKGg==} + /@polkadot/api-base/9.8.2: + resolution: {integrity: sha512-WjlwaTKQx/+1FdEh2s8BOgS4bK04sYCNH5pky23OPwzKzFbFtGa4RpBCoZfq8aFB2mBQjb8tAGMYpSNUOX92aw==} engines: {node: '>=14.0.0'} dependencies: - '@babel/runtime': 7.19.4 - '@polkadot/api-base': 9.5.2 - '@polkadot/rpc-augment': 9.5.2 - '@polkadot/types': 9.5.2 - '@polkadot/types-augment': 9.5.2 - '@polkadot/types-codec': 9.5.2 - '@polkadot/util': 10.1.11 + '@babel/runtime': 7.20.1 + '@polkadot/rpc-core': 9.8.2 + '@polkadot/types': 9.8.2 + '@polkadot/util': 10.1.12 + rxjs: 7.5.7 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate dev: false - /@polkadot/api-base/7.15.1: - resolution: {integrity: sha512-UlhLdljJPDwGpm5FxOjvJNFTxXMRFaMuVNx6EklbuetbBEJ/Amihhtj0EJRodxQwtZ4ZtPKYKt+g+Dn7OJJh4g==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/rpc-core': 7.15.1 - '@polkadot/types': 7.15.1 - '@polkadot/util': 8.7.1 - rxjs: 7.5.7 - transitivePeerDependencies: - - encoding - - supports-color - dev: false - - /@polkadot/api-base/8.14.1: - resolution: {integrity: sha512-EXFhNXIfpirf18IsqcG2pGQW1/Xn+bfjqVYQMMJ4ZONtYH4baZZlXk7SoXCCHonN2x1ixs4DOcRx5oVxjabdIQ==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/rpc-core': 8.14.1 - '@polkadot/types': 8.14.1 - '@polkadot/util': 10.1.10 - rxjs: 7.5.7 - transitivePeerDependencies: - - supports-color - dev: false - - /@polkadot/api-base/9.4.3: - resolution: {integrity: sha512-gYzf7LIcKo/rEGlXgoMOS619srcTmyD7wwZ9b0xh/Xg0vHPyUi8OVs3i4SRQrXS8KSVuZzBCrqALPytXmV0xdg==} + /@polkadot/api-contract/9.8.2: + resolution: {integrity: sha512-iBpGMfKxOUYvDWjaTrRc/jlsChnNrvXY1LH6FurRPF0OvAhAaahWZlanf3HehxH0FlPzrUOMc3O/g9AY73F2gg==} engines: {node: '>=14.0.0'} dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/rpc-core': 9.4.3 - '@polkadot/types': 9.4.3 - '@polkadot/util': 10.1.10 + '@babel/runtime': 7.20.1 + '@polkadot/api': 9.8.2 + '@polkadot/types': 9.8.2 + '@polkadot/types-codec': 9.8.2 + '@polkadot/types-create': 9.8.2 + '@polkadot/util': 10.1.12 + '@polkadot/util-crypto': 10.1.12_@polkadot+util@10.1.12 rxjs: 7.5.7 transitivePeerDependencies: - bufferutil @@ -1717,14 +1563,19 @@ packages: - utf-8-validate dev: false - /@polkadot/api-base/9.5.2: - resolution: {integrity: sha512-BBsH9SLB1FHgjdiU32cZX1puL3Eh8IjOJHjRsO/5SdttciQhF5g/u/m/mM/55qnlXmffI9s2Jre18G0XtVU9Aw==} + /@polkadot/api-derive/9.8.2: + resolution: {integrity: sha512-6BNk4+o1rsMO8JmxLKmEB8vADMx48e0Vn2PMvAC/KsE5CPSchwPvsSPh2VXV7PPjdAzaKicK5SlSPJ3XkNTMUA==} engines: {node: '>=14.0.0'} dependencies: - '@babel/runtime': 7.19.4 - '@polkadot/rpc-core': 9.5.2 - '@polkadot/types': 9.5.2 - '@polkadot/util': 10.1.11 + '@babel/runtime': 7.20.1 + '@polkadot/api': 9.8.2 + '@polkadot/api-augment': 9.8.2 + '@polkadot/api-base': 9.8.2 + '@polkadot/rpc-core': 9.8.2 + '@polkadot/types': 9.8.2 + '@polkadot/types-codec': 9.8.2 + '@polkadot/util': 10.1.12 + '@polkadot/util-crypto': 10.1.12_@polkadot+util@10.1.12 rxjs: 7.5.7 transitivePeerDependencies: - bufferutil @@ -1732,17 +1583,26 @@ packages: - utf-8-validate dev: false - /@polkadot/api-contract/9.4.3: - resolution: {integrity: sha512-PnBZyUgaLf7DGHkfrRrYISGRXLpZXykJj3L6KKcMrZL7MgiPvyhYzNVXCTmhGOjPQxhaYUDk8VPWmArLf8qT2Q==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/api': 9.4.3 - '@polkadot/types': 9.4.3 - '@polkadot/types-codec': 9.4.3 - '@polkadot/types-create': 9.4.3 - '@polkadot/util': 10.1.10 - '@polkadot/util-crypto': 10.1.10 + /@polkadot/api/9.8.2: + resolution: {integrity: sha512-bUPOWcJwhz/MJuxRJ/rRsNZIzjCREmHPNPKO5YpWw3dnQjKTlJxz+X6tG6ZxtfnIuTdoP6I3DdNCsFf6f2hEvQ==} + engines: {node: '>=14.0.0'} + dependencies: + '@babel/runtime': 7.20.1 + '@polkadot/api-augment': 9.8.2 + '@polkadot/api-base': 9.8.2 + '@polkadot/api-derive': 9.8.2 + '@polkadot/keyring': 10.1.12_@polkadot+util@10.1.12 + '@polkadot/rpc-augment': 9.8.2 + '@polkadot/rpc-core': 9.8.2 + '@polkadot/rpc-provider': 9.8.2 + '@polkadot/types': 9.8.2 + '@polkadot/types-augment': 9.8.2 + '@polkadot/types-codec': 9.8.2 + '@polkadot/types-create': 9.8.2 + '@polkadot/types-known': 9.8.2 + '@polkadot/util': 10.1.12 + '@polkadot/util-crypto': 10.1.12_@polkadot+util@10.1.12 + eventemitter3: 4.0.7 rxjs: 7.5.7 transitivePeerDependencies: - bufferutil @@ -1750,72 +1610,50 @@ packages: - utf-8-validate dev: false - /@polkadot/api-derive/4.17.1: - resolution: {integrity: sha512-mgq57F1yAiZjuiA0vrR2zWidyyd+mGe7Kbs4SxVeDWLsNbLc9+eASIfX7Hch2SDHIn3CQpv6DQqJH00uDfw9Lw==} + /@polkadot/keyring/10.1.12_@polkadot+util@10.1.12: + resolution: {integrity: sha512-zwTWOa+Glg0NT+EoOOjg9U6dotGPxDpr8xdpkg9EXcyKMa5Pw7alrUg+V3tC+5Ttu7dsZRCJKW8jEshCekulWA==} engines: {node: '>=14.0.0'} + peerDependencies: + '@polkadot/util': 10.1.12 dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/api': 4.17.1 - '@polkadot/rpc-core': 4.17.1 - '@polkadot/types': 4.17.1 - '@polkadot/util': 6.11.1 - '@polkadot/util-crypto': 6.11.1 - '@polkadot/x-rxjs': 6.11.1 - transitivePeerDependencies: - - encoding - - supports-color + '@babel/runtime': 7.20.1 + '@polkadot/util': 10.1.12 + '@polkadot/util-crypto': 10.1.12_@polkadot+util@10.1.12 dev: false - /@polkadot/api-derive/7.15.1: - resolution: {integrity: sha512-CsOQppksQBaa34L1fWRzmfQQpoEBwfH0yTTQxgj3h7rFYGVPxEKGeFjo1+IgI2vXXvOO73Z8E4H/MnbxvKrs1Q==} + /@polkadot/networks/10.1.12: + resolution: {integrity: sha512-asobCUdRSsnSIZKoqFsaPPtUPvbaNPh3r1XOvNqgrE65wsoNx15AiuqAigW2RKOoqVrUW7zthRJ5Xmk0MKS9GA==} engines: {node: '>=14.0.0'} dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/api': 7.15.1 - '@polkadot/api-augment': 7.15.1 - '@polkadot/api-base': 7.15.1 - '@polkadot/rpc-core': 7.15.1 - '@polkadot/types': 7.15.1 - '@polkadot/types-codec': 7.15.1 - '@polkadot/util': 8.7.1 - '@polkadot/util-crypto': 8.7.1 - rxjs: 7.5.7 - transitivePeerDependencies: - - encoding - - supports-color + '@babel/runtime': 7.20.1 + '@polkadot/util': 10.1.12 + '@substrate/ss58-registry': 1.34.0 dev: false - /@polkadot/api-derive/8.14.1: - resolution: {integrity: sha512-eWG1MrQhHMUjt9gDHN9/9/ZMATu1MolqcalPFhNoGtdON3+I0J3ntjQ4y5X7+p2OGwQplpYRKqbK4k7tKzu8tA==} + /@polkadot/rpc-augment/9.8.2: + resolution: {integrity: sha512-UkoE2g8RHS5F8RvwDLAcDLapffx9phsyd574YP1wGRfzQ3nGFCVWcvSP5mwQH/uaa8fKKWF6a8X3EXDEWRXr7g==} engines: {node: '>=14.0.0'} dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/api': 8.14.1 - '@polkadot/api-augment': 8.14.1 - '@polkadot/api-base': 8.14.1 - '@polkadot/rpc-core': 8.14.1 - '@polkadot/types': 8.14.1 - '@polkadot/types-codec': 8.14.1 - '@polkadot/util': 10.1.10 - '@polkadot/util-crypto': 10.1.10 - rxjs: 7.5.7 + '@babel/runtime': 7.20.1 + '@polkadot/rpc-core': 9.8.2 + '@polkadot/types': 9.8.2 + '@polkadot/types-codec': 9.8.2 + '@polkadot/util': 10.1.12 transitivePeerDependencies: + - bufferutil - supports-color + - utf-8-validate dev: false - /@polkadot/api-derive/9.4.3: - resolution: {integrity: sha512-6lKjJs93ucSF/mmljG32TcWq4gg35MimbuXxDYwNYXwuGm6ocN0auWp6Opg+DGLuwapfHhkOyZxSBVWi37gjEQ==} + /@polkadot/rpc-core/9.8.2: + resolution: {integrity: sha512-hgJ2QQfG+WL7CeSqSWMmfsvEQ/avt7aue+06oW8YOvLufQJHL1Kol8kKZJvcz0Kyu3Of8VQQPJrBdU9ykgVFgg==} engines: {node: '>=14.0.0'} dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/api': 9.4.3 - '@polkadot/api-augment': 9.4.3 - '@polkadot/api-base': 9.4.3 - '@polkadot/rpc-core': 9.4.3 - '@polkadot/types': 9.4.3 - '@polkadot/types-codec': 9.4.3 - '@polkadot/util': 10.1.10 - '@polkadot/util-crypto': 10.1.10 + '@babel/runtime': 7.20.1 + '@polkadot/rpc-augment': 9.8.2 + '@polkadot/rpc-provider': 9.8.2 + '@polkadot/types': 9.8.2 + '@polkadot/util': 10.1.12 rxjs: 7.5.7 transitivePeerDependencies: - bufferutil @@ -1823,1957 +1661,261 @@ packages: - utf-8-validate dev: false - /@polkadot/api-derive/9.5.2: - resolution: {integrity: sha512-kWn12dlqfIES1trNLd3O1i2qa4T97v/co1VMCgVstICwCt3+mGZgpxkMqQqPiWHagKEVeBNoAn+h8eOiQlbujA==} + /@polkadot/rpc-provider/9.8.2: + resolution: {integrity: sha512-vyc118s/d3Xs0JNLr29d5NeqvMDspWzQ5KNvFibnKKGst1BOzIHb0BZLpMw3PCXqlCdDtUK86CTx9aW2kzYOCg==} engines: {node: '>=14.0.0'} dependencies: - '@babel/runtime': 7.19.4 - '@polkadot/api': 9.5.2 - '@polkadot/api-augment': 9.5.2 - '@polkadot/api-base': 9.5.2 - '@polkadot/rpc-core': 9.5.2 - '@polkadot/types': 9.5.2 - '@polkadot/types-codec': 9.5.2 - '@polkadot/util': 10.1.11 - '@polkadot/util-crypto': 10.1.11 - rxjs: 7.5.7 + '@babel/runtime': 7.20.1 + '@polkadot/keyring': 10.1.12_@polkadot+util@10.1.12 + '@polkadot/types': 9.8.2 + '@polkadot/types-support': 9.8.2 + '@polkadot/util': 10.1.12 + '@polkadot/util-crypto': 10.1.12_@polkadot+util@10.1.12 + '@polkadot/x-fetch': 10.1.12 + '@polkadot/x-global': 10.1.12 + '@polkadot/x-ws': 10.1.12 + '@substrate/connect': 0.7.16 + eventemitter3: 4.0.7 + mock-socket: 9.1.5 + nock: 13.2.9 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate dev: false - /@polkadot/api/4.17.1: - resolution: {integrity: sha512-uuNIKWC+PjM+1AARRu4NLWOEudZE6DW8UOlaubx3uGhPywqPIP+HGWP2I6PqRGYKARBWxxOvca1Q7WoKzpYC8w==} + /@polkadot/types-augment/9.8.2: + resolution: {integrity: sha512-x2bzcDIdGL5GYA5XkzE/HiVKf/Rfw19N4BBTt0kFMZOn11oPluD1XU+dijg5vDFf1p45935E4JRMeGEV4S1MLQ==} engines: {node: '>=14.0.0'} dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/api-derive': 4.17.1 - '@polkadot/keyring': 6.11.1 - '@polkadot/metadata': 4.17.1 - '@polkadot/rpc-core': 4.17.1 - '@polkadot/rpc-provider': 4.17.1 - '@polkadot/types': 4.17.1 - '@polkadot/types-known': 4.17.1 - '@polkadot/util': 6.11.1 - '@polkadot/util-crypto': 6.11.1 - '@polkadot/x-rxjs': 6.11.1 - eventemitter3: 4.0.7 - transitivePeerDependencies: - - encoding - - supports-color + '@babel/runtime': 7.20.1 + '@polkadot/types': 9.8.2 + '@polkadot/types-codec': 9.8.2 + '@polkadot/util': 10.1.12 dev: false - /@polkadot/api/7.15.1: - resolution: {integrity: sha512-z0z6+k8+R9ixRMWzfsYrNDnqSV5zHKmyhTCL0I7+1I081V18MJTCFUKubrh0t1gD0/FCt3U9Ibvr4IbtukYLrQ==} + /@polkadot/types-codec/9.8.2: + resolution: {integrity: sha512-3ZtPE4gneR0OMR91dnBhTM6NKUHhvdldXcHdl5lT6kMI1gbfsekioJFKgNoM1bcucdno8sFtaGIeknlAney+CA==} engines: {node: '>=14.0.0'} dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/api-augment': 7.15.1 - '@polkadot/api-base': 7.15.1 - '@polkadot/api-derive': 7.15.1 - '@polkadot/keyring': 8.7.1 - '@polkadot/rpc-augment': 7.15.1 - '@polkadot/rpc-core': 7.15.1 - '@polkadot/rpc-provider': 7.15.1 - '@polkadot/types': 7.15.1 - '@polkadot/types-augment': 7.15.1 - '@polkadot/types-codec': 7.15.1 - '@polkadot/types-create': 7.15.1 - '@polkadot/types-known': 7.15.1 - '@polkadot/util': 8.7.1 - '@polkadot/util-crypto': 8.7.1 - eventemitter3: 4.0.7 - rxjs: 7.5.7 - transitivePeerDependencies: - - encoding - - supports-color + '@babel/runtime': 7.20.1 + '@polkadot/util': 10.1.12 + '@polkadot/x-bigint': 10.1.12 dev: false - /@polkadot/api/8.14.1: - resolution: {integrity: sha512-jg26eIKFYqVfDBTAopHL3aDaNw9j6TdUkXuvYJOnynpecU4xwbTVKcOtSOjJ2eRX4MgMQ4zlyMHJx3iKw0uUTA==} + /@polkadot/types-create/9.8.2: + resolution: {integrity: sha512-4mn+uu0pjh29+XR6K3bMZN6rZLWIW+R5wCpoJVOkp2p4WTVWfVTwI23mQhOpPfPDwx4N7bQfihlm4wRwSXsRYQ==} engines: {node: '>=14.0.0'} dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/api-augment': 8.14.1 - '@polkadot/api-base': 8.14.1 - '@polkadot/api-derive': 8.14.1 - '@polkadot/keyring': 10.1.2 - '@polkadot/rpc-augment': 8.14.1 - '@polkadot/rpc-core': 8.14.1 - '@polkadot/rpc-provider': 8.14.1 - '@polkadot/types': 8.14.1 - '@polkadot/types-augment': 8.14.1 - '@polkadot/types-codec': 8.14.1 - '@polkadot/types-create': 8.14.1 - '@polkadot/types-known': 8.14.1 - '@polkadot/util': 10.1.10 - '@polkadot/util-crypto': 10.1.2 - eventemitter3: 4.0.7 - rxjs: 7.5.6 - transitivePeerDependencies: - - supports-color + '@babel/runtime': 7.20.1 + '@polkadot/types-codec': 9.8.2 + '@polkadot/util': 10.1.12 dev: false - /@polkadot/api/9.4.3: - resolution: {integrity: sha512-vbeWW2tyntAmWllUqnOwlaprFT+5o8a0uP0Qkz5QfLslUFZtxhHhLWtQWVtJnoqC5FN10ZybDkUGFlsxNsvwgg==} + /@polkadot/types-known/9.8.2: + resolution: {integrity: sha512-OO7j1n+i0agk56omcJ29aNtcFUMHKSkeASeNnVK6sy9V7ywOJdx7qfEreeWf1fhWKPwwLb9J5o5ReyvSN4dVKA==} engines: {node: '>=14.0.0'} dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/api-augment': 9.4.3 - '@polkadot/api-base': 9.4.3 - '@polkadot/api-derive': 9.4.3 - '@polkadot/keyring': 10.1.10 - '@polkadot/rpc-augment': 9.4.3 - '@polkadot/rpc-core': 9.4.3 - '@polkadot/rpc-provider': 9.4.3 - '@polkadot/types': 9.4.3 - '@polkadot/types-augment': 9.4.3 - '@polkadot/types-codec': 9.4.3 - '@polkadot/types-create': 9.4.3 - '@polkadot/types-known': 9.4.3 - '@polkadot/util': 10.1.10 - '@polkadot/util-crypto': 10.1.10 - eventemitter3: 4.0.7 - rxjs: 7.5.7 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate + '@babel/runtime': 7.20.1 + '@polkadot/networks': 10.1.12 + '@polkadot/types': 9.8.2 + '@polkadot/types-codec': 9.8.2 + '@polkadot/types-create': 9.8.2 + '@polkadot/util': 10.1.12 dev: false - /@polkadot/api/9.5.2: - resolution: {integrity: sha512-iEF/E8vQan3fHmIEl3bX7Yn/1jQLlvSDwPOxiQdj4tIcF36HX6vCbkdhQKRif0CNYES58TA9EKFiCNg81k+kXw==} + /@polkadot/types-support/9.8.2: + resolution: {integrity: sha512-67POc2CfW2yIJW3wqVzcY6fXPsqYC5dxzJBruwZa4yUIZc2H4CdCcsQ2tDh8IsSuEloFvp/biYQ5NPSNZK5YJQ==} engines: {node: '>=14.0.0'} dependencies: - '@babel/runtime': 7.19.4 - '@polkadot/api-augment': 9.5.2 - '@polkadot/api-base': 9.5.2 - '@polkadot/api-derive': 9.5.2 - '@polkadot/keyring': 10.1.11 - '@polkadot/rpc-augment': 9.5.2 - '@polkadot/rpc-core': 9.5.2 - '@polkadot/rpc-provider': 9.5.2 - '@polkadot/types': 9.5.2 - '@polkadot/types-augment': 9.5.2 - '@polkadot/types-codec': 9.5.2 - '@polkadot/types-create': 9.5.2 - '@polkadot/types-known': 9.5.2 - '@polkadot/util': 10.1.11 - '@polkadot/util-crypto': 10.1.11 - eventemitter3: 4.0.7 - rxjs: 7.5.7 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - dev: false - - /@polkadot/apps-config/0.118.1: - resolution: {integrity: sha512-m1pIkWADyWEd/3WXZezjXwjCGr6in1Cd1FGiQciC5oHJbma3bJIMpJrQfhGeprxhTbJ/fDKdEWw0YEaUhgu54A==} - dependencies: - '@acala-network/type-definitions': 4.1.5 - '@babel/runtime': 7.18.9 - '@bifrost-finance/type-definitions': 1.6.1 - '@crustio/type-definitions': 1.3.0 - '@darwinia/types': 2.8.8 - '@darwinia/types-known': 2.8.8 - '@digitalnative/type-definitions': 1.1.27 - '@docknetwork/node-types': 0.7.0 - '@edgeware/node-types': 3.6.2-wako - '@equilab/definitions': 1.4.12 - '@interlay/interbtc-types': 1.7.0 - '@kiltprotocol/type-definitions': 0.1.23 - '@laminar/type-definitions': 0.3.1 - '@logion/node-api': 0.3.2-1 - '@mangata-finance/types': 0.5.0 - '@metaverse-network-sdk/type-definitions': 0.0.1-13 - '@parallel-finance/type-definitions': 1.7.7 - '@phala/typedefs': 0.2.30 - '@polkadot/api': 8.14.1 - '@polkadot/api-derive': 8.14.1 - '@polkadot/networks': 10.1.2 - '@polkadot/types': 8.14.1 - '@polkadot/util': 10.1.6 - '@polkadot/x-fetch': 10.1.2 - '@polymathnetwork/polymesh-types': 0.0.2 - '@snowfork/snowbridge-types': 0.2.7 - '@sora-substrate/type-definitions': 1.9.18 - '@subsocial/definitions': 0.6.11 - '@unique-nft/opal-testnet-types': 0.5.3_ik75i26eqe7sgkaioc3ny3gd4y - '@unique-nft/quartz-mainnet-types': 0.6.1_ik75i26eqe7sgkaioc3ny3gd4y - '@unique-nft/unique-mainnet-types': 0.6.3_ik75i26eqe7sgkaioc3ny3gd4y - '@zeitgeistpm/type-defs': 0.6.0 - '@zeroio/type-definitions': 0.0.14 - lodash: 4.17.21 - moonbeam-types-bundle: 2.0.7 - pontem-types-bundle: 1.0.15 - rxjs: 7.5.6 - transitivePeerDependencies: - - bufferutil - - encoding - - supports-color - - utf-8-validate + '@babel/runtime': 7.20.1 + '@polkadot/util': 10.1.12 dev: false - /@polkadot/keyring/10.1.10: - resolution: {integrity: sha512-crKYBbwmPcFoTP6mby2+o1QWsjAyi5QlKzU8tXuXOApP6SBuqmDujIuLOKNG2vZoftNdVldsVL0WmKVYtBeuQg==} + /@polkadot/types/9.8.2: + resolution: {integrity: sha512-klbqJZTobNSZ8zXhPWV0ICrYlSAcooyclTRv3fYSdVUYwGF8K1zkPUImDHlnlQQ2mGQFi+8JiBUOcbAp/JgLWw==} engines: {node: '>=14.0.0'} dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 10.1.10 - '@polkadot/util-crypto': 10.1.10 + '@babel/runtime': 7.20.1 + '@polkadot/keyring': 10.1.12_@polkadot+util@10.1.12 + '@polkadot/types-augment': 9.8.2 + '@polkadot/types-codec': 9.8.2 + '@polkadot/types-create': 9.8.2 + '@polkadot/util': 10.1.12 + '@polkadot/util-crypto': 10.1.12_@polkadot+util@10.1.12 + rxjs: 7.5.7 dev: false - /@polkadot/keyring/10.1.11: - resolution: {integrity: sha512-Nv8cZaOA/KbdslDMTklJ58+y+UPpic3+oMQoozuq48Ccjv7WeW2BX47XM/RNE8nYFg6EHa6Whfm4IFaFb8s7ag==} + /@polkadot/util-crypto/10.1.12_@polkadot+util@10.1.12: + resolution: {integrity: sha512-X/IxeMMYMVWhByU2be5bzPFy8acPTa2oLcvzSKLjhxqtCEIqprs/fshhfT3qVTa/lAN+WeNE8oTPCPLKVpQE4w==} engines: {node: '>=14.0.0'} + peerDependencies: + '@polkadot/util': 10.1.12 dependencies: - '@babel/runtime': 7.19.4 - '@polkadot/util': 10.1.11 - '@polkadot/util-crypto': 10.1.11 + '@babel/runtime': 7.20.1 + '@noble/hashes': 1.1.3 + '@noble/secp256k1': 1.7.0 + '@polkadot/networks': 10.1.12 + '@polkadot/util': 10.1.12 + '@polkadot/wasm-crypto': 6.3.1_klobyzdarg25uad6uqq67z6rye + '@polkadot/x-bigint': 10.1.12 + '@polkadot/x-randomvalues': 10.1.12 + '@scure/base': 1.1.1 + ed2curve: 0.3.0 + tweetnacl: 1.0.3 dev: false - /@polkadot/keyring/10.1.2: - resolution: {integrity: sha512-b6hP3JFGYjsNNT3NO7I8fWRPqovgL4IvjvLttkfzpM6eM1zRRupqQ+Q50Jdl/3YUcr26PcxQcdRqJku4WyDABg==} + /@polkadot/util/10.1.12: + resolution: {integrity: sha512-bOz1WqDFzIgkTpT6oRhAdXKqETr2GffZdRlYqyOvP1ATAEa48/sRgzIvg7WTiI68D8By3fJmKuA+ggX3YrNF/w==} engines: {node: '>=14.0.0'} dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 10.1.2 - '@polkadot/util-crypto': 10.1.2 + '@babel/runtime': 7.20.1 + '@polkadot/x-bigint': 10.1.12 + '@polkadot/x-global': 10.1.12 + '@polkadot/x-textdecoder': 10.1.12 + '@polkadot/x-textencoder': 10.1.12 + '@types/bn.js': 5.1.1 + bn.js: 5.2.1 dev: false - /@polkadot/keyring/6.11.1: - resolution: {integrity: sha512-rW8INl7pO6Dmaffd6Df1yAYCRWa2RmWQ0LGfJeA/M6seVIkI6J3opZqAd4q2Op+h9a7z4TESQGk8yggOEL+Csg==} + /@polkadot/wasm-bridge/6.3.1_klobyzdarg25uad6uqq67z6rye: + resolution: {integrity: sha512-1TYkHsb9AEFhU9uZj3biEnN2yKQNzdrwSjiTvfCYnt97pnEkKsZI6cku+YPZQv5w/x9CQa5Yua9e2DVVZSivGA==} engines: {node: '>=14.0.0'} + peerDependencies: + '@polkadot/util': '*' + '@polkadot/x-randomvalues': '*' dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 6.11.1 - '@polkadot/util-crypto': 6.11.1 + '@babel/runtime': 7.20.1 + '@polkadot/util': 10.1.12 + '@polkadot/x-randomvalues': 10.1.12 dev: false - /@polkadot/keyring/7.9.2: - resolution: {integrity: sha512-6UGoIxhiTyISkYEZhUbCPpgVxaneIfb/DBVlHtbvaABc8Mqh1KuqcTIq19Mh9wXlBuijl25rw4lUASrE/9sBqg==} + /@polkadot/wasm-crypto-asmjs/6.3.1_@polkadot+util@10.1.12: + resolution: {integrity: sha512-zbombRfA5v/mUWQQhgg2YwaxhRmxRIrvskw65x+lruax3b6xPBFDs7yplopiJU3r8h2pTgQvX/DUksvqz2TCRQ==} engines: {node: '>=14.0.0'} + peerDependencies: + '@polkadot/util': '*' dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 7.9.2 - '@polkadot/util-crypto': 7.9.2 + '@babel/runtime': 7.20.1 + '@polkadot/util': 10.1.12 dev: false - /@polkadot/keyring/8.7.1: - resolution: {integrity: sha512-t6ZgQVC+nQT7XwbWtEhkDpiAzxKVJw8Xd/gWdww6xIrawHu7jo3SGB4QNdPgkf8TvDHYAAJiupzVQYAlOIq3GA==} + /@polkadot/wasm-crypto-init/6.3.1_klobyzdarg25uad6uqq67z6rye: + resolution: {integrity: sha512-9yaUBcu+snwjJLmPPGl3cyGRQ1afyFGm16qzTM0sgG/ZCfUlK4uk8KWZe+sBUKgoxb2oXY7Y4WklKgQI1YBdfw==} engines: {node: '>=14.0.0'} + peerDependencies: + '@polkadot/util': '*' + '@polkadot/x-randomvalues': '*' dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 8.7.1 - '@polkadot/util-crypto': 8.7.1 + '@babel/runtime': 7.20.1 + '@polkadot/util': 10.1.12 + '@polkadot/wasm-bridge': 6.3.1_klobyzdarg25uad6uqq67z6rye + '@polkadot/wasm-crypto-asmjs': 6.3.1_@polkadot+util@10.1.12 + '@polkadot/wasm-crypto-wasm': 6.3.1_@polkadot+util@10.1.12 + '@polkadot/x-randomvalues': 10.1.12 dev: false - /@polkadot/metadata/4.17.1: - resolution: {integrity: sha512-219isiCWVfbu5JxZnOPj+cV4T+S0XHS4+Jal3t3xz9y4nbgr+25Pa4KInEsJPx0u8EZAxMeiUCX3vd5U7oe72g==} + /@polkadot/wasm-crypto-wasm/6.3.1_@polkadot+util@10.1.12: + resolution: {integrity: sha512-idSlzKGVzCfeCMRHsacRvqwojSaTadFxL/Dbls4z1thvfa3U9Ku0d2qVtlwg7Hj+tYWDiuP8Kygs+6bQwfs0XA==} engines: {node: '>=14.0.0'} + peerDependencies: + '@polkadot/util': '*' dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/types': 4.17.1 - '@polkadot/types-known': 4.17.1 - '@polkadot/util': 6.11.1 - '@polkadot/util-crypto': 6.11.1 + '@babel/runtime': 7.20.1 + '@polkadot/util': 10.1.12 + '@polkadot/wasm-util': 6.3.1_@polkadot+util@10.1.12 dev: false - /@polkadot/networks/10.1.1: - resolution: {integrity: sha512-upM8r0mrsCVA+vPVbJUjtnkAfdleBMHB+Fbxvy3xtbK1IFpzQTUhSOQb6lBnBAPBFGyxMtQ3TytnInckAdYZeg==} + /@polkadot/wasm-crypto/6.3.1_klobyzdarg25uad6uqq67z6rye: + resolution: {integrity: sha512-OO8h0qeVkqp4xYZaRVl4iuWOEtq282pNBHDKb6SOJuI2g59eWGcKh4EQU9Me2VP6qzojIqptrkrVt7KQXC68gA==} engines: {node: '>=14.0.0'} + peerDependencies: + '@polkadot/util': '*' + '@polkadot/x-randomvalues': '*' dependencies: - '@babel/runtime': 7.18.9 - '@polkadot/util': 10.1.1 - '@substrate/ss58-registry': 1.25.0 + '@babel/runtime': 7.20.1 + '@polkadot/util': 10.1.12 + '@polkadot/wasm-bridge': 6.3.1_klobyzdarg25uad6uqq67z6rye + '@polkadot/wasm-crypto-asmjs': 6.3.1_@polkadot+util@10.1.12 + '@polkadot/wasm-crypto-init': 6.3.1_klobyzdarg25uad6uqq67z6rye + '@polkadot/wasm-crypto-wasm': 6.3.1_@polkadot+util@10.1.12 + '@polkadot/wasm-util': 6.3.1_@polkadot+util@10.1.12 + '@polkadot/x-randomvalues': 10.1.12 dev: false - /@polkadot/networks/10.1.10: - resolution: {integrity: sha512-Db78t2XnFIZbdSdu1aFuj3/1cNwcSzG/+wNrpCQ9dPhnGPy5S1GVbmU8pyxTftPKdTFc+8RdBr+5bc0d5ijGiA==} + /@polkadot/wasm-util/6.3.1_@polkadot+util@10.1.12: + resolution: {integrity: sha512-12oAv5J7Yoc9m6jixrSaQCxpOkWOyzHx3DMC8qmLjRiwdBWxqLmImOVRVnFsbaxqSbhBIHRuJphVxWE+GZETDg==} engines: {node: '>=14.0.0'} + peerDependencies: + '@polkadot/util': '*' dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 10.1.10 - '@substrate/ss58-registry': 1.31.0 + '@babel/runtime': 7.20.1 + '@polkadot/util': 10.1.12 dev: false - /@polkadot/networks/10.1.11: - resolution: {integrity: sha512-4FfOVETXwh6PL6wd6fYJMkRSQKm+xUw3vR5rHqcAnB696FpMFPPErc6asgZ9lYMyzNJRY3yG86HQpFhtCv1nGA==} + /@polkadot/x-bigint/10.1.12: + resolution: {integrity: sha512-n9cRXhdPvA9qO9/dgb32Ej/5t4mI4KnBYoPqlAcGviOnn7lc9yEPlYSMfgt+4p7F2bX8o6nbmbvBXqZL457Yhw==} engines: {node: '>=14.0.0'} dependencies: - '@babel/runtime': 7.19.4 - '@polkadot/util': 10.1.11 - '@substrate/ss58-registry': 1.33.0 + '@babel/runtime': 7.20.1 + '@polkadot/x-global': 10.1.12 dev: false - /@polkadot/networks/10.1.2: - resolution: {integrity: sha512-67ZPqdhLYDGNX1jMEa3+hujh9j30Dr9AdqgdjE8Z3GdWoEVRp9Zda3DXMnDIQlRBQ32pRZty7dFhIq61Bv/whQ==} + /@polkadot/x-fetch/10.1.12: + resolution: {integrity: sha512-t40R3Vi2itsqT9bDAGxNYSV1+D8JQX4gCQoA8jQSjQe5xfSF9WidbcvDONsPhsunYe8gOb0FhdNm7ruuAdPNNw==} engines: {node: '>=14.0.0'} dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 10.1.2 - '@substrate/ss58-registry': 1.25.0 + '@babel/runtime': 7.20.1 + '@polkadot/x-global': 10.1.12 + '@types/node-fetch': 2.6.2 + node-fetch: 3.3.0 dev: false - /@polkadot/networks/6.11.1: - resolution: {integrity: sha512-0C6Ha2kvr42se3Gevx6UhHzv3KnPHML0N73Amjwvdr4y0HLZ1Nfw+vcm5yqpz5gpiehqz97XqFrsPRauYdcksQ==} + /@polkadot/x-global/10.1.12: + resolution: {integrity: sha512-APFCIVoyaB9rhgcg2j5ayW0WVTSDO4yUriyrOPgX4A4ZJ6DFV+w30h9uWtfKzNzAV6dDs6pDNlB0K4Mpi5CmcA==} engines: {node: '>=14.0.0'} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.20.1 dev: false - /@polkadot/networks/7.9.2: - resolution: {integrity: sha512-4obI1RdW5/7TFwbwKA9oqw8aggVZ65JAUvIFMd2YmMC2T4+NiZLnok0WhRkhZkUnqjLIHXYNwq7Ho1i39dte0g==} + /@polkadot/x-randomvalues/10.1.12: + resolution: {integrity: sha512-oldth/zJAwysb+1uSxB7GIgCnuJmK33ZbxRl8vOwHrIKgKJGxJufRxLtZg1Pq530DW6V3z5TwOWacx58ggfN3Q==} engines: {node: '>=14.0.0'} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.20.1 + '@polkadot/x-global': 10.1.12 dev: false - /@polkadot/networks/8.7.1: - resolution: {integrity: sha512-8xAmhDW0ry5EKcEjp6VTuwoTm0DdDo/zHsmx88P6sVL87gupuFsL+B6TrsYLl8GcaqxujwrOlKB+CKTUg7qFKg==} + /@polkadot/x-textdecoder/10.1.12: + resolution: {integrity: sha512-YKEr3QiTu8zxosVx9WWFhMmFw4hBmAKWkgd7dhpMU+wIaUlSBriV/7vL+HnvJMIKf1jz3iAZ7i0oDGfvj1cZ6w==} engines: {node: '>=14.0.0'} dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 8.7.1 - '@substrate/ss58-registry': 1.25.0 + '@babel/runtime': 7.20.1 + '@polkadot/x-global': 10.1.12 dev: false - /@polkadot/networks/9.7.2: - resolution: {integrity: sha512-oMAdF8Y9CLBI0EUZBcycHcvbQQdbkJHevPJ/lwnZXJTaueXuav/Xm2yiFj5J3V8meIjLocURlMawgsAVItXOBQ==} + /@polkadot/x-textencoder/10.1.12: + resolution: {integrity: sha512-WgHAUhiepWBAcOMOAJnBl2mZNu5KPmTndg4f1Z1CwNdg/AhAhJL/yh98f5KH1aajNkC+5xutlOzdmEySg+e21g==} engines: {node: '>=14.0.0'} dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 9.7.2 - '@substrate/ss58-registry': 1.25.0 + '@babel/runtime': 7.20.1 + '@polkadot/x-global': 10.1.12 dev: false - /@polkadot/rpc-augment/7.15.1: - resolution: {integrity: sha512-sK0+mphN7nGz/eNPsshVi0qd0+N0Pqxuebwc1YkUGP0f9EkDxzSGp6UjGcSwWVaAtk9WZZ1MpK1Jwb/2GrKV7Q==} + /@polkadot/x-ws/10.1.12: + resolution: {integrity: sha512-MmPNHAVBhCkd9Cv6i/ctcVC5Fo8fEeIlBk/GTOZSaLQZAP9jqFPrZZQE7n4oFLSw645z+RjlBodd3Y9Q9acfMg==} engines: {node: '>=14.0.0'} dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/rpc-core': 7.15.1 - '@polkadot/types': 7.15.1 - '@polkadot/types-codec': 7.15.1 - '@polkadot/util': 8.7.1 + '@babel/runtime': 7.20.1 + '@polkadot/x-global': 10.1.12 + '@types/websocket': 1.0.5 + websocket: 1.0.34 transitivePeerDependencies: - - encoding - supports-color dev: false - /@polkadot/rpc-augment/8.14.1: - resolution: {integrity: sha512-0dIsNVIMeCp0kV7+Obz0Odt6K32Ka2ygwhiV5jhhJthy8GJBPo94mKDed5gzln3Dgl2LEdJJt1h/pgCx4a2i4A==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/rpc-core': 8.14.1 - '@polkadot/types': 8.14.1 - '@polkadot/types-codec': 8.14.1 - '@polkadot/util': 10.1.10 - transitivePeerDependencies: - - supports-color - dev: false - - /@polkadot/rpc-augment/9.4.3: - resolution: {integrity: sha512-j4oFAPfP+AyQVb1rl8Jbj5k0UqfZyHUy0+CLHtu/Q0S9Wk0R1SDPACpI+93H0DjwYAFfsxbRMhloAH1IJWD5uA==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/rpc-core': 9.4.3 - '@polkadot/types': 9.4.3 - '@polkadot/types-codec': 9.4.3 - '@polkadot/util': 10.1.10 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - dev: false - - /@polkadot/rpc-augment/9.5.2: - resolution: {integrity: sha512-QAcunC7p/T4xy6e4m0Q1c9tiVYxnm+S9o10tmtx0K4qXzrc/4I2/tsw3nEGi3BzJhvMpFondSQGcJ3gyLwpmVA==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.4 - '@polkadot/rpc-core': 9.5.2 - '@polkadot/types': 9.5.2 - '@polkadot/types-codec': 9.5.2 - '@polkadot/util': 10.1.11 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - dev: false - - /@polkadot/rpc-core/4.17.1: - resolution: {integrity: sha512-1gqYaYuSSQsRmt3ol55jmjBP/euKyAh4PwSj94I2wu0fngK/FZwVZNDJZn/Ib68X/s38TBIgqJ6+YdUdr3z1xw==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/metadata': 4.17.1 - '@polkadot/rpc-provider': 4.17.1 - '@polkadot/types': 4.17.1 - '@polkadot/util': 6.11.1 - '@polkadot/x-rxjs': 6.11.1 - transitivePeerDependencies: - - encoding - - supports-color - dev: false - - /@polkadot/rpc-core/7.15.1: - resolution: {integrity: sha512-4Sb0e0PWmarCOizzxQAE1NQSr5z0n+hdkrq3+aPohGu9Rh4PodG+OWeIBy7Ov/3GgdhNQyBLG+RiVtliXecM3g==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/rpc-augment': 7.15.1 - '@polkadot/rpc-provider': 7.15.1 - '@polkadot/types': 7.15.1 - '@polkadot/util': 8.7.1 - rxjs: 7.5.7 - transitivePeerDependencies: - - encoding - - supports-color - dev: false - - /@polkadot/rpc-core/8.14.1: - resolution: {integrity: sha512-deQ8Ob59ao/1fZQdaVtFjYR/HCBdxSYvQGt7/alBu1Uig9Sahx9oKcMkU5rWY36XqGZYos4zLay98W2hDlf+6Q==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/rpc-augment': 8.14.1 - '@polkadot/rpc-provider': 8.14.1 - '@polkadot/types': 8.14.1 - '@polkadot/util': 10.1.10 - rxjs: 7.5.7 - transitivePeerDependencies: - - supports-color - dev: false - - /@polkadot/rpc-core/9.4.3: - resolution: {integrity: sha512-xTU33bNnqdLaaCFdGnoxY03rmmgUKH/2JoEa+fBRvt9RPc7KuanWSKSeHieekZXSgCXBJ3zbfStyo43klg74OQ==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/rpc-augment': 9.4.3 - '@polkadot/rpc-provider': 9.4.3 - '@polkadot/types': 9.4.3 - '@polkadot/util': 10.1.10 - rxjs: 7.5.7 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - dev: false - - /@polkadot/rpc-core/9.5.2: - resolution: {integrity: sha512-4PbNz0GEp3FXYOnsS7mDHZy9DNVBOl56fq8vs09rLkEkrrvGkHmCvabEEWL7OPbwBzwzsCxdgI+IdkVTUKXPkQ==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.4 - '@polkadot/rpc-augment': 9.5.2 - '@polkadot/rpc-provider': 9.5.2 - '@polkadot/types': 9.5.2 - '@polkadot/util': 10.1.11 - rxjs: 7.5.7 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - dev: false - - /@polkadot/rpc-provider/4.17.1: - resolution: {integrity: sha512-vlU1H5mnfP0Ej8PbjcxwF9ZlT7LtcpekOKI4iYfMnfdelSUKUVyaD5PC8yRGIg9fxkorA6OM5AZs116jAl3TLA==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/types': 4.17.1 - '@polkadot/util': 6.11.1 - '@polkadot/util-crypto': 6.11.1 - '@polkadot/x-fetch': 6.11.1 - '@polkadot/x-global': 6.11.1 - '@polkadot/x-ws': 6.11.1 - eventemitter3: 4.0.7 - transitivePeerDependencies: - - encoding - - supports-color - dev: false - - /@polkadot/rpc-provider/7.15.1: - resolution: {integrity: sha512-n0RWfSaD/r90JXeJkKry1aGZwJeBUUiMpXUQ9Uvp6DYBbYEDs0fKtWLpdT3PdFrMbe5y3kwQmNLxwe6iF4+mzg==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/keyring': 8.7.1 - '@polkadot/types': 7.15.1 - '@polkadot/types-support': 7.15.1 - '@polkadot/util': 8.7.1 - '@polkadot/util-crypto': 8.7.1 - '@polkadot/x-fetch': 8.7.1 - '@polkadot/x-global': 8.7.1 - '@polkadot/x-ws': 8.7.1 - '@substrate/connect': 0.7.0-alpha.0 - eventemitter3: 4.0.7 - mock-socket: 9.1.5 - nock: 13.2.9 - transitivePeerDependencies: - - encoding - - supports-color - dev: false - - /@polkadot/rpc-provider/8.14.1: - resolution: {integrity: sha512-pAUSHZiSWLhBSYf4LmLc8iCaeqTu7Ajn8AzyqxvZDHGnIrzV5M7eTjpNDP84qno6jWRHKQ/IILr62hausEmS5w==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/keyring': 10.1.2 - '@polkadot/types': 8.14.1 - '@polkadot/types-support': 8.14.1 - '@polkadot/util': 10.1.10 - '@polkadot/util-crypto': 10.1.10 - '@polkadot/x-fetch': 10.1.2 - '@polkadot/x-global': 10.1.6 - '@polkadot/x-ws': 10.1.2 - '@substrate/connect': 0.7.9 - eventemitter3: 4.0.7 - mock-socket: 9.1.5 - nock: 13.2.9 - transitivePeerDependencies: - - supports-color - dev: false - - /@polkadot/rpc-provider/9.4.3: - resolution: {integrity: sha512-8HCkwlDnH6Y6WNT0Yg8e6YM5Wk+GacnO906nhtHByR2MRL8ugvLRb0x97PSPrR+NYs+ecYUURFkRy0fujuFcHQ==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/keyring': 10.1.10 - '@polkadot/types': 9.4.3 - '@polkadot/types-support': 9.4.3 - '@polkadot/util': 10.1.10 - '@polkadot/util-crypto': 10.1.10 - '@polkadot/x-fetch': 10.1.10 - '@polkadot/x-global': 10.1.10 - '@polkadot/x-ws': 10.1.10 - '@substrate/connect': 0.7.14 - eventemitter3: 4.0.7 - mock-socket: 9.1.5 - nock: 13.2.9 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - dev: false - - /@polkadot/rpc-provider/9.5.2: - resolution: {integrity: sha512-Sn2jfvAsvQcl35o0up8JR/XbDMS/3YVDEN2sFuzXtiD77W2njukItbZT+BolfAW+biAUs3bNomump5k/YLiLKg==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.4 - '@polkadot/keyring': 10.1.11 - '@polkadot/types': 9.5.2 - '@polkadot/types-support': 9.5.2 - '@polkadot/util': 10.1.11 - '@polkadot/util-crypto': 10.1.11 - '@polkadot/x-fetch': 10.1.11 - '@polkadot/x-global': 10.1.11 - '@polkadot/x-ws': 10.1.11 - '@substrate/connect': 0.7.14 - eventemitter3: 4.0.7 - mock-socket: 9.1.5 - nock: 13.2.9 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - dev: false - - /@polkadot/types-augment/7.15.1: - resolution: {integrity: sha512-aqm7xT/66TCna0I2utpIekoquKo0K5pnkA/7WDzZ6gyD8he2h0IXfe8xWjVmuyhjxrT/C/7X1aUF2Z0xlOCwzQ==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/types': 7.15.1 - '@polkadot/types-codec': 7.15.1 - '@polkadot/util': 8.7.1 - dev: false - - /@polkadot/types-augment/8.14.1: - resolution: {integrity: sha512-Xa4TUFqyZT+IJ6pBSwDjWcF42u/E34OyC+gbs5Z2vWQ4EzSDkq4xNoUKjJlEEgTemsD9lhPOIc4jvqTCefwxEw==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/types': 8.14.1 - '@polkadot/types-codec': 8.14.1 - '@polkadot/util': 10.1.10 - dev: false - - /@polkadot/types-augment/9.4.3: - resolution: {integrity: sha512-TvN3vhUVylFyWGHHXOO4/iHIFW6EXHLBlIBC7YhUQc0dZOD+mKjnNblEtDY/GazlwBQjq9bhXcoH0S6KIpiSIg==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/types': 9.4.3 - '@polkadot/types-codec': 9.4.3 - '@polkadot/util': 10.1.10 - dev: false - - /@polkadot/types-augment/9.5.2: - resolution: {integrity: sha512-LDJdv/84sECwA0R5lK85/orxjoozJe3+2jeLjRiKr8S6qm9XRfz0wLCSF866kpSGBZ4B1dYBUhzjoSu95y2Jug==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.4 - '@polkadot/types': 9.5.2 - '@polkadot/types-codec': 9.5.2 - '@polkadot/util': 10.1.11 - dev: false - - /@polkadot/types-codec/7.15.1: - resolution: {integrity: sha512-nI11dT7FGaeDd/fKPD8iJRFGhosOJoyjhZ0gLFFDlKCaD3AcGBRTTY8HFJpP/5QXXhZzfZsD93fVKrosnegU0Q==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 8.7.1 - dev: false - - /@polkadot/types-codec/8.14.1: - resolution: {integrity: sha512-y6YDN4HwvEgSWlgrEV04QBBxDxES1cTuUQFzZJzOTuZCWpA371Mdj3M9wYxGXMnj0wa+rCQGECHPZZaNxBMiKg==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 10.1.10 - '@polkadot/x-bigint': 10.1.10 - dev: false - - /@polkadot/types-codec/9.4.3: - resolution: {integrity: sha512-x0BJZxcPyollDx9urF7rAfDdKHZXe150p9op2if8fw02LNTDGGsrWLw7DD8ISNwXbtL8L+N1ipc0mVqfsHg+Aw==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 10.1.10 - '@polkadot/x-bigint': 10.1.10 - dev: false - - /@polkadot/types-codec/9.5.2: - resolution: {integrity: sha512-FJPjE3ceTGTcadeC8d5C+aSR8SLKuQrXKIBmMNBky+WwzEo0vufRqxFWcPLxAOEeeUPgBXS967tP15+UU4psGA==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.4 - '@polkadot/util': 10.1.11 - '@polkadot/x-bigint': 10.1.11 - dev: false - - /@polkadot/types-create/7.15.1: - resolution: {integrity: sha512-+HiaHn7XOwP0kv/rVdORlVkNuMoxuvt+jd67A/CeEreJiXqRLu+S61Mdk7wi6719PTaOal1hTDFfyGrtUd8FSQ==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/types-codec': 7.15.1 - '@polkadot/util': 8.7.1 - dev: false - - /@polkadot/types-create/8.14.1: - resolution: {integrity: sha512-fb9yyblj5AYAPzeCIq0kYSfzDxRDi/0ud9gN2UzB3H7M/O4n2mPC1vD4UOLF+B7l9QzCrt4e+k+/riGp7GfvyA==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/types-codec': 8.14.1 - '@polkadot/util': 10.1.10 - dev: false - - /@polkadot/types-create/9.4.3: - resolution: {integrity: sha512-kx5Yccp/I4RrtbOo3+iFJSVDwbl0Y9Xm0B4p7khYkKUHAbNuuFZMMnnMru2hOTWDgpQPN6Fbixt9pdy4TD6Xnw==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/types-codec': 9.4.3 - '@polkadot/util': 10.1.10 - dev: false - - /@polkadot/types-create/9.5.2: - resolution: {integrity: sha512-YbplL8K0LqUEHoV3FgZ5B83oVV67KGbLXsWHVVaUZBPsmtXJXrbBfSyJgl/80I2n4lXEBmg3sFAYMbaSTvL05A==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.4 - '@polkadot/types-codec': 9.5.2 - '@polkadot/util': 10.1.11 - dev: false - - /@polkadot/types-known/4.17.1: - resolution: {integrity: sha512-YkOwGrO+k9aVrBR8FgYHnfJKhOfpdgC5ZRYNL/xJ9oa7lBYqPts9ENAxeBmJS/5IGeDF9f32MNyrCP2umeCXWg==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/networks': 6.11.1 - '@polkadot/types': 4.17.1 - '@polkadot/util': 6.11.1 - dev: false - - /@polkadot/types-known/6.12.1: - resolution: {integrity: sha512-Z8bHpPQy+mqUm0uR1tai6ra0bQIoPmgRcGFYUM+rJtW1kx/6kZLh10HAICjLpPeA1cwLRzaxHRDqH5MCU6OgXw==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/networks': 8.7.1 - '@polkadot/types': 6.12.1 - '@polkadot/util': 8.7.1 - dev: false - - /@polkadot/types-known/7.15.1: - resolution: {integrity: sha512-LMcNP0CxT84DqAKV62/qDeeIVIJCR5yzE9b+9AsYhyfhE4apwxjrThqZA7K0CF56bOdQJSexAerYB/jwk2IijA==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/networks': 8.7.1 - '@polkadot/types': 7.15.1 - '@polkadot/types-codec': 7.15.1 - '@polkadot/types-create': 7.15.1 - '@polkadot/util': 8.7.1 - dev: false - - /@polkadot/types-known/8.14.1: - resolution: {integrity: sha512-GP7gRo9nmitykkrRnoLF61Qm19UFdTwMsOnJkdm7AOeWDmZGxutacgO6k1tBsHr38hsiCCGsB/JiseUgywvGIw==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/networks': 10.1.2 - '@polkadot/types': 8.14.1 - '@polkadot/types-codec': 8.14.1 - '@polkadot/types-create': 8.14.1 - '@polkadot/util': 10.1.10 - dev: false - - /@polkadot/types-known/9.4.3: - resolution: {integrity: sha512-JoIC31If1tLhz4ykNCcJCJGEuufJo7c880vCDLzdYn/OCxxHvdrUeNAFZu0ua/QNHNpT7Pl24NGUrE2QfmZbRg==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/networks': 10.1.10 - '@polkadot/types': 9.4.3 - '@polkadot/types-codec': 9.4.3 - '@polkadot/types-create': 9.4.3 - '@polkadot/util': 10.1.10 - dev: false - - /@polkadot/types-known/9.5.2: - resolution: {integrity: sha512-iNaGOF6dGiTvy3Ns8Z7WNjYD1SGnZiapDAKPH4brPuJqMpN6/FxYpfPSSOKx+IJEamsdINcaggb87eWyPxH8CA==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.4 - '@polkadot/networks': 10.1.11 - '@polkadot/types': 9.5.2 - '@polkadot/types-codec': 9.5.2 - '@polkadot/types-create': 9.5.2 - '@polkadot/util': 10.1.11 - dev: false - - /@polkadot/types-support/7.15.1: - resolution: {integrity: sha512-FIK251ffVo+NaUXLlaJeB5OvT7idDd3uxaoBM6IwsS87rzt2CcWMyCbu0uX89AHZUhSviVx7xaBxfkGEqMePWA==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 8.7.1 - dev: false - - /@polkadot/types-support/8.14.1: - resolution: {integrity: sha512-XqR4qq6pCZyNBuFVod8nFSNUmLssrjoU9bOIn4Ua2cqNlI9xsuKaI1X5ySEn/oWOtKQ2L5hbCm9vkXrEtXBl1w==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 10.1.10 - dev: false - - /@polkadot/types-support/9.4.3: - resolution: {integrity: sha512-PCIHVj40A5qgUQJHOM4BpeVwXPVNo0PNeVVWMPPLdnUMr3hX8dqCjZnWAUizgTICJ5EutCLL5wKP6/JBZmmWsA==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 10.1.10 - dev: false - - /@polkadot/types-support/9.5.2: - resolution: {integrity: sha512-Zdbl5fvGQjUkyE1r67vhyPEqLUwlZ35GCnkoobY9MgN6gylhSjNue/shpG4uGsEjWVQL7GkFkrPiwtzDArVilg==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.4 - '@polkadot/util': 10.1.11 - dev: false - - /@polkadot/types/4.17.1: - resolution: {integrity: sha512-rjW4OFdwvFekzN3ATLibC2JPSd8AWt5YepJhmuCPdwH26r3zB8bEC6dM7YQExLVUmygVPvgXk5ffHI6RAdXBMg==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/metadata': 4.17.1 - '@polkadot/util': 6.11.1 - '@polkadot/util-crypto': 6.11.1 - '@polkadot/x-rxjs': 6.11.1 - dev: false - - /@polkadot/types/6.12.1: - resolution: {integrity: sha512-O37cAGUL0xiXTuO3ySweVh0OuFUD6asrd0TfuzGsEp3jAISWdElEHV5QDiftWq8J9Vf8BMgTcP2QLFbmSusxqA==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/types-known': 6.12.1 - '@polkadot/util': 8.7.1 - '@polkadot/util-crypto': 8.7.1 - rxjs: 7.5.7 - dev: false - - /@polkadot/types/7.15.1: - resolution: {integrity: sha512-KawZVS+eLR1D6O7c/P5cSUwr6biM9Qd2KwKtJIO8l1Mrxp7r+y2tQnXSSXVAd6XPdb3wVMhnIID+NW3W99TAnQ==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/keyring': 8.7.1 - '@polkadot/types-augment': 7.15.1 - '@polkadot/types-codec': 7.15.1 - '@polkadot/types-create': 7.15.1 - '@polkadot/util': 8.7.1 - '@polkadot/util-crypto': 8.7.1 - rxjs: 7.5.7 - dev: false - - /@polkadot/types/8.14.1: - resolution: {integrity: sha512-Xza16ejKrSd4XhTOlbfISyxZ2sRmbMAZk5pX7VEMHVZHqV98o+bJ2f9Kk7F8YJijkHHGosCLDestP9R5nLoOoA==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/keyring': 10.1.2 - '@polkadot/types-augment': 8.14.1 - '@polkadot/types-codec': 8.14.1 - '@polkadot/types-create': 8.14.1 - '@polkadot/util': 10.1.10 - '@polkadot/util-crypto': 10.1.10 - rxjs: 7.5.7 - dev: false - - /@polkadot/types/9.4.3: - resolution: {integrity: sha512-SXHih0+TajRAZAl+uuFPpy/TxySX8oYvYg67FwRclqNsHc1Qwj5JFs0HJtuf60UkvPGqbQpNek5ND6O1VBHHQA==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/keyring': 10.1.10 - '@polkadot/types-augment': 9.4.3 - '@polkadot/types-codec': 9.4.3 - '@polkadot/types-create': 9.4.3 - '@polkadot/util': 10.1.10 - '@polkadot/util-crypto': 10.1.10 - rxjs: 7.5.7 - dev: false - - /@polkadot/types/9.5.2: - resolution: {integrity: sha512-6C5xzOrMK+fu0JMOlSO+8dPDhpwKPOaKMv3v5BMvBEWtDNKM81/QQoAoYT7DSVXq/V16icSFxPs9IWC+6Qq5ag==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.4 - '@polkadot/keyring': 10.1.11 - '@polkadot/types-augment': 9.5.2 - '@polkadot/types-codec': 9.5.2 - '@polkadot/types-create': 9.5.2 - '@polkadot/util': 10.1.11 - '@polkadot/util-crypto': 10.1.11 - rxjs: 7.5.7 - dev: false - - /@polkadot/util-crypto/10.1.10: - resolution: {integrity: sha512-w9h/wf4wZXeUkRnihhnfqlaKuoQtrjkjK3C5liCQkr9vx5zOsmg/nMSDP8UUFJX0msPPYpFeNvzn7oDIs6qSZA==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@noble/hashes': 1.1.3 - '@noble/secp256k1': 1.7.0 - '@polkadot/networks': 10.1.10 - '@polkadot/util': 10.1.10 - '@polkadot/wasm-crypto': 6.3.1_xnbzfk7hwbn2cwqh2nrvbgvkzq - '@polkadot/x-bigint': 10.1.10 - '@polkadot/x-randomvalues': 10.1.10 - '@scure/base': 1.1.1 - ed2curve: 0.3.0 - tweetnacl: 1.0.3 - dev: false - - /@polkadot/util-crypto/10.1.11: - resolution: {integrity: sha512-wG63frIMAR5T/HXGM0SFNzZZdk7qDBsfLXfn6PIZiXCCCsdEYPzS5WltB7fkhicYpbePJ7VgdCAddj1l4IcGyg==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.4 - '@noble/hashes': 1.1.3 - '@noble/secp256k1': 1.7.0 - '@polkadot/networks': 10.1.11 - '@polkadot/util': 10.1.11 - '@polkadot/wasm-crypto': 6.3.1_kq5krb3p4bzvrcxi3xa2lgyh6u - '@polkadot/x-bigint': 10.1.11 - '@polkadot/x-randomvalues': 10.1.11 - '@scure/base': 1.1.1 - ed2curve: 0.3.0 - tweetnacl: 1.0.3 - dev: false - - /@polkadot/util-crypto/10.1.2: - resolution: {integrity: sha512-lSgxSLF/XkksL8St3kyw8SCLic0JvyIf8uOezQZYyjSJKT3Gl8gGu9wCAKNAmboU0FgO8cnLO9AcAEkhCHvnyw==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@noble/hashes': 1.1.2 - '@noble/secp256k1': 1.6.3 - '@polkadot/networks': 10.1.2 - '@polkadot/util': 10.1.2 - '@polkadot/wasm-crypto': 6.3.1_h5wsx5l4wlp2h2idvasjrnjqhm - '@polkadot/x-bigint': 10.1.2 - '@polkadot/x-randomvalues': 10.1.2 - '@scure/base': 1.1.1 - ed2curve: 0.3.0 - tweetnacl: 1.0.3 - dev: false - - /@polkadot/util-crypto/6.11.1: - resolution: {integrity: sha512-fWA1Nz17FxWJslweZS4l0Uo30WXb5mYV1KEACVzM+BSZAvG5eoiOAYX6VYZjyw6/7u53XKrWQlD83iPsg3KvZw==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/networks': 6.11.1 - '@polkadot/util': 6.11.1 - '@polkadot/wasm-crypto': 4.6.1_7agzzbeuhezrwkh2zmxh2lt2xi - '@polkadot/x-randomvalues': 6.11.1 - base-x: 3.0.9 - base64-js: 1.5.1 - blakejs: 1.2.1 - bn.js: 4.12.0 - create-hash: 1.2.0 - elliptic: 6.5.4 - hash.js: 1.1.7 - js-sha3: 0.8.0 - scryptsy: 2.1.0 - tweetnacl: 1.0.3 - xxhashjs: 0.2.2 - dev: false - - /@polkadot/util-crypto/7.9.2: - resolution: {integrity: sha512-nNwqUwP44eCH9jKKcPie+IHLKkg9LMe6H7hXo91hy3AtoslnNrT51tP3uAm5yllhLvswJfnAgnlHq7ybCgqeFw==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/networks': 7.9.2 - '@polkadot/util': 7.9.2 - '@polkadot/wasm-crypto': 4.6.1_dqtjokeiluc5zkdxxwbtwmatza - '@polkadot/x-randomvalues': 7.9.2 - blakejs: 1.2.1 - bn.js: 4.12.0 - create-hash: 1.2.0 - ed2curve: 0.3.0 - elliptic: 6.5.4 - hash.js: 1.1.7 - js-sha3: 0.8.0 - micro-base: 0.9.0 - scryptsy: 2.1.0 - tweetnacl: 1.0.3 - xxhashjs: 0.2.2 - dev: false - - /@polkadot/util-crypto/8.7.1: - resolution: {integrity: sha512-TaSuJ2aNrB5sYK7YXszkEv24nYJKRFqjF2OrggoMg6uYxUAECvTkldFnhtgeizMweRMxJIBu6bMHlSIutbWgjw==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@noble/hashes': 1.0.0 - '@noble/secp256k1': 1.5.5 - '@polkadot/networks': 8.7.1 - '@polkadot/util': 8.7.1 - '@polkadot/wasm-crypto': 5.1.1_xs3i6t46ahm2n3lotir2vf6g3e - '@polkadot/x-bigint': 8.7.1 - '@polkadot/x-randomvalues': 8.7.1 - '@scure/base': 1.0.0 - ed2curve: 0.3.0 - tweetnacl: 1.0.3 - dev: false - - /@polkadot/util-crypto/9.7.2: - resolution: {integrity: sha512-tfz6mJtPwoNteivKCmR+QklC4mr1/hGZRsDJLWKaFhanDinYZ3V2pJM1EbCI6WONLuuzlTxsDXjAffWzzRqlPA==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@noble/hashes': 1.1.2 - '@noble/secp256k1': 1.6.0 - '@polkadot/networks': 9.7.2 - '@polkadot/util': 9.7.2 - '@polkadot/wasm-crypto': 6.3.1_bqbpofxh4fwo2uvuz4bljqm3ua - '@polkadot/x-bigint': 9.7.2 - '@polkadot/x-randomvalues': 9.7.2 - '@scure/base': 1.1.1 - ed2curve: 0.3.0 - tweetnacl: 1.0.3 - dev: false - - /@polkadot/util/10.1.1: - resolution: {integrity: sha512-/g0sEqOOXfiNmQnWcFK3H1+wKBjbJEfGj6lTmbQ0xnL4TS5mFFQ7ZZEvxD60EkoXVMuCmSSh9E54goNLzh+Zyg==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.18.9 - '@polkadot/x-bigint': 10.1.1 - '@polkadot/x-global': 10.1.1 - '@polkadot/x-textdecoder': 10.1.1 - '@polkadot/x-textencoder': 10.1.1 - '@types/bn.js': 5.1.0 - bn.js: 5.2.1 - dev: false - - /@polkadot/util/10.1.10: - resolution: {integrity: sha512-BQoTfSxZ3BWAgWDjgKBVdyw1AJGaoOeAidCA+LZcHV6wlMu5643AZPUnoMrW413MbbpxsIhJXtNttqOwjo8MjA==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-bigint': 10.1.10 - '@polkadot/x-global': 10.1.10 - '@polkadot/x-textdecoder': 10.1.10 - '@polkadot/x-textencoder': 10.1.10 - '@types/bn.js': 5.1.1 - bn.js: 5.2.1 - dev: false - - /@polkadot/util/10.1.11: - resolution: {integrity: sha512-6m51lw6g6ilqO/k4BQY7rD0lYM9NCnC4FiM7CEEUc7j8q86qxdcZ88zdNldkhNsTIQnfmCtkK3GRzZW6VYrbUw==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.4 - '@polkadot/x-bigint': 10.1.11 - '@polkadot/x-global': 10.1.11 - '@polkadot/x-textdecoder': 10.1.11 - '@polkadot/x-textencoder': 10.1.11 - '@types/bn.js': 5.1.1 - bn.js: 5.2.1 - dev: false - - /@polkadot/util/10.1.2: - resolution: {integrity: sha512-gYSpJyrrw5gZWgTVu6PJ1PBUzi3GqwmaK6XRgi4deHmQRn9TEXTToGtHmleJWnaTCRW8Vvh5B5RNNV2C/+va4w==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.18.9 - '@polkadot/x-bigint': 10.1.2 - '@polkadot/x-global': 10.1.2 - '@polkadot/x-textdecoder': 10.1.2 - '@polkadot/x-textencoder': 10.1.2 - '@types/bn.js': 5.1.0 - bn.js: 5.2.1 - dev: false - - /@polkadot/util/10.1.6: - resolution: {integrity: sha512-k+gCKmgwxp0smmLIR7SfiEYEToayWXjrC7pQ0PqAGxpBNOdVMSCzLMnOHf9AI5cjs/lx6ULr1fHn721wLVonkw==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-bigint': 10.1.6 - '@polkadot/x-global': 10.1.6 - '@polkadot/x-textdecoder': 10.1.6 - '@polkadot/x-textencoder': 10.1.6 - '@types/bn.js': 5.1.0 - bn.js: 5.2.1 - dev: false - - /@polkadot/util/6.11.1: - resolution: {integrity: sha512-TEdCetr9rsdUfJZqQgX/vxLuV4XU8KMoKBMJdx+JuQ5EWemIdQkEtMBdL8k8udNGbgSNiYFA6rPppATeIxAScg==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-textdecoder': 6.11.1 - '@polkadot/x-textencoder': 6.11.1 - '@types/bn.js': 4.11.6 - bn.js: 4.12.0 - camelcase: 5.3.1 - ip-regex: 4.3.0 - dev: false - - /@polkadot/util/7.9.2: - resolution: {integrity: sha512-6ABY6ErgkCsM4C6+X+AJSY4pBGwbKlHZmUtHftaiTvbaj4XuA4nTo3GU28jw8wY0Jh2cJZJvt6/BJ5GVkm5tBA==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@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 - dev: false - - /@polkadot/util/8.7.1: - resolution: {integrity: sha512-XjY1bTo7V6OvOCe4yn8H2vifeuBciCy0gq0k5P1tlGUQLI/Yt0hvDmxcA0FEPtqg8CL+rYRG7WXGPVNjkrNvyQ==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-bigint': 8.7.1 - '@polkadot/x-global': 8.7.1 - '@polkadot/x-textdecoder': 8.7.1 - '@polkadot/x-textencoder': 8.7.1 - '@types/bn.js': 5.1.1 - bn.js: 5.2.1 - ip-regex: 4.3.0 - dev: false - - /@polkadot/util/9.7.2: - resolution: {integrity: sha512-ivTmA+KkPCq5i3O0Gk+dTds/hwdwlYCh89aKfeaG9ni3XHUbbuBgTqHneo648HqxwAwSAyiDiwE9EdXrzAdO4Q==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-bigint': 9.7.2 - '@polkadot/x-global': 9.7.2 - '@polkadot/x-textdecoder': 9.7.2 - '@polkadot/x-textencoder': 9.7.2 - '@types/bn.js': 5.1.1 - bn.js: 5.2.1 - ip-regex: 4.3.0 - dev: false - - /@polkadot/wasm-bridge/6.3.1_bqbpofxh4fwo2uvuz4bljqm3ua: - resolution: {integrity: sha512-1TYkHsb9AEFhU9uZj3biEnN2yKQNzdrwSjiTvfCYnt97pnEkKsZI6cku+YPZQv5w/x9CQa5Yua9e2DVVZSivGA==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/x-randomvalues': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 9.7.2 - '@polkadot/x-randomvalues': 9.7.2 - dev: false - - /@polkadot/wasm-bridge/6.3.1_h5wsx5l4wlp2h2idvasjrnjqhm: - resolution: {integrity: sha512-1TYkHsb9AEFhU9uZj3biEnN2yKQNzdrwSjiTvfCYnt97pnEkKsZI6cku+YPZQv5w/x9CQa5Yua9e2DVVZSivGA==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/x-randomvalues': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 10.1.2 - '@polkadot/x-randomvalues': 10.1.2 - dev: false - - /@polkadot/wasm-bridge/6.3.1_kq5krb3p4bzvrcxi3xa2lgyh6u: - resolution: {integrity: sha512-1TYkHsb9AEFhU9uZj3biEnN2yKQNzdrwSjiTvfCYnt97pnEkKsZI6cku+YPZQv5w/x9CQa5Yua9e2DVVZSivGA==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/x-randomvalues': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 10.1.11 - '@polkadot/x-randomvalues': 10.1.11 - dev: false - - /@polkadot/wasm-bridge/6.3.1_xnbzfk7hwbn2cwqh2nrvbgvkzq: - resolution: {integrity: sha512-1TYkHsb9AEFhU9uZj3biEnN2yKQNzdrwSjiTvfCYnt97pnEkKsZI6cku+YPZQv5w/x9CQa5Yua9e2DVVZSivGA==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/x-randomvalues': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 10.1.10 - '@polkadot/x-randomvalues': 10.1.10 - dev: false - - /@polkadot/wasm-crypto-asmjs/4.6.1_@polkadot+util@6.11.1: - resolution: {integrity: sha512-1oHQjz2oEO1kCIcQniOP+dZ9N2YXf2yCLHLsKaKSvfXiWaetVCaBNB8oIHIVYvuLnVc8qlMi66O6xc1UublHsw==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 6.11.1 - dev: false - - /@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.19.0 - '@polkadot/util': 7.9.2 - dev: false - - /@polkadot/wasm-crypto-asmjs/5.1.1_@polkadot+util@8.7.1: - resolution: {integrity: sha512-1WBwc2G3pZMKW1T01uXzKE30Sg22MXmF3RbbZiWWk3H2d/Er4jZQRpjumxO5YGWan+xOb7HQQdwnrUnrPgbDhg==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 8.7.1 - dev: false - - /@polkadot/wasm-crypto-asmjs/6.3.1_@polkadot+util@10.1.10: - resolution: {integrity: sha512-zbombRfA5v/mUWQQhgg2YwaxhRmxRIrvskw65x+lruax3b6xPBFDs7yplopiJU3r8h2pTgQvX/DUksvqz2TCRQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 10.1.10 - dev: false - - /@polkadot/wasm-crypto-asmjs/6.3.1_@polkadot+util@10.1.11: - resolution: {integrity: sha512-zbombRfA5v/mUWQQhgg2YwaxhRmxRIrvskw65x+lruax3b6xPBFDs7yplopiJU3r8h2pTgQvX/DUksvqz2TCRQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 10.1.11 - dev: false - - /@polkadot/wasm-crypto-asmjs/6.3.1_@polkadot+util@10.1.2: - resolution: {integrity: sha512-zbombRfA5v/mUWQQhgg2YwaxhRmxRIrvskw65x+lruax3b6xPBFDs7yplopiJU3r8h2pTgQvX/DUksvqz2TCRQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 10.1.2 - dev: false - - /@polkadot/wasm-crypto-asmjs/6.3.1_@polkadot+util@9.7.2: - resolution: {integrity: sha512-zbombRfA5v/mUWQQhgg2YwaxhRmxRIrvskw65x+lruax3b6xPBFDs7yplopiJU3r8h2pTgQvX/DUksvqz2TCRQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 9.7.2 - dev: false - - /@polkadot/wasm-crypto-init/6.3.1_bqbpofxh4fwo2uvuz4bljqm3ua: - resolution: {integrity: sha512-9yaUBcu+snwjJLmPPGl3cyGRQ1afyFGm16qzTM0sgG/ZCfUlK4uk8KWZe+sBUKgoxb2oXY7Y4WklKgQI1YBdfw==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/x-randomvalues': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 9.7.2 - '@polkadot/wasm-bridge': 6.3.1_bqbpofxh4fwo2uvuz4bljqm3ua - '@polkadot/wasm-crypto-asmjs': 6.3.1_@polkadot+util@9.7.2 - '@polkadot/wasm-crypto-wasm': 6.3.1_@polkadot+util@9.7.2 - '@polkadot/x-randomvalues': 9.7.2 - dev: false - - /@polkadot/wasm-crypto-init/6.3.1_h5wsx5l4wlp2h2idvasjrnjqhm: - resolution: {integrity: sha512-9yaUBcu+snwjJLmPPGl3cyGRQ1afyFGm16qzTM0sgG/ZCfUlK4uk8KWZe+sBUKgoxb2oXY7Y4WklKgQI1YBdfw==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/x-randomvalues': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 10.1.2 - '@polkadot/wasm-bridge': 6.3.1_h5wsx5l4wlp2h2idvasjrnjqhm - '@polkadot/wasm-crypto-asmjs': 6.3.1_@polkadot+util@10.1.2 - '@polkadot/wasm-crypto-wasm': 6.3.1_@polkadot+util@10.1.2 - '@polkadot/x-randomvalues': 10.1.2 - dev: false - - /@polkadot/wasm-crypto-init/6.3.1_kq5krb3p4bzvrcxi3xa2lgyh6u: - resolution: {integrity: sha512-9yaUBcu+snwjJLmPPGl3cyGRQ1afyFGm16qzTM0sgG/ZCfUlK4uk8KWZe+sBUKgoxb2oXY7Y4WklKgQI1YBdfw==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/x-randomvalues': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 10.1.11 - '@polkadot/wasm-bridge': 6.3.1_kq5krb3p4bzvrcxi3xa2lgyh6u - '@polkadot/wasm-crypto-asmjs': 6.3.1_@polkadot+util@10.1.11 - '@polkadot/wasm-crypto-wasm': 6.3.1_@polkadot+util@10.1.11 - '@polkadot/x-randomvalues': 10.1.11 - dev: false - - /@polkadot/wasm-crypto-init/6.3.1_xnbzfk7hwbn2cwqh2nrvbgvkzq: - resolution: {integrity: sha512-9yaUBcu+snwjJLmPPGl3cyGRQ1afyFGm16qzTM0sgG/ZCfUlK4uk8KWZe+sBUKgoxb2oXY7Y4WklKgQI1YBdfw==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/x-randomvalues': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 10.1.10 - '@polkadot/wasm-bridge': 6.3.1_xnbzfk7hwbn2cwqh2nrvbgvkzq - '@polkadot/wasm-crypto-asmjs': 6.3.1_@polkadot+util@10.1.10 - '@polkadot/wasm-crypto-wasm': 6.3.1_@polkadot+util@10.1.10 - '@polkadot/x-randomvalues': 10.1.10 - dev: false - - /@polkadot/wasm-crypto-wasm/4.6.1_@polkadot+util@6.11.1: - resolution: {integrity: sha512-NI3JVwmLjrSYpSVuhu0yeQYSlsZrdpK41UC48sY3kyxXC71pi6OVePbtHS1K3xh3FFmDd9srSchExi3IwzKzMw==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 6.11.1 - dev: false - - /@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.19.0 - '@polkadot/util': 7.9.2 - dev: false - - /@polkadot/wasm-crypto-wasm/5.1.1_@polkadot+util@8.7.1: - resolution: {integrity: sha512-F9PZ30J2S8vUNl2oY7Myow5Xsx5z5uNVpnNlJwlmY8IXBvyucvyQ4HSdhJsrbs4W1BfFc0mHghxgp0FbBCnf/Q==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 8.7.1 - dev: false - - /@polkadot/wasm-crypto-wasm/6.3.1_@polkadot+util@10.1.10: - resolution: {integrity: sha512-idSlzKGVzCfeCMRHsacRvqwojSaTadFxL/Dbls4z1thvfa3U9Ku0d2qVtlwg7Hj+tYWDiuP8Kygs+6bQwfs0XA==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 10.1.10 - '@polkadot/wasm-util': 6.3.1_@polkadot+util@10.1.10 - dev: false - - /@polkadot/wasm-crypto-wasm/6.3.1_@polkadot+util@10.1.11: - resolution: {integrity: sha512-idSlzKGVzCfeCMRHsacRvqwojSaTadFxL/Dbls4z1thvfa3U9Ku0d2qVtlwg7Hj+tYWDiuP8Kygs+6bQwfs0XA==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 10.1.11 - '@polkadot/wasm-util': 6.3.1_@polkadot+util@10.1.11 - dev: false - - /@polkadot/wasm-crypto-wasm/6.3.1_@polkadot+util@10.1.2: - resolution: {integrity: sha512-idSlzKGVzCfeCMRHsacRvqwojSaTadFxL/Dbls4z1thvfa3U9Ku0d2qVtlwg7Hj+tYWDiuP8Kygs+6bQwfs0XA==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 10.1.2 - '@polkadot/wasm-util': 6.3.1_@polkadot+util@10.1.2 - dev: false - - /@polkadot/wasm-crypto-wasm/6.3.1_@polkadot+util@9.7.2: - resolution: {integrity: sha512-idSlzKGVzCfeCMRHsacRvqwojSaTadFxL/Dbls4z1thvfa3U9Ku0d2qVtlwg7Hj+tYWDiuP8Kygs+6bQwfs0XA==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 9.7.2 - '@polkadot/wasm-util': 6.3.1_@polkadot+util@9.7.2 - dev: false - - /@polkadot/wasm-crypto/4.6.1_7agzzbeuhezrwkh2zmxh2lt2xi: - resolution: {integrity: sha512-2wEftBDxDG+TN8Ah6ogtvzjdZdcF0mAjU4UNNOfpmkBCxQYZOrAHB8HXhzo3noSsKkLX7PDX57NxvJ9OhoTAjw==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/x-randomvalues': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 6.11.1 - '@polkadot/wasm-crypto-asmjs': 4.6.1_@polkadot+util@6.11.1 - '@polkadot/wasm-crypto-wasm': 4.6.1_@polkadot+util@6.11.1 - '@polkadot/x-randomvalues': 6.11.1 - dev: false - - /@polkadot/wasm-crypto/4.6.1_dqtjokeiluc5zkdxxwbtwmatza: - resolution: {integrity: sha512-2wEftBDxDG+TN8Ah6ogtvzjdZdcF0mAjU4UNNOfpmkBCxQYZOrAHB8HXhzo3noSsKkLX7PDX57NxvJ9OhoTAjw==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/x-randomvalues': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@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 - dev: false - - /@polkadot/wasm-crypto/5.1.1_xs3i6t46ahm2n3lotir2vf6g3e: - resolution: {integrity: sha512-JCcAVfH8DhYuEyd4oX1ouByxhou0TvpErKn8kHjtzt7+tRoFi0nzWlmK4z49vszsV3JJgXxV81i10C0BYlwTcQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/x-randomvalues': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 8.7.1 - '@polkadot/wasm-crypto-asmjs': 5.1.1_@polkadot+util@8.7.1 - '@polkadot/wasm-crypto-wasm': 5.1.1_@polkadot+util@8.7.1 - '@polkadot/x-randomvalues': 8.7.1 - dev: false - - /@polkadot/wasm-crypto/6.3.1_bqbpofxh4fwo2uvuz4bljqm3ua: - resolution: {integrity: sha512-OO8h0qeVkqp4xYZaRVl4iuWOEtq282pNBHDKb6SOJuI2g59eWGcKh4EQU9Me2VP6qzojIqptrkrVt7KQXC68gA==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/x-randomvalues': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 9.7.2 - '@polkadot/wasm-bridge': 6.3.1_bqbpofxh4fwo2uvuz4bljqm3ua - '@polkadot/wasm-crypto-asmjs': 6.3.1_@polkadot+util@9.7.2 - '@polkadot/wasm-crypto-init': 6.3.1_bqbpofxh4fwo2uvuz4bljqm3ua - '@polkadot/wasm-crypto-wasm': 6.3.1_@polkadot+util@9.7.2 - '@polkadot/wasm-util': 6.3.1_@polkadot+util@9.7.2 - '@polkadot/x-randomvalues': 9.7.2 - dev: false - - /@polkadot/wasm-crypto/6.3.1_h5wsx5l4wlp2h2idvasjrnjqhm: - resolution: {integrity: sha512-OO8h0qeVkqp4xYZaRVl4iuWOEtq282pNBHDKb6SOJuI2g59eWGcKh4EQU9Me2VP6qzojIqptrkrVt7KQXC68gA==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/x-randomvalues': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 10.1.2 - '@polkadot/wasm-bridge': 6.3.1_h5wsx5l4wlp2h2idvasjrnjqhm - '@polkadot/wasm-crypto-asmjs': 6.3.1_@polkadot+util@10.1.2 - '@polkadot/wasm-crypto-init': 6.3.1_h5wsx5l4wlp2h2idvasjrnjqhm - '@polkadot/wasm-crypto-wasm': 6.3.1_@polkadot+util@10.1.2 - '@polkadot/wasm-util': 6.3.1_@polkadot+util@10.1.2 - '@polkadot/x-randomvalues': 10.1.2 - dev: false - - /@polkadot/wasm-crypto/6.3.1_kq5krb3p4bzvrcxi3xa2lgyh6u: - resolution: {integrity: sha512-OO8h0qeVkqp4xYZaRVl4iuWOEtq282pNBHDKb6SOJuI2g59eWGcKh4EQU9Me2VP6qzojIqptrkrVt7KQXC68gA==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/x-randomvalues': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 10.1.11 - '@polkadot/wasm-bridge': 6.3.1_kq5krb3p4bzvrcxi3xa2lgyh6u - '@polkadot/wasm-crypto-asmjs': 6.3.1_@polkadot+util@10.1.11 - '@polkadot/wasm-crypto-init': 6.3.1_kq5krb3p4bzvrcxi3xa2lgyh6u - '@polkadot/wasm-crypto-wasm': 6.3.1_@polkadot+util@10.1.11 - '@polkadot/wasm-util': 6.3.1_@polkadot+util@10.1.11 - '@polkadot/x-randomvalues': 10.1.11 - dev: false - - /@polkadot/wasm-crypto/6.3.1_xnbzfk7hwbn2cwqh2nrvbgvkzq: - resolution: {integrity: sha512-OO8h0qeVkqp4xYZaRVl4iuWOEtq282pNBHDKb6SOJuI2g59eWGcKh4EQU9Me2VP6qzojIqptrkrVt7KQXC68gA==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/x-randomvalues': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 10.1.10 - '@polkadot/wasm-bridge': 6.3.1_xnbzfk7hwbn2cwqh2nrvbgvkzq - '@polkadot/wasm-crypto-asmjs': 6.3.1_@polkadot+util@10.1.10 - '@polkadot/wasm-crypto-init': 6.3.1_xnbzfk7hwbn2cwqh2nrvbgvkzq - '@polkadot/wasm-crypto-wasm': 6.3.1_@polkadot+util@10.1.10 - '@polkadot/wasm-util': 6.3.1_@polkadot+util@10.1.10 - '@polkadot/x-randomvalues': 10.1.10 - dev: false - - /@polkadot/wasm-util/6.3.1_@polkadot+util@10.1.10: - resolution: {integrity: sha512-12oAv5J7Yoc9m6jixrSaQCxpOkWOyzHx3DMC8qmLjRiwdBWxqLmImOVRVnFsbaxqSbhBIHRuJphVxWE+GZETDg==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 10.1.10 - dev: false - - /@polkadot/wasm-util/6.3.1_@polkadot+util@10.1.11: - resolution: {integrity: sha512-12oAv5J7Yoc9m6jixrSaQCxpOkWOyzHx3DMC8qmLjRiwdBWxqLmImOVRVnFsbaxqSbhBIHRuJphVxWE+GZETDg==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 10.1.11 - dev: false - - /@polkadot/wasm-util/6.3.1_@polkadot+util@10.1.2: - resolution: {integrity: sha512-12oAv5J7Yoc9m6jixrSaQCxpOkWOyzHx3DMC8qmLjRiwdBWxqLmImOVRVnFsbaxqSbhBIHRuJphVxWE+GZETDg==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 10.1.2 - dev: false - - /@polkadot/wasm-util/6.3.1_@polkadot+util@9.7.2: - resolution: {integrity: sha512-12oAv5J7Yoc9m6jixrSaQCxpOkWOyzHx3DMC8qmLjRiwdBWxqLmImOVRVnFsbaxqSbhBIHRuJphVxWE+GZETDg==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@polkadot/util': '*' - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/util': 9.7.2 - dev: false - - /@polkadot/x-bigint/10.1.1: - resolution: {integrity: sha512-YNYN64N4icKyqiDIw0tcGyWwz3g/282Kk0ozfcA5TM0wGRe2BwmoB4gYrZ7pJDxvsHnRPR6Dw0r9Xxh8DNIzHQ==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.18.9 - '@polkadot/x-global': 10.1.1 - dev: false - - /@polkadot/x-bigint/10.1.10: - resolution: {integrity: sha512-4Jt0BO0WTby6r9A2DgkDxf/LFaICQHvSl1VSFtBf0Z0GV2n4OxkBX5x/1bdEdGEvYT5rM7RbR3xI7EL+W1ixHA==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-global': 10.1.10 - dev: false - - /@polkadot/x-bigint/10.1.11: - resolution: {integrity: sha512-TC4KZ+ni/SJhcf/LIwD49C/kwvACu0nCchETNO+sAfJ7COXZwHDUJXVXmwN5PgkQxwsWsKKuJmzR/Fi1bgMWnQ==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.4 - '@polkadot/x-global': 10.1.11 - dev: false - - /@polkadot/x-bigint/10.1.2: - resolution: {integrity: sha512-TCwv3NjQdfLb7CBYR8EA5t0CrMfYx3IF4hKjctuplL+mDNI0VzNn4qVKW62AjouI8kMbn7VyBPfoBeuYX8Ixrw==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.18.9 - '@polkadot/x-global': 10.1.2 - dev: false - - /@polkadot/x-bigint/10.1.6: - resolution: {integrity: sha512-yeBZQ9+u49KqDBaeSw+ytshqzyaScKrDjAxpWCfOGxJaB+5Nv1W7fqi3OJ4S/HN5DYItr0a6UC14e1hiZUtZCg==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-global': 10.1.6 - dev: false - - /@polkadot/x-bigint/8.7.1: - resolution: {integrity: sha512-ClkhgdB/KqcAKk3zA6Qw8wBL6Wz67pYTPkrAtImpvoPJmR+l4RARauv+MH34JXMUNlNb3aUwqN6lq2Z1zN+mJg==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-global': 8.7.1 - dev: false - - /@polkadot/x-bigint/9.7.2: - resolution: {integrity: sha512-qi8/DTGypFSt5vvNOsYcEaqH72lymfyidGlsHlZ6e7nNASnEhk/NaOcINiTr1ds+fpu4dtKXWAIPZufujf2JeQ==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-global': 9.7.2 - dev: false - - /@polkadot/x-fetch/10.1.10: - resolution: {integrity: sha512-LvTxAN6GaJzfgZ74WFYPZrIkMEThpX5u7O4ILiExcJt87E19cSWlYSHDa5n+OLjUpq0lBV2ueF90iUblt6aHpg==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-global': 10.1.10 - '@types/node-fetch': 2.6.2 - node-fetch: 3.2.10 - dev: false - - /@polkadot/x-fetch/10.1.11: - resolution: {integrity: sha512-WtyUr9itVD9BLnxCUloJ1iwrXOY/lnlEShEYKHcSm6MIHtbJolePd3v1+o5mOX+bdDbHXhPZnH8anCCqDNDRqg==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.4 - '@polkadot/x-global': 10.1.11 - '@types/node-fetch': 2.6.2 - node-fetch: 3.2.10 - dev: false - - /@polkadot/x-fetch/10.1.2: - resolution: {integrity: sha512-Zd7npq9H/kDaehiM2iyPX1+cSfuhCvqDxuS8GLTjARIVGGURBfA+NjRM6o6jsXa3HCtv+lB67Qdw1m/PSxfIpQ==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-global': 10.1.2 - '@types/node-fetch': 2.6.2 - node-fetch: 3.2.10 - dev: false - - /@polkadot/x-fetch/6.11.1: - resolution: {integrity: sha512-qJyLLnm+4SQEZ002UDz2wWnXbnnH84rIS0mLKZ5k82H4lMYY+PQflvzv6sbu463e/lgiEao+6zvWS6DSKv1Yog==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-global': 6.11.1 - '@types/node-fetch': 2.6.2 - node-fetch: 2.6.7 - transitivePeerDependencies: - - encoding - dev: false - - /@polkadot/x-fetch/8.7.1: - resolution: {integrity: sha512-ygNparcalYFGbspXtdtZOHvNXZBkNgmNO+um9C0JYq74K5OY9/be93uyfJKJ8JcRJtOqBfVDsJpbiRkuJ1PRfg==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-global': 8.7.1 - '@types/node-fetch': 2.6.2 - node-fetch: 2.6.7 - transitivePeerDependencies: - - encoding - dev: false - - /@polkadot/x-global/10.1.1: - resolution: {integrity: sha512-wB3rZTTNN14umLSfR2GLL0dJrlGM1YRUNw7XvbA+3B8jxGCIOmjSyAkdZBeiCxg2XIbJD3EkB0hBhga2mNuS6g==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.18.9 - dev: false - - /@polkadot/x-global/10.1.10: - resolution: {integrity: sha512-WFfgaZSrzPlKLdnOus2mIFGzUbSDIQK6RMCfFfM9SmF3DkoxN40z5Nkni4PztfKr22stlkhmhnX/Lp/NxpuT6Q==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - dev: false - - /@polkadot/x-global/10.1.11: - resolution: {integrity: sha512-bWz5gdcELy6+xfr27R1GE5MPX4nfVlchzHQH+DR6OBbSi9g/PeycQAvFB6IkTmP+YEbNNtIpxnSP37zoUaG3xw==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.4 - dev: false - - /@polkadot/x-global/10.1.2: - resolution: {integrity: sha512-//r3NVLYdYQs0So0IK8Pa0pnL5pPi0geQWE6qjTtPD0oszuN9SUDqDlFQj3I3vqQOwgybbzBGNYRRinP8B2xUg==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.18.9 - dev: false - - /@polkadot/x-global/10.1.6: - resolution: {integrity: sha512-/nraYZg0hdSjbczhDBAsHlEqeZLs0u0xa8HJrfH2lq8+HOIYkQpJPHOqiQIvEe/VFRq7Xnbij+4uffV+otzB/w==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - dev: false - - /@polkadot/x-global/6.11.1: - resolution: {integrity: sha512-lsBK/e4KbjfieyRmnPs7bTiGbP/6EoCZz7rqD/voNS5qsJAaXgB9LR+ilubun9gK/TDpebyxgO+J19OBiQPIRw==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - dev: false - - /@polkadot/x-global/7.9.2: - resolution: {integrity: sha512-JX5CrGWckHf1P9xKXq4vQCAuMUbL81l2hOWX7xeP8nv4caHEpmf5T1wD1iMdQBL5PFifo6Pg0V6/oZBB+bts7A==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - dev: false - - /@polkadot/x-global/8.7.1: - resolution: {integrity: sha512-WOgUor16IihgNVdiTVGAWksYLUAlqjmODmIK1cuWrLOZtV1VBomWcb3obkO9sh5P6iWziAvCB/i+L0vnTN9ZCA==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - dev: false - - /@polkadot/x-global/9.7.2: - resolution: {integrity: sha512-3NN5JhjosaelaFWBJSlv9mb/gDAlt7RuZ8NKlOjB+LQHd9g6ZbnYi5wwjW+i/x/3E4IVbBx66uvWgNaw7IBrkg==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - dev: false - - /@polkadot/x-randomvalues/10.1.10: - resolution: {integrity: sha512-KM4sCI/DNLIXlmnkeJIuYvh3pPuWvnkbR1a6TUB12J1izUJ+uGV+cAFRR4/EZk3oEsG/Tgivbs56meEOo3ws5A==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-global': 10.1.10 - dev: false - - /@polkadot/x-randomvalues/10.1.11: - resolution: {integrity: sha512-V2V37f5hoM5B32eCpGw87Lwstin2+ArXhOZ8ENKncbQLXzbF9yTODueDoA5Vt0MJCs2CDP9cyiCYykcanqVkxg==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.4 - '@polkadot/x-global': 10.1.11 - dev: false - - /@polkadot/x-randomvalues/10.1.2: - resolution: {integrity: sha512-KOu6iZWye9KD6qoahiqZ0alrT/5FSGL4XXLhVSg69xAqD6yG2oi2aKA6cZpDU19uZGqVneqsgpebDsrZ0nLUEg==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-global': 10.1.2 - dev: false - - /@polkadot/x-randomvalues/6.11.1: - resolution: {integrity: sha512-2MfUfGZSOkuPt7GF5OJkPDbl4yORI64SUuKM25EGrJ22o1UyoBnPOClm9eYujLMD6BfDZRM/7bQqqoLW+NuHVw==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-global': 6.11.1 - dev: false - - /@polkadot/x-randomvalues/7.9.2: - resolution: {integrity: sha512-svQfG31yCXf6yVyIgP0NgCzEy7oc3Lw054ZspkaqjOivxYdrXaf5w3JSSUyM/MRjI2+nk+B/EyJoMYcfSwTfsQ==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-global': 7.9.2 - dev: false - - /@polkadot/x-randomvalues/8.7.1: - resolution: {integrity: sha512-njt17MlfN6yNyNEti7fL12lr5qM6A1aSGkWKVuqzc7XwSBesifJuW4km5u6r2gwhXjH2eHDv9SoQ7WXu8vrrkg==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-global': 8.7.1 - dev: false - - /@polkadot/x-randomvalues/9.7.2: - resolution: {integrity: sha512-819slnXNpoVtqdhjI19ao7w5m+Zwx11VfwCZkFQypVv3b/1UEoKG/baJA9dVI6yMvhnBN//i8mLgNy3IXWbVVw==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-global': 9.7.2 - dev: false - - /@polkadot/x-rxjs/6.11.1: - resolution: {integrity: sha512-zIciEmij7SUuXXg9g/683Irx6GogxivrQS2pgBir2DI/YZq+um52+Dqg1mqsEZt74N4KMTMnzAZAP6LJOBOMww==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - rxjs: 6.6.7 - dev: false - - /@polkadot/x-textdecoder/10.1.1: - resolution: {integrity: sha512-a52ah/sUS+aGZcCCL7BhrytAeV/7kiqu1zbuCoZtIzxP6x34a2vcic3bLPoyynLcX2ruzvLKFhJDGOJ4Bq5lcA==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.18.9 - '@polkadot/x-global': 10.1.1 - dev: false - - /@polkadot/x-textdecoder/10.1.10: - resolution: {integrity: sha512-cAk37faYXx8IICeaq/tdl+aiIXwo3SLrx9XNoQqhX02g+SEs3ARM7zJcohj/p8ynWAI+ezNcsKn1wh174nquHw==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-global': 10.1.10 - dev: false - - /@polkadot/x-textdecoder/10.1.11: - resolution: {integrity: sha512-QZqie04SR6pAj260PaLBfZUGXWKI357t4ROVJhpaj06qc1zrk1V8Mwkr49+WzjAPFEOqo70HWnzXmPNCH4dQiw==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.4 - '@polkadot/x-global': 10.1.11 - dev: false - - /@polkadot/x-textdecoder/10.1.2: - resolution: {integrity: sha512-liMlSSKfLGTvcUPz1fMicH2HoKLgSjzxFYsbNfXJOe9GobQfSrAOcprM0j4gNJqN5EoZhze9Sf1rMTORQwomtg==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.18.9 - '@polkadot/x-global': 10.1.2 - dev: false - - /@polkadot/x-textdecoder/10.1.6: - resolution: {integrity: sha512-T+jvyv6OvUgGfOlMDLkPKEmQnZGP1CNohdEDeRr93AmeYikIfbC20qYuAc0bEBXR7/rPXgnqiEfrpkL2W3r/Ig==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-global': 10.1.6 - dev: false - - /@polkadot/x-textdecoder/6.11.1: - resolution: {integrity: sha512-DI1Ym2lyDSS/UhnTT2e9WutukevFZ0WGpzj4eotuG2BTHN3e21uYtYTt24SlyRNMrWJf5+TkZItmZeqs1nwAfQ==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-global': 6.11.1 - dev: false - - /@polkadot/x-textdecoder/7.9.2: - resolution: {integrity: sha512-wfwbSHXPhrOAl12QvlIOGNkMH/N/h8PId2ytIjvM/8zPPFB5Il6DWSFLtVapOGEpIFjEWbd5t8Td4pHBVXIEbg==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-global': 7.9.2 - dev: false - - /@polkadot/x-textdecoder/8.7.1: - resolution: {integrity: sha512-ia0Ie2zi4VdQdNVD2GE2FZzBMfX//hEL4w546RMJfZM2LqDS674LofHmcyrsv5zscLnnRyCxZC1+J2dt+6MDIA==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-global': 8.7.1 - dev: false - - /@polkadot/x-textdecoder/9.7.2: - resolution: {integrity: sha512-hhrMNZwJBmusdpqjDRpOHZoMB4hpyJt9Gu9Bi9is7/D/vq/hpxq8z7s6NxrbRyXJf1SIk6NMK0jf5XjRLdKdbw==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-global': 9.7.2 - dev: false - - /@polkadot/x-textencoder/10.1.1: - resolution: {integrity: sha512-prTzUXXW9OxFyf17EwGSBxe2GvVFG60cmKV8goC50nghhNMl1y0GdGpvKNQTFG6hIk5fIon9/pBpWsas4iAf+Q==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.18.9 - '@polkadot/x-global': 10.1.1 - dev: false - - /@polkadot/x-textencoder/10.1.10: - resolution: {integrity: sha512-Auaql6BL5UHtWakZUQyj4y/BrM0tm4bYG5vXCMQCA1Gg0ky+46DhgpRrAQ9F7NNgWg1A6dA2I9KuAA4BTbNx0w==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-global': 10.1.10 - dev: false - - /@polkadot/x-textencoder/10.1.11: - resolution: {integrity: sha512-UX+uV9AbDID81waaG/NvTkkf7ZNVW7HSHaddgbWjQEVW2Ex4ByccBarY5jEi6cErEPKfzCamKhgXflu0aV9LWw==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.4 - '@polkadot/x-global': 10.1.11 - dev: false - - /@polkadot/x-textencoder/10.1.2: - resolution: {integrity: sha512-bSMvesZ43Er6+jogt9IfwWN/E8bhkl4a9nNnpyS/vTh+j6n/DfDQrvYpKDpRIn7oJA6lfs/mL9Jo5jjJTngaxg==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.18.9 - '@polkadot/x-global': 10.1.2 - dev: false - - /@polkadot/x-textencoder/10.1.6: - resolution: {integrity: sha512-e+iHdR1P/8xAc54l3gHfqozH6ZfxPkKlVVaz3vOMnzfc8cA3Zw93mLYkGtLDqv+825LkSrWSmb/bDZb6YyEEXg==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-global': 10.1.6 - dev: false - - /@polkadot/x-textencoder/6.11.1: - resolution: {integrity: sha512-8ipjWdEuqFo+R4Nxsc3/WW9CSEiprX4XU91a37ZyRVC4e9R1bmvClrpXmRQLVcAQyhRvG8DKOOtWbz8xM+oXKg==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-global': 6.11.1 - dev: false - - /@polkadot/x-textencoder/7.9.2: - resolution: {integrity: sha512-A19wwYINuZwU2dUyQ/mMzB0ISjyfc4cISfL4zCMUAVgj7xVoXMYV2GfjNdMpA8Wsjch3su6pxLbtJ2wU03sRTQ==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-global': 7.9.2 - dev: false - - /@polkadot/x-textencoder/8.7.1: - resolution: {integrity: sha512-XDO0A27Xy+eJCKSxENroB8Dcnl+UclGG4ZBei+P/BqZ9rsjskUyd2Vsl6peMXAcsxwOE7g0uTvujoGM8jpKOXw==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-global': 8.7.1 - dev: false - - /@polkadot/x-textencoder/9.7.2: - resolution: {integrity: sha512-GHbSdbMPixDAOnJ9cvL/x9sPNeHegPoDSqCAzY5H6/zHc/fNn0vUu0To9VpPgPhp/Jb9dbc0h8YqEyvOcOlphw==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-global': 9.7.2 - dev: false - - /@polkadot/x-ws/10.1.10: - resolution: {integrity: sha512-JxDgfm0ox2XPAtdTeJXYl6qq7LY/KOPi69wRpFMczWaYUsZubO6EiRzgzjuFlHY4/oxfjS/D+YbzcjefTxHz6g==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-global': 10.1.10 - '@types/websocket': 1.0.5 - websocket: 1.0.34 - transitivePeerDependencies: - - supports-color - dev: false - - /@polkadot/x-ws/10.1.11: - resolution: {integrity: sha512-EUbL/R1A/NxYf6Rnb1M7U9yeTuo5r4y2vcQllE5aBLaQ0cFnRykHzlmZlVX1E7O5uy3lYVdxWC7sNgxItIWkWA==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.4 - '@polkadot/x-global': 10.1.11 - '@types/websocket': 1.0.5 - websocket: 1.0.34 - transitivePeerDependencies: - - supports-color - dev: false - - /@polkadot/x-ws/10.1.2: - resolution: {integrity: sha512-RQkc6TPM7xOKHMrE3R/8+FdE9fMGJEN7yfK/GixpMGzw98NcVedxJ1xTL19r76hJvOSeZAEks5oqgMxF8K9Pbg==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-global': 10.1.2 - '@types/websocket': 1.0.5 - websocket: 1.0.34 - transitivePeerDependencies: - - supports-color - dev: false - - /@polkadot/x-ws/6.11.1: - resolution: {integrity: sha512-GNu4ywrMlVi0QF6QSpKwYWMK6JRK+kadgN/zEhMoH1z5h8LwpqDLv128j5WspWbQti2teCQtridjf7t2Lzoe8Q==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-global': 6.11.1 - '@types/websocket': 1.0.5 - websocket: 1.0.34 - transitivePeerDependencies: - - supports-color - dev: false - - /@polkadot/x-ws/8.7.1: - resolution: {integrity: sha512-Mt0tcNzGXyKnN3DQ06alkv+JLtTfXWu6zSypFrrKHSQe3u79xMQ1nSicmpT3gWLhIa8YF+8CYJXMrqaXgCnDhw==} - engines: {node: '>=14.0.0'} - dependencies: - '@babel/runtime': 7.19.0 - '@polkadot/x-global': 8.7.1 - '@types/websocket': 1.0.5 - websocket: 1.0.34 - transitivePeerDependencies: - - supports-color - dev: false - - /@polymathnetwork/polymesh-types/0.0.2: - resolution: {integrity: sha512-wGexzpZ4IdrwReQGSH7ViCN+kyoKMQcQC5exATgeG+1cZxOtcbxp+1LWP9xTrnw7R5+PYWPzIl+f71gMkSDD5A==} - dev: false - - /@protobufjs/aspromise/1.1.2: - resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==} + /@protobufjs/aspromise/1.1.2: + resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==} dev: false /@protobufjs/base64/1.1.2: @@ -3815,168 +1957,57 @@ packages: resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==} dev: false - /@scure/base/1.0.0: - resolution: {integrity: sha512-gIVaYhUsy+9s58m/ETjSJVKHhKTBMmcRb9cEV5/5dwvfDlfORjKrFsDeDHWRrm6RjcPvCLZFwGJjAjLj1gg4HA==} - dev: false - - /@scure/base/1.1.1: - resolution: {integrity: sha512-ZxOhsSyxYwLJj3pLZCefNitxsj093tb2vq90mp2txoYeBqbcjDjqFhyM8eUjq/uFm6zJ+mUuqxlS2FkuSY1MTA==} - dev: false - - /@sinclair/typebox/0.24.26: - resolution: {integrity: sha512-1ZVIyyS1NXDRVT8GjWD5jULjhDyM3IsIHef2VGUMdnWOlX2tkPjyEX/7K0TGSH2S8EaPhp1ylFdjSjUGQ+gecg==} - dev: true - - /@sinonjs/commons/1.8.3: - resolution: {integrity: sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==} - dependencies: - type-detect: 4.0.8 - dev: true - - /@sinonjs/fake-timers/9.1.2: - resolution: {integrity: sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==} - dependencies: - '@sinonjs/commons': 1.8.3 - dev: true - - /@snowfork/snowbridge-types/0.2.7: - resolution: {integrity: sha512-Dz3OM8xvYhzL7XU/QOjgyPWZI4IgPKGByaJo6eZe3UMS6F7TLaFaZW1oYhQVTTahGWWAE6ZwwCuMkVh2FC/9bw==} - dependencies: - '@polkadot/api': 7.15.1 - '@polkadot/keyring': 8.7.1 - '@polkadot/types': 7.15.1 - transitivePeerDependencies: - - encoding - - supports-color - dev: false - - /@sora-substrate/type-definitions/1.9.18: - resolution: {integrity: sha512-rQjvQ9gczBfeEINdfz8L2ywQFYIJFA2kWl1wNHs/JYvNoE/J/IpCgUGBT0s0KX5YxVjD4/iioTk6swZen2vnAg==} - dependencies: - '@open-web3/orml-type-definitions': 0.9.4-38 - dev: false - - /@sqltools/formatter/1.2.3: - resolution: {integrity: sha512-O3uyB/JbkAEMZaP3YqyHH7TMnex7tWyCbCI4EfJdOCoN6HIhqdJBWTM6aCCiWQ/5f5wxjgU735QAIpJbjDvmzg==} - dev: false - - /@subsocial/definitions/0.6.11: - resolution: {integrity: sha512-FQDzZmSaHXQ9x5HoudPcDYf3BmH2CN7zPbPZS+01LZXhelDN7qbNk36+pBeXki0zmtUnevWjy6LKld8zZ3XLBw==} - dependencies: - '@polkadot/api': 9.5.2 - lodash.camelcase: 4.3.0 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - dev: false - - /@substrate/connect-extension-protocol/1.0.1: - resolution: {integrity: sha512-161JhCC1csjH3GE5mPLEd7HbWtwNSPJBg3p1Ksz9SFlTzj/bgEwudiRN2y5i0MoLGCIJRYKyKGMxVnd29PzNjg==} - dev: false - - /@substrate/connect/0.7.0-alpha.0: - resolution: {integrity: sha512-fvO7w++M8R95R/pGJFW9+cWOt8OYnnTfgswxtlPqSgzqX4tta8xcNQ51crC72FcL5agwSGkA1gc2/+eyTj7O8A==} - dependencies: - '@substrate/connect-extension-protocol': 1.0.1 - '@substrate/smoldot-light': 0.6.8 - eventemitter3: 4.0.7 - transitivePeerDependencies: - - supports-color - dev: false - - /@substrate/connect/0.7.14: - resolution: {integrity: sha512-uW5uBmihpivshmmmw+rsg7qOV0KqVSep4rWOXFMP8aFQinvmqw4JqxP21og4H/7JZxttYUBFQVsdtXHGKJ0aVQ==} - dependencies: - '@substrate/connect-extension-protocol': 1.0.1 - '@substrate/smoldot-light': 0.6.34 - eventemitter3: 4.0.7 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - dev: false - - /@substrate/connect/0.7.9: - resolution: {integrity: sha512-E6bdBhzsfHNAKlmQSvbTW1jyb0WcIvgbrEBfJ4B6FZ3t1wpGjldL6GrYtegVtKr9/ySQ/pFNn0uVbugukpMDjQ==} - dependencies: - '@substrate/connect-extension-protocol': 1.0.1 - '@substrate/smoldot-light': 0.6.25 - eventemitter3: 4.0.7 - transitivePeerDependencies: - - supports-color - dev: false - - /@substrate/smoldot-light/0.6.25: - resolution: {integrity: sha512-OQ9/bnJJy90xSRg5Vp9MIvrgbrVt/r/FwXYSmyLeBBNbJt6o1gSeshVo8icD+2VWwd/TJ2oHl5CVQWe89MyByA==} - dependencies: - websocket: 1.0.34 - transitivePeerDependencies: - - supports-color - dev: false - - /@substrate/smoldot-light/0.6.34: - resolution: {integrity: sha512-+HK9MaJ0HelJmpf4YYR+salJ7dhVBltmhGlyz5l8OXS9DW18fe0Z2wxEo8P5kX9CUxlCXEb8J9JBRQAYBPHbwQ==} - dependencies: - pako: 2.0.4 - ws: 8.8.1 - transitivePeerDependencies: - - bufferutil - - utf-8-validate + /@scure/base/1.1.1: + resolution: {integrity: sha512-ZxOhsSyxYwLJj3pLZCefNitxsj093tb2vq90mp2txoYeBqbcjDjqFhyM8eUjq/uFm6zJ+mUuqxlS2FkuSY1MTA==} dev: false - /@substrate/smoldot-light/0.6.8: - resolution: {integrity: sha512-9lVwbG6wrtss0sd6013BJGe4WN4taujsGG49pwyt1Lj36USeL2Sb164TTUxmZF/g2NQEqDPwPROBdekQ2gFmgg==} + /@sinclair/typebox/0.24.51: + resolution: {integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==} + dev: true + + /@sinonjs/commons/1.8.5: + resolution: {integrity: sha512-rTpCA0wG1wUxglBSFdMMY0oTrKYvgf4fNgv/sXbfCVAdf+FnPBdKJR/7XbpTCwbCrvCbdPYnlWaUUYz4V2fPDA==} dependencies: - buffer: 6.0.3 - pako: 2.0.4 - websocket: 1.0.34 - transitivePeerDependencies: - - supports-color - dev: false + type-detect: 4.0.8 + dev: true - /@substrate/ss58-registry/1.25.0: - resolution: {integrity: sha512-LmCH4QJRdHaeLsLTPSgJaXguMoIW+Ig9fA9LRPpeya9HefVAJ7gZuUYinldv+QmX7evNm5CL0rspNUS8l1DvXg==} - dev: false + /@sinonjs/fake-timers/9.1.2: + resolution: {integrity: sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==} + dependencies: + '@sinonjs/commons': 1.8.5 + dev: true - /@substrate/ss58-registry/1.31.0: - resolution: {integrity: sha512-OSOmdjaq9foXfHBy9aLVMwGheygvsiZlv4dggnLOYOuhSmNCsSB/PaW4DBz+/tSdK1Fo9+ZiFW6cF24RA+m0sw==} + /@sqltools/formatter/1.2.5: + resolution: {integrity: sha512-Uy0+khmZqUrUGm5dmMqVlnvufZRSK0FbYzVgp0UMstm+F5+W2/jnEEQyc9vo1ZR/E5ZI/B1WjjoTqBqwJL6Krw==} dev: false - /@substrate/ss58-registry/1.33.0: - resolution: {integrity: sha512-DztMuMcEfu+tJrtIQIIp5gO8/XJZ8N8UwPObDCSNgrp7trtSkPJAUFB9qXaReXtN9UvTcVBMTWk6VPfFi04Wkg==} + /@substrate/connect-extension-protocol/1.0.1: + resolution: {integrity: sha512-161JhCC1csjH3GE5mPLEd7HbWtwNSPJBg3p1Ksz9SFlTzj/bgEwudiRN2y5i0MoLGCIJRYKyKGMxVnd29PzNjg==} dev: false - /@substrate/txwrapper-core/3.1.7: - resolution: {integrity: sha512-6HC4ZyOcKRhhTo9leBoksseVXlfUmVIEFjEEF5RFq1YMVMzuO2WE54ocjNHGKGPz+HBOq8DYMpuJ1AqXeM379g==} + /@substrate/connect/0.7.16: + resolution: {integrity: sha512-068ZOR5ohb3qC2UegHe73RphnIa4F8fRjOIoap69K2qAdgT2yiegjK4nsxTnnqzlGrQTzgN3yG6SY+Va/a3+mw==} dependencies: - '@polkadot/api': 8.14.1 - memoizee: 0.4.15 + '@substrate/connect-extension-protocol': 1.0.1 + '@substrate/smoldot-light': 0.7.5 + eventemitter3: 4.0.7 transitivePeerDependencies: - - supports-color + - bufferutil + - utf-8-validate dev: false - /@substrate/txwrapper-registry/3.1.7: - resolution: {integrity: sha512-wi22FDOD1eWEidCThPdPmDXZFxkMZI72w3nL4neCjTXa3ebPwpTtYqZ+IzxiSmk/jzYBHIDWHdQOj8kMUV3ZOw==} + /@substrate/smoldot-light/0.7.5: + resolution: {integrity: sha512-rODqhQx0C6zRN7HzdZrjzcg2dNbl3IUtM7GWEHitPzLS/0c3ikO/RkCCD1uleVqCwKXlZzjVNBeYW4/47vxKSA==} dependencies: - '@polkadot/apps-config': 0.118.1 - '@polkadot/networks': 10.1.1 - '@substrate/txwrapper-core': 3.1.7 + pako: 2.1.0 + ws: 8.11.0 transitivePeerDependencies: - bufferutil - - encoding - - supports-color - utf-8-validate dev: false - /@substrate/txwrapper/7.0.1: - resolution: {integrity: sha512-aj2IalL9/+LW4MKujXGniz8Q/1kj9+chF5xuO5G32Ml3E08SysMGEH0EsYVSUPuQKR+jBZZWD7ME13tkGPqV6A==} - deprecated: txwrapper is deprecated in favour of txwrapper-core - dependencies: - '@polkadot/api': 4.17.1 - memoizee: 0.4.15 - transitivePeerDependencies: - - encoding - - supports-color + /@substrate/ss58-registry/1.34.0: + resolution: {integrity: sha512-8Df5usnWvjnw/WRAmKOqHXRPPRfiCd1kIN8ttH4YmBrRTERjVInsdu0xvLdbyUYKyvgK6zKhHWQfYohXqllHhg==} dev: false /@tsconfig/node10/1.0.9: @@ -3991,51 +2022,39 @@ packages: /@tsconfig/node16/1.0.3: resolution: {integrity: sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==} - /@types/babel__core/7.1.19: - resolution: {integrity: sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==} + /@types/babel__core/7.1.20: + resolution: {integrity: sha512-PVb6Bg2QuscZ30FvOU7z4guG6c926D9YRvOxEaelzndpMsvP+YM74Q/dAFASpg2l6+XLalxSGxcq/lrgYWZtyQ==} dependencies: - '@babel/parser': 7.18.10 - '@babel/types': 7.18.10 + '@babel/parser': 7.20.3 + '@babel/types': 7.20.2 '@types/babel__generator': 7.6.4 '@types/babel__template': 7.4.1 - '@types/babel__traverse': 7.17.1 + '@types/babel__traverse': 7.18.2 dev: true /@types/babel__generator/7.6.4: resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.20.2 dev: true /@types/babel__template/7.4.1: resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} dependencies: - '@babel/parser': 7.18.10 - '@babel/types': 7.18.10 + '@babel/parser': 7.20.3 + '@babel/types': 7.20.2 dev: true - /@types/babel__traverse/7.17.1: - resolution: {integrity: sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA==} + /@types/babel__traverse/7.18.2: + resolution: {integrity: sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg==} dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.20.2 dev: true - /@types/bn.js/4.11.6: - resolution: {integrity: sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==} - dependencies: - '@types/node': 16.11.47 - dev: false - - /@types/bn.js/5.1.0: - resolution: {integrity: sha512-QSSVYj7pYFN49kW77o2s9xTCwZ8F2xLbjLLSEVh8D2F4JUhZtPAGOFLTD+ffqksBx/u4cE/KImFjyhqCjn/LIA==} - dependencies: - '@types/node': 16.11.47 - dev: false - /@types/bn.js/5.1.1: resolution: {integrity: sha512-qNrYbZqMx0uJAfKnKclPh+dTwK33KfLHYqtyODwd5HnXOjnkhc4qgn3BrK6RWyGZm5+sIFE7Q7Vz6QQtJB7w7g==} dependencies: - '@types/node': 16.11.47 + '@types/node': 16.18.3 dev: false /@types/cookiejar/2.1.2: @@ -4045,12 +2064,12 @@ packages: /@types/eslint-scope/3.7.4: resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==} dependencies: - '@types/eslint': 8.4.5 + '@types/eslint': 8.4.10 '@types/estree': 0.0.51 dev: true - /@types/eslint/8.4.5: - resolution: {integrity: sha512-dhsC09y1gpJWnK+Ff4SGvCuSnk9DaU0BJZSzOwa6GVSg65XtTugLBITDAAzRU5duGBoXBHpdR/9jHGxJjNflJQ==} + /@types/eslint/8.4.10: + resolution: {integrity: sha512-Sl/HOqN8NKPmhWo2VBEPm0nvHnu2LL3v9vKo8MEq0EtbJ4eVzGPl41VNPvn5E1i5poMk4/XD8UriLHpJvEP/Nw==} dependencies: '@types/estree': 0.0.51 '@types/json-schema': 7.0.11 @@ -4063,7 +2082,7 @@ packages: /@types/graceful-fs/4.1.5: resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==} dependencies: - '@types/node': 16.11.47 + '@types/node': 16.18.3 dev: true /@types/istanbul-lib-coverage/2.0.4: @@ -4082,10 +2101,10 @@ packages: '@types/istanbul-lib-report': 3.0.0 dev: true - /@types/jest/28.1.6: - resolution: {integrity: sha512-0RbGAFMfcBJKOmqRazM8L98uokwuwD5F8rHrv/ZMbrZBwVOWZUyPG6VFNscjYr/vjM3Vu4fRrCPbOs42AfemaQ==} + /@types/jest/28.1.8: + resolution: {integrity: sha512-8TJkV++s7B6XqnDrzR1m/TT0A0h948Pnl/097veySPN67VRAgQ4gZ7n2KfJo2rVq6njQjdxU3GCCyDvAeuHoiw==} dependencies: - jest-matcher-utils: 28.1.3 + expect: 28.1.3 pretty-format: 28.1.3 dev: true @@ -4104,7 +2123,7 @@ packages: /@types/node-fetch/2.6.2: resolution: {integrity: sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A==} dependencies: - '@types/node': 16.11.47 + '@types/node': 16.18.3 form-data: 3.0.1 dev: false @@ -4112,15 +2131,19 @@ packages: resolution: {integrity: sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==} dev: false - /@types/node/16.11.47: - resolution: {integrity: sha512-fpP+jk2zJ4VW66+wAMFoBJlx1bxmBKx4DUFf68UHgdGCOuyUTDlLWqsaNPJh7xhNDykyJ9eIzAygilP/4WoN8g==} + /@types/node/16.18.3: + resolution: {integrity: sha512-jh6m0QUhIRcZpNv7Z/rpN+ZWXOicUUQbSoWks7Htkbb9IjFQj4kzcX/xFCkjstCj5flMsN8FiSvt+q+Tcs4Llg==} /@types/parse-json/4.0.0: resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} dev: true - /@types/prettier/2.6.4: - resolution: {integrity: sha512-fOwvpvQYStpb/zHMx0Cauwywu9yLDmzWiiQBC7gJyq5tYLUXFZvDG7VK1B7WBxxjBJNKFOZ0zLoOQn8vmATbhw==} + /@types/prettier/2.7.1: + resolution: {integrity: sha512-ri0UmynRRvZiiUJdiz38MmIblKK+oH30MztdBVR95dv/Ubw6neWSb8u1XpRb72L4qsZOhz+L+z9JD40SJmfWow==} + dev: true + + /@types/semver/7.3.13: + resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==} dev: true /@types/stack-utils/2.0.1: @@ -4131,7 +2154,7 @@ packages: resolution: {integrity: sha512-mu/N4uvfDN2zVQQ5AYJI/g4qxn2bHB6521t1UuH09ShNWjebTqN0ZFuYK9uYjcgmI0dTQEs+Owi1EO6U0OkOZQ==} dependencies: '@types/cookiejar': 2.1.2 - '@types/node': 16.11.47 + '@types/node': 16.18.3 dev: true /@types/supertest/2.0.12: @@ -4146,21 +2169,21 @@ packages: /@types/websocket/1.0.5: resolution: {integrity: sha512-NbsqiNX9CnEfC1Z0Vf4mE1SgAJ07JnRYcNex7AJ9zAVzmiGHmjKFEk7O4TJIsgv2B1sLEb6owKFZrACwdYngsQ==} dependencies: - '@types/node': 16.11.47 + '@types/node': 16.18.3 dev: false /@types/yargs-parser/21.0.0: resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==} dev: true - /@types/yargs/17.0.10: - resolution: {integrity: sha512-gmEaFwpj/7f/ROdtIlci1R1VYU1J4j95m8T+Tj3iBgiBFKg1foE/PSl93bBd5T9LDXNPo8UlNN6W0qwD8O5OaA==} + /@types/yargs/17.0.13: + resolution: {integrity: sha512-9sWaruZk2JGxIQU+IhI1fhPYRcQ0UuTNuKuCW9bR5fp7qi2Llf7WDzNa17Cy7TKnh3cdxDOiyTu6gaLS0eDatg==} dependencies: '@types/yargs-parser': 21.0.0 dev: true - /@typescript-eslint/eslint-plugin/5.32.0_iosr3hrei2tubxveewluhu5lhy: - resolution: {integrity: sha512-CHLuz5Uz7bHP2WgVlvoZGhf0BvFakBJKAD/43Ty0emn4wXWv5k01ND0C0fHcl/Im8Td2y/7h44E9pca9qAu2ew==} + /@typescript-eslint/eslint-plugin/5.43.0_qkzzhbbraoydjxplhj4djkikc4: + resolution: {integrity: sha512-wNPzG+eDR6+hhW4yobEmpR36jrqqQv1vxBq5LJO3fBAktjkvekfr4BRl+3Fn1CM/A+s8/EiGUbOMDoYqWdbtXA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -4170,24 +2193,24 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.32.0_qugx7qdu5zevzvxaiqyxfiwquq - '@typescript-eslint/scope-manager': 5.32.0 - '@typescript-eslint/type-utils': 5.32.0_qugx7qdu5zevzvxaiqyxfiwquq - '@typescript-eslint/utils': 5.32.0_qugx7qdu5zevzvxaiqyxfiwquq + '@typescript-eslint/parser': 5.43.0_2uhzae5rel2qyw7fhfmxrmdt3q + '@typescript-eslint/scope-manager': 5.43.0 + '@typescript-eslint/type-utils': 5.43.0_2uhzae5rel2qyw7fhfmxrmdt3q + '@typescript-eslint/utils': 5.43.0_2uhzae5rel2qyw7fhfmxrmdt3q debug: 4.3.4 - eslint: 8.21.0 - functional-red-black-tree: 1.0.1 + eslint: 8.27.0 ignore: 5.2.0 + natural-compare-lite: 1.4.0 regexpp: 3.2.0 - semver: 7.3.7 + semver: 7.3.8 tsutils: 3.21.0_typescript@4.7.4 typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser/5.32.0_qugx7qdu5zevzvxaiqyxfiwquq: - resolution: {integrity: sha512-IxRtsehdGV9GFQ35IGm5oKKR2OGcazUoiNBxhRV160iF9FoyuXxjY+rIqs1gfnd+4eL98OjeGnMpE7RF/NBb3A==} + /@typescript-eslint/parser/5.43.0_2uhzae5rel2qyw7fhfmxrmdt3q: + resolution: {integrity: sha512-2iHUK2Lh7PwNUlhFxxLI2haSDNyXvebBO9izhjhMoDC+S3XI9qt2DGFUsiJ89m2k7gGYch2aEpYqV5F/+nwZug==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -4196,26 +2219,26 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.32.0 - '@typescript-eslint/types': 5.32.0 - '@typescript-eslint/typescript-estree': 5.32.0_typescript@4.7.4 + '@typescript-eslint/scope-manager': 5.43.0 + '@typescript-eslint/types': 5.43.0 + '@typescript-eslint/typescript-estree': 5.43.0_typescript@4.7.4 debug: 4.3.4 - eslint: 8.21.0 + eslint: 8.27.0 typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/scope-manager/5.32.0: - resolution: {integrity: sha512-KyAE+tUON0D7tNz92p1uetRqVJiiAkeluvwvZOqBmW9z2XApmk5WSMV9FrzOroAcVxJZB3GfUwVKr98Dr/OjOg==} + /@typescript-eslint/scope-manager/5.43.0: + resolution: {integrity: sha512-XNWnGaqAtTJsUiZaoiGIrdJYHsUOd3BZ3Qj5zKp9w6km6HsrjPk/TGZv0qMTWyWj0+1QOqpHQ2gZOLXaGA9Ekw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.32.0 - '@typescript-eslint/visitor-keys': 5.32.0 + '@typescript-eslint/types': 5.43.0 + '@typescript-eslint/visitor-keys': 5.43.0 dev: true - /@typescript-eslint/type-utils/5.32.0_qugx7qdu5zevzvxaiqyxfiwquq: - resolution: {integrity: sha512-0gSsIhFDduBz3QcHJIp3qRCvVYbqzHg8D6bHFsDMrm0rURYDj+skBK2zmYebdCp+4nrd9VWd13egvhYFJj/wZg==} + /@typescript-eslint/type-utils/5.43.0_2uhzae5rel2qyw7fhfmxrmdt3q: + resolution: {integrity: sha512-K21f+KY2/VvYggLf5Pk4tgBOPs2otTaIHy2zjclo7UZGLyFH86VfUOm5iq+OtDtxq/Zwu2I3ujDBykVW4Xtmtg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -4224,22 +2247,23 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.32.0_qugx7qdu5zevzvxaiqyxfiwquq + '@typescript-eslint/typescript-estree': 5.43.0_typescript@4.7.4 + '@typescript-eslint/utils': 5.43.0_2uhzae5rel2qyw7fhfmxrmdt3q debug: 4.3.4 - eslint: 8.21.0 + eslint: 8.27.0 tsutils: 3.21.0_typescript@4.7.4 typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/types/5.32.0: - resolution: {integrity: sha512-EBUKs68DOcT/EjGfzywp+f8wG9Zw6gj6BjWu7KV/IYllqKJFPlZlLSYw/PTvVyiRw50t6wVbgv4p9uE2h6sZrQ==} + /@typescript-eslint/types/5.43.0: + resolution: {integrity: sha512-jpsbcD0x6AUvV7tyOlyvon0aUsQpF8W+7TpJntfCUWU1qaIKu2K34pMwQKSzQH8ORgUrGYY6pVIh1Pi8TNeteg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree/5.32.0_typescript@4.7.4: - resolution: {integrity: sha512-ZVAUkvPk3ITGtCLU5J4atCw9RTxK+SRc6hXqLtllC2sGSeMFWN+YwbiJR9CFrSFJ3w4SJfcWtDwNb/DmUIHdhg==} + /@typescript-eslint/typescript-estree/5.43.0_typescript@4.7.4: + resolution: {integrity: sha512-BZ1WVe+QQ+igWal2tDbNg1j2HWUkAa+CVqdU79L4HP9izQY6CNhXfkNwd1SS4+sSZAP/EthI1uiCSY/+H0pROg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' @@ -4247,74 +2271,46 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.32.0 - '@typescript-eslint/visitor-keys': 5.32.0 + '@typescript-eslint/types': 5.43.0 + '@typescript-eslint/visitor-keys': 5.43.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 - semver: 7.3.7 + semver: 7.3.8 tsutils: 3.21.0_typescript@4.7.4 typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/utils/5.32.0_qugx7qdu5zevzvxaiqyxfiwquq: - resolution: {integrity: sha512-W7lYIAI5Zlc5K082dGR27Fczjb3Q57ECcXefKU/f0ajM5ToM0P+N9NmJWip8GmGu/g6QISNT+K6KYB+iSHjXCQ==} + /@typescript-eslint/utils/5.43.0_2uhzae5rel2qyw7fhfmxrmdt3q: + resolution: {integrity: sha512-8nVpA6yX0sCjf7v/NDfeaOlyaIIqL7OaIGOWSPFqUKK59Gnumd3Wa+2l8oAaYO2lk0sO+SbWFWRSvhu8gLGv4A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: '@types/json-schema': 7.0.11 - '@typescript-eslint/scope-manager': 5.32.0 - '@typescript-eslint/types': 5.32.0 - '@typescript-eslint/typescript-estree': 5.32.0_typescript@4.7.4 - eslint: 8.21.0 + '@types/semver': 7.3.13 + '@typescript-eslint/scope-manager': 5.43.0 + '@typescript-eslint/types': 5.43.0 + '@typescript-eslint/typescript-estree': 5.43.0_typescript@4.7.4 + eslint: 8.27.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.21.0 + eslint-utils: 3.0.0_eslint@8.27.0 + semver: 7.3.8 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/visitor-keys/5.32.0: - resolution: {integrity: sha512-S54xOHZgfThiZ38/ZGTgB2rqx51CMJ5MCfVT2IplK4Q7hgzGfe0nLzLCcenDnc/cSjP568hdeKfeDcBgqNHD/g==} + /@typescript-eslint/visitor-keys/5.43.0: + resolution: {integrity: sha512-icl1jNH/d18OVHLfcwdL3bWUKsBeIiKYTGxMJCoGe7xFht+E4QgzOqoWYrU8XSLJWhVw8nTacbm03v23J/hFTg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.32.0 + '@typescript-eslint/types': 5.43.0 eslint-visitor-keys: 3.3.0 dev: true - /@unique-nft/opal-testnet-types/0.5.3_ik75i26eqe7sgkaioc3ny3gd4y: - resolution: {integrity: sha512-JKQspSNV3HnWrbFPgLE25CJ+o38sbpI534XXhPEQU2/DUYPxpl1IVMAdJlWQ3j5nElQw+oIqo6PvmyzbKz4PBw==} - peerDependencies: - '@polkadot/api': ^8.6.2 - '@polkadot/types': ^8.6.2 - dependencies: - '@polkadot/api': 8.14.1 - '@polkadot/types': 8.14.1 - dev: false - - /@unique-nft/quartz-mainnet-types/0.6.1_ik75i26eqe7sgkaioc3ny3gd4y: - resolution: {integrity: sha512-BqjDhq/SS1/Z9jJSZyKge1KDpoN8mT7kV32cSjX03zO1JwFe0CD0JYnLnQaeDEdcGG2hNTIz6FWGghUEv9RYCg==} - peerDependencies: - '@polkadot/api': ^8.6.2 - '@polkadot/types': ^8.6.2 - dependencies: - '@polkadot/api': 8.14.1 - '@polkadot/types': 8.14.1 - dev: false - - /@unique-nft/unique-mainnet-types/0.6.3_ik75i26eqe7sgkaioc3ny3gd4y: - resolution: {integrity: sha512-t79RC6FSaqgoQbsVp1FWpWt58gp50FhDJmCVHjNShaq5agIyWk6pGmNlbtI+6zgDNDfAwKBhuQhIp9uvMsnd2A==} - peerDependencies: - '@polkadot/api': ^8.6.2 - '@polkadot/types': ^8.6.2 - dependencies: - '@polkadot/api': 8.14.1 - '@polkadot/types': 8.14.1 - dev: false - /@webassemblyjs/ast/1.11.1: resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==} dependencies: @@ -4429,14 +2425,6 @@ packages: resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} dev: true - /@zeitgeistpm/type-defs/0.6.0: - resolution: {integrity: sha512-9UeCFtPtmo0s/nxT1Xx5Ei9PvxjFtVg48i1WyNmkQW0mc0Cmiel6eysNrx8CmHQr0jkB0J2iNCsxOD6d3CBasw==} - dev: false - - /@zeroio/type-definitions/0.0.14: - resolution: {integrity: sha512-OkqtOLPkR7oqWLrsgRKhzyLZVFLnNLfEF3DMXH+Rpn1fMNMDq/fOY9pXt55B+flBc62saN73CfOTy3hMSVZFTA==} - dev: false - /abort-controller/3.0.0: resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} engines: {node: '>=6.5'} @@ -4455,28 +2443,28 @@ packages: negotiator: 0.6.3 dev: false - /acorn-import-assertions/1.8.0_acorn@8.8.0: + /acorn-import-assertions/1.8.0_acorn@8.8.1: resolution: {integrity: sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==} peerDependencies: acorn: ^8 dependencies: - acorn: 8.8.0 + acorn: 8.8.1 dev: true - /acorn-jsx/5.3.2_acorn@8.8.0: + /acorn-jsx/5.3.2_acorn@8.8.1: resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - acorn: 8.8.0 + acorn: 8.8.1 dev: true /acorn-walk/8.2.0: resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==} engines: {node: '>=0.4.0'} - /acorn/8.8.0: - resolution: {integrity: sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==} + /acorn/8.8.1: + resolution: {integrity: sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==} engines: {node: '>=0.4.0'} hasBin: true @@ -4505,8 +2493,8 @@ packages: json-schema-traverse: 0.4.1 uri-js: 4.4.1 - /ajv/8.11.0: - resolution: {integrity: sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==} + /ajv/8.11.2: + resolution: {integrity: sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg==} dependencies: fast-deep-equal: 3.1.3 json-schema-traverse: 1.0.0 @@ -4571,6 +2559,7 @@ packages: /apollo-datasource/3.3.2: resolution: {integrity: sha512-L5TiS8E2Hn/Yz7SSnWIVbZw0ZfEIXZCa5VUiVxD9P53JvSrf4aStvsFDlGWPvpIdCR+aly2CfoB79B9/JjKFqg==} engines: {node: '>=12.0'} + deprecated: The `apollo-datasource` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023). See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. dependencies: '@apollo/utils.keyvaluecache': 1.0.1 apollo-server-env: 4.2.1 @@ -4578,40 +2567,43 @@ packages: - encoding dev: false - /apollo-reporting-protobuf/3.3.2: - resolution: {integrity: sha512-j1tx9tmkVdsLt1UPzBrvz90PdjAeKW157WxGn+aXlnnGfVjZLIRXX3x5t1NWtXvB7rVaAsLLILLtDHW382TSoQ==} + /apollo-reporting-protobuf/3.3.3: + resolution: {integrity: sha512-L3+DdClhLMaRZWVmMbBcwl4Ic77CnEBPXLW53F7hkYhkaZD88ivbCVB1w/x5gunO6ZHrdzhjq0FHmTsBvPo7aQ==} + deprecated: The `apollo-reporting-protobuf` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023). This package's functionality is now found in the `@apollo/usage-reporting-protobuf` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. dependencies: - '@apollo/protobufjs': 1.2.4 + '@apollo/protobufjs': 1.2.6 dev: false - /apollo-server-core/3.10.0_graphql@16.5.0: - resolution: {integrity: sha512-ln5drIk3oW/ycYhcYL9TvM7vRf7OZwJrgHWlnjnMakozBQIBSumdMi4pN001DhU9mVBWTfnmBv3CdcxJdGXIvA==} + /apollo-server-core/3.11.1_graphql@16.6.0: + resolution: {integrity: sha512-t/eCKrRFK1lYZlc5pHD99iG7Np7CEm3SmbDiONA7fckR3EaB/pdsEdIkIwQ5QBBpT5JLp/nwvrZRVwhaWmaRvw==} engines: {node: '>=12.0'} + deprecated: The `apollo-server-core` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. peerDependencies: graphql: ^15.3.0 || ^16.0.0 dependencies: '@apollo/utils.keyvaluecache': 1.0.1 - '@apollo/utils.logger': 1.0.0 - '@apollo/utils.usagereporting': 1.0.0_graphql@16.5.0 - '@apollographql/apollo-tools': 0.5.4_graphql@16.5.0 + '@apollo/utils.logger': 1.0.1 + '@apollo/utils.usagereporting': 1.0.1_graphql@16.6.0 + '@apollographql/apollo-tools': 0.5.4_graphql@16.6.0 '@apollographql/graphql-playground-html': 1.6.29 - '@graphql-tools/mock': 8.7.1_graphql@16.5.0 - '@graphql-tools/schema': 8.5.1_graphql@16.5.0 + '@graphql-tools/mock': 8.7.12_graphql@16.6.0 + '@graphql-tools/schema': 8.5.1_graphql@16.6.0 '@josephg/resolvable': 1.0.1 apollo-datasource: 3.3.2 - apollo-reporting-protobuf: 3.3.2 + apollo-reporting-protobuf: 3.3.3 apollo-server-env: 4.2.1 - apollo-server-errors: 3.3.1_graphql@16.5.0 - apollo-server-plugin-base: 3.6.2_graphql@16.5.0 - apollo-server-types: 3.6.2_graphql@16.5.0 + apollo-server-errors: 3.3.1_graphql@16.6.0 + apollo-server-plugin-base: 3.7.1_graphql@16.6.0 + apollo-server-types: 3.7.1_graphql@16.6.0 async-retry: 1.3.3 fast-json-stable-stringify: 2.1.0 - graphql: 16.5.0 - graphql-tag: 2.12.6_graphql@16.5.0 - loglevel: 1.8.0 + graphql: 16.6.0 + graphql-tag: 2.12.6_graphql@16.6.0 + loglevel: 1.8.1 lru-cache: 6.0.0 + node-abort-controller: 3.0.1 sha.js: 2.4.11 - uuid: 8.3.2 + uuid: 9.0.0 whatwg-mimetype: 3.0.0 transitivePeerDependencies: - encoding @@ -4620,67 +2612,72 @@ packages: /apollo-server-env/4.2.1: resolution: {integrity: sha512-vm/7c7ld+zFMxibzqZ7SSa5tBENc4B0uye9LTfjJwGoQFY5xsUPH5FpO5j0bMUDZ8YYNbrF9SNtzc5Cngcr90g==} engines: {node: '>=12.0'} + deprecated: The `apollo-server-env` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023). This package's functionality is now found in the `@apollo/utils.fetcher` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. dependencies: node-fetch: 2.6.7 transitivePeerDependencies: - encoding dev: false - /apollo-server-errors/3.3.1_graphql@16.5.0: + /apollo-server-errors/3.3.1_graphql@16.6.0: resolution: {integrity: sha512-xnZJ5QWs6FixHICXHxUfm+ZWqqxrNuPlQ+kj5m6RtEgIpekOPssH/SD9gf2B4HuWV0QozorrygwZnux8POvyPA==} engines: {node: '>=12.0'} + deprecated: The `apollo-server-errors` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. peerDependencies: graphql: ^15.3.0 || ^16.0.0 dependencies: - graphql: 16.5.0 + graphql: 16.6.0 dev: false - /apollo-server-fastify/3.10.0_fs6cl6gqybbcj7xzz72msc6zye: - resolution: {integrity: sha512-IWsLDQLuJj1Yk6HZ1VuTDt3GjGeUP6MEVk8wMHk021VlueL9y25ZKm3xWGA6kmVJ1wAnaNuUCDZXY4hxsV2kcw==} + /apollo-server-fastify/3.11.1_sf3em2md5juc2kebq37yhduz24: + resolution: {integrity: sha512-yJBn2Ef2LFip8K2spD2db2MaN4Q/XoFDcOdU/G4hAL6gqw1UX3lSVbbzEbq4ToYmkODzXnCHRW/4Ch4K8FmNxw==} engines: {node: '>=12.0'} + deprecated: The `apollo-server-fastify` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. peerDependencies: fastify: ^3.17.0 graphql: ^15.3.0 || ^16.0.0 dependencies: '@fastify/accepts': 3.0.0 '@fastify/cors': 7.0.0 - apollo-server-core: 3.10.0_graphql@16.5.0 - apollo-server-types: 3.6.2_graphql@16.5.0 - fastify: 3.29.1 - graphql: 16.5.0 + apollo-server-core: 3.11.1_graphql@16.6.0 + apollo-server-types: 3.7.1_graphql@16.6.0 + fastify: 3.29.3 + graphql: 16.6.0 transitivePeerDependencies: - encoding dev: false - /apollo-server-plugin-base/3.6.2_graphql@16.5.0: - resolution: {integrity: sha512-erWXjLOO1u7fxQkbxJ2cwSO7p0tYzNied91I1SJ9tikXZ/2eZUyDyvrpI+4g70kOdEi+AmJ5Fo8ahEXKJ75zdg==} + /apollo-server-plugin-base/3.7.1_graphql@16.6.0: + resolution: {integrity: sha512-g3vJStmQtQvjGI289UkLMfThmOEOddpVgHLHT2bNj0sCD/bbisj4xKbBHETqaURokteqSWyyd4RDTUe0wAUDNQ==} engines: {node: '>=12.0'} + deprecated: The `apollo-server-plugin-base` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. peerDependencies: graphql: ^15.3.0 || ^16.0.0 dependencies: - apollo-server-types: 3.6.2_graphql@16.5.0 - graphql: 16.5.0 + apollo-server-types: 3.7.1_graphql@16.6.0 + graphql: 16.6.0 transitivePeerDependencies: - encoding dev: false - /apollo-server-types/3.6.2_graphql@16.5.0: - resolution: {integrity: sha512-9Z54S7NB+qW1VV+kmiqwU2Q6jxWfX89HlSGCGOo3zrkrperh85LrzABgN9S92+qyeHYd72noMDg2aI039sF3dg==} + /apollo-server-types/3.7.1_graphql@16.6.0: + resolution: {integrity: sha512-aE9RDVplmkaOj/OduNmGa+0a1B5RIWI0o3zC1zLvBTVWMKTpo0ifVf11TyMkLCY+T7cnZqVqwyShziOyC3FyUw==} engines: {node: '>=12.0'} + deprecated: The `apollo-server-types` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. peerDependencies: graphql: ^15.3.0 || ^16.0.0 dependencies: '@apollo/utils.keyvaluecache': 1.0.1 - '@apollo/utils.logger': 1.0.0 - apollo-reporting-protobuf: 3.3.2 + '@apollo/utils.logger': 1.0.1 + apollo-reporting-protobuf: 3.3.3 apollo-server-env: 4.2.1 - graphql: 16.5.0 + graphql: 16.6.0 transitivePeerDependencies: - encoding dev: false - /app-root-path/3.0.0: - resolution: {integrity: sha512-qMcx+Gy2UZynHjOHOIXPNvpf+9cjvk3cWrBBK7zg4gH9+clobJRb9NGzcT7mQTcV/6Gm/1WelUtqxVXnNlrwcw==} + /app-root-path/3.1.0: + resolution: {integrity: sha512-biN3PwB2gUtjaYy/isrU3aNWI5w+fAfvHkSvCKeQGxhmYpwKFUxudR3Yya+KqVRHBmEDYh+/lTozYCFbmzX4nA==} engines: {node: '>= 6.0.0'} dev: false @@ -4700,14 +2697,14 @@ packages: /argparse/2.0.1: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} - /array-includes/3.1.5: - resolution: {integrity: sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==} + /array-includes/3.1.6: + resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 - get-intrinsic: 1.1.2 + es-abstract: 1.20.4 + get-intrinsic: 1.1.3 is-string: 1.0.7 dev: true @@ -4716,13 +2713,13 @@ packages: engines: {node: '>=8'} dev: true - /array.prototype.flat/1.3.0: - resolution: {integrity: sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==} + /array.prototype.flat/1.3.1: + resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 + es-abstract: 1.20.4 es-shim-unscopables: 1.0.0 dev: true @@ -4763,22 +2760,22 @@ packages: /axios/0.27.2: resolution: {integrity: sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==} dependencies: - follow-redirects: 1.15.1 + follow-redirects: 1.15.2 form-data: 4.0.0 transitivePeerDependencies: - debug - /babel-jest/28.1.3_@babel+core@7.18.10: + /babel-jest/28.1.3_@babel+core@7.20.2: resolution: {integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.2 '@jest/transform': 28.1.3 - '@types/babel__core': 7.1.19 + '@types/babel__core': 7.1.20 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 28.1.3_@babel+core@7.18.10 + babel-preset-jest: 28.1.3_@babel+core@7.20.2 chalk: 4.1.2 graceful-fs: 4.2.10 slash: 3.0.0 @@ -4790,10 +2787,10 @@ packages: resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} engines: {node: '>=8'} dependencies: - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 '@istanbuljs/load-nyc-config': 1.1.0 '@istanbuljs/schema': 0.1.3 - istanbul-lib-instrument: 5.2.0 + istanbul-lib-instrument: 5.2.1 test-exclude: 6.0.0 transitivePeerDependencies: - supports-color @@ -4804,40 +2801,40 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@babel/template': 7.18.10 - '@babel/types': 7.18.10 - '@types/babel__core': 7.1.19 - '@types/babel__traverse': 7.17.1 + '@babel/types': 7.20.2 + '@types/babel__core': 7.1.20 + '@types/babel__traverse': 7.18.2 dev: true - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.18.10: + /babel-preset-current-node-syntax/1.0.1_@babel+core@7.20.2: resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.10 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.10 - '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.10 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.18.10 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.10 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.10 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.10 - dev: true - - /babel-preset-jest/28.1.3_@babel+core@7.18.10: + '@babel/core': 7.20.2 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.2 + '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.2 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.20.2 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.2 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.2 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.2 + dev: true + + /babel-preset-jest/28.1.3_@babel+core@7.20.2: resolution: {integrity: sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.2 babel-plugin-jest-hoist: 28.1.3 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.10 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.2 dev: true /backo2/1.0.2: @@ -4847,12 +2844,6 @@ packages: /balanced-match/1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - /base-x/3.0.9: - resolution: {integrity: sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==} - dependencies: - safe-buffer: 5.2.1 - dev: false - /base64-js/1.5.1: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} @@ -4868,14 +2859,6 @@ packages: readable-stream: 3.6.0 dev: true - /blakejs/1.2.1: - resolution: {integrity: sha512-QXUSXI3QVc/gJME0dBpXrag1kbzOqCjCX8/b54ntNyW6sjtoqxqRk3LTmXzaJoh71zMsDCjM+47jS7XiwN/+fQ==} - dev: false - - /bn.js/4.12.0: - resolution: {integrity: sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==} - dev: false - /bn.js/5.2.1: resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==} dev: false @@ -4898,19 +2881,15 @@ packages: dependencies: fill-range: 7.0.1 - /brorand/1.1.0: - resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==} - dev: false - - /browserslist/4.21.3: - resolution: {integrity: sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ==} + /browserslist/4.21.4: + resolution: {integrity: sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001373 - electron-to-chromium: 1.4.210 + caniuse-lite: 1.0.30001431 + electron-to-chromium: 1.4.284 node-releases: 2.0.6 - update-browserslist-db: 1.0.5_browserslist@4.21.3 + update-browserslist-db: 1.0.10_browserslist@4.21.4 dev: true /bs-logger/0.2.6: @@ -4946,10 +2925,9 @@ packages: dependencies: base64-js: 1.5.1 ieee754: 1.2.1 - dev: false - /bufferutil/4.0.6: - resolution: {integrity: sha512-jduaYOYtnio4aIAyc6UbvPCVcgq7nYpVnucyxr6eCYg/Woad9Hf/oxxBRDnGGjPfjUm6j5O/uBWhIu4iLebFaw==} + /bufferutil/4.0.7: + resolution: {integrity: sha512-kukuqc39WOHtdxtw4UScxF/WVnMFVSQVKhtx3AjZJzhd0RGZZldcrfSEbVsWWe6KNH253574cq5F+wpv0G9pJw==} engines: {node: '>=6.14.2'} requiresBuild: true dependencies: @@ -4965,7 +2943,7 @@ packages: resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} dependencies: function-bind: 1.1.1 - get-intrinsic: 1.1.2 + get-intrinsic: 1.1.3 dev: true /callsites/3.1.0: @@ -4976,13 +2954,15 @@ packages: /camelcase/5.3.1: resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} engines: {node: '>=6'} + dev: true /camelcase/6.3.0: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} + dev: true - /caniuse-lite/1.0.30001373: - resolution: {integrity: sha512-pJYArGHrPp3TUqQzFYRmP/lwJlj8RCbVe3Gd3eJQkAV8SAC6b19XS9BjMvRdvaS8RMkaTN8ZhoHP6S1y8zzwEQ==} + /caniuse-lite/1.0.30001431: + resolution: {integrity: sha512-zBUoFU0ZcxpvSt9IU66dXVT/3ctO1cy4y9cscs1szkPlcWb6pasYM144GqrUygUbT+k7cmUCW61cvskjcv0enQ==} dev: true /chalk/2.4.2: @@ -5037,17 +3017,11 @@ packages: engines: {node: '>=6.0'} dev: true - /ci-info/3.3.2: - resolution: {integrity: sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==} + /ci-info/3.6.1: + resolution: {integrity: sha512-up5ggbaDqOqJ4UqLKZ2naVkyqSJQgJi5lwD6b6mM748ysrghDBX0bx/qJTUHzw7zu6Mq4gycviSF5hJnwceD8w==} + engines: {node: '>=8'} dev: true - /cipher-base/1.0.4: - resolution: {integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==} - dependencies: - inherits: 2.0.4 - safe-buffer: 5.2.1 - dev: false - /cjs-module-lexer/1.2.2: resolution: {integrity: sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==} dev: true @@ -5058,7 +3032,7 @@ packages: /class-validator/0.13.2: resolution: {integrity: sha512-yBUcQy07FPlGzUjoLuUfIOXzgynnQPPruyK1Ge2B74k9ROwnle1E+NxLWnUv5OLU8hA/qL5leAE9XnXq3byaBw==} dependencies: - libphonenumber-js: 1.10.11 + libphonenumber-js: 1.10.14 validator: 13.7.0 /cli-cursor/3.1.0: @@ -5106,6 +3080,15 @@ packages: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 7.0.0 + dev: false + + /cliui/8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 /clone/1.0.4: resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} @@ -5200,10 +3183,8 @@ packages: /consola/2.15.3: resolution: {integrity: sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==} - /convert-source-map/1.8.0: - resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==} - dependencies: - safe-buffer: 5.1.2 + /convert-source-map/1.9.0: + resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} dev: true /cookie/0.5.0: @@ -5218,8 +3199,8 @@ packages: /core-util-is/1.0.3: resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} - /cosmiconfig/7.0.1: - resolution: {integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==} + /cosmiconfig/7.1.0: + resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} engines: {node: '>=10'} dependencies: '@types/parse-json': 4.0.0 @@ -5229,16 +3210,6 @@ packages: yaml: 1.10.2 dev: true - /create-hash/1.2.0: - resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==} - dependencies: - cipher-base: 1.0.4 - inherits: 2.0.4 - md5.js: 1.3.5 - ripemd160: 2.0.2 - sha.js: 2.4.11 - dev: false - /create-require/1.1.1: resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} @@ -5263,10 +3234,6 @@ packages: resolution: {integrity: sha512-FAaLDaplstoRsDR8XGYH51znUN0UY7nMc6Z9/fvE8EXGwvJE9hu7W2vHwx1+bd6gCYnln9nLbzxFTrcO9YQDZw==} dev: false - /cuint/0.2.2: - resolution: {integrity: sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==} - dev: false - /d/1.0.1: resolution: {integrity: sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==} dependencies: @@ -5279,8 +3246,8 @@ packages: engines: {node: '>= 12'} dev: false - /date-fns/2.29.1: - resolution: {integrity: sha512-dlLD5rKaKxpFdnjrs+5azHDFOPEu4ANy/LTh04A1DTzMM7qoajmKCBc8pkKRFT41CNzw+4gQh79X5C+Jq27HAw==} + /date-fns/2.29.3: + resolution: {integrity: sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==} engines: {node: '>=0.11'} dev: false @@ -5332,8 +3299,8 @@ packages: resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==} engines: {node: '>=0.10.0'} - /defaults/1.0.3: - resolution: {integrity: sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==} + /defaults/1.0.4: + resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} dependencies: clone: 1.0.4 dev: true @@ -5402,6 +3369,11 @@ packages: engines: {node: '>=12'} dev: false + /dotenv/16.0.3: + resolution: {integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==} + engines: {node: '>=12'} + dev: false + /duplexify/3.7.1: resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==} dependencies: @@ -5426,22 +3398,10 @@ packages: tweetnacl: 1.0.3 dev: false - /electron-to-chromium/1.4.210: - resolution: {integrity: sha512-kSiX4tuyZijV7Cz0MWVmGT8K2siqaOA4Z66K5dCttPPRh0HicOcOAEj1KlC8O8J1aOS/1M8rGofOzksLKaHWcQ==} + /electron-to-chromium/1.4.284: + resolution: {integrity: sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==} dev: true - /elliptic/6.5.4: - resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==} - dependencies: - bn.js: 4.12.0 - brorand: 1.1.0 - hash.js: 1.1.7 - hmac-drbg: 1.0.1 - inherits: 2.0.4 - minimalistic-assert: 1.0.1 - minimalistic-crypto-utils: 1.0.1 - dev: false - /emittery/0.10.2: resolution: {integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==} engines: {node: '>=12'} @@ -5474,21 +3434,21 @@ packages: is-arrayish: 0.2.1 dev: true - /es-abstract/1.20.1: - resolution: {integrity: sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==} + /es-abstract/1.20.4: + resolution: {integrity: sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 es-to-primitive: 1.2.1 function-bind: 1.1.1 function.prototype.name: 1.1.5 - get-intrinsic: 1.1.2 + get-intrinsic: 1.1.3 get-symbol-description: 1.0.0 has: 1.0.3 has-property-descriptors: 1.0.0 has-symbols: 1.0.3 internal-slot: 1.0.3 - is-callable: 1.2.4 + is-callable: 1.2.7 is-negative-zero: 2.0.2 is-regex: 1.1.4 is-shared-array-buffer: 1.0.2 @@ -5496,10 +3456,11 @@ packages: is-weakref: 1.0.2 object-inspect: 1.12.2 object-keys: 1.1.1 - object.assign: 4.1.2 + object.assign: 4.1.4 regexp.prototype.flags: 1.4.3 - string.prototype.trimend: 1.0.5 - string.prototype.trimstart: 1.0.5 + safe-regex-test: 1.0.0 + string.prototype.trimend: 1.0.6 + string.prototype.trimstart: 1.0.6 unbox-primitive: 1.0.2 dev: true @@ -5517,7 +3478,7 @@ packages: resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} engines: {node: '>= 0.4'} dependencies: - is-callable: 1.2.4 + is-callable: 1.2.7 is-date-object: 1.0.5 is-symbol: 1.0.4 dev: true @@ -5544,16 +3505,7 @@ packages: resolution: {integrity: sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==} dependencies: d: 1.0.1 - ext: 1.6.0 - dev: false - - /es6-weak-map/2.0.3: - resolution: {integrity: sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==} - dependencies: - d: 1.0.1 - es5-ext: 0.10.62 - es6-iterator: 2.0.3 - es6-symbol: 3.1.3 + ext: 1.7.0 dev: false /escalade/3.1.1: @@ -5575,13 +3527,13 @@ packages: engines: {node: '>=10'} dev: true - /eslint-config-prettier/8.5.0_eslint@8.21.0: + /eslint-config-prettier/8.5.0_eslint@8.27.0: resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==} hasBin: true peerDependencies: eslint: '>=7.0.0' dependencies: - eslint: 8.21.0 + eslint: 8.27.0 dev: true /eslint-import-resolver-node/0.3.6: @@ -5593,17 +3545,20 @@ packages: - supports-color dev: true - /eslint-module-utils/2.7.3_gjpiwexkhexdr4bbgrtzf23bg4: - resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==} + /eslint-module-utils/2.7.4_7n62batgpjg7oa6ssbsyzoyo34: + resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} 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: @@ -5611,15 +3566,15 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.32.0_qugx7qdu5zevzvxaiqyxfiwquq + '@typescript-eslint/parser': 5.43.0_2uhzae5rel2qyw7fhfmxrmdt3q debug: 3.2.7 + eslint: 8.27.0 eslint-import-resolver-node: 0.3.6 - find-up: 2.1.0 transitivePeerDependencies: - supports-color dev: true - /eslint-plugin-import/2.26.0_wuikv5nqgdfyng42xxm7lklfmi: + /eslint-plugin-import/2.26.0_wbsj7pk5g7hogwvhsif6xntns4: resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} engines: {node: '>=4'} peerDependencies: @@ -5629,19 +3584,19 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.32.0_qugx7qdu5zevzvxaiqyxfiwquq - array-includes: 3.1.5 - array.prototype.flat: 1.3.0 + '@typescript-eslint/parser': 5.43.0_2uhzae5rel2qyw7fhfmxrmdt3q + array-includes: 3.1.6 + array.prototype.flat: 1.3.1 debug: 2.6.9 doctrine: 2.1.0 - eslint: 8.21.0 + eslint: 8.27.0 eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.3_gjpiwexkhexdr4bbgrtzf23bg4 + eslint-module-utils: 2.7.4_7n62batgpjg7oa6ssbsyzoyo34 has: 1.0.3 - is-core-module: 2.9.0 + is-core-module: 2.11.0 is-glob: 4.0.3 minimatch: 3.1.2 - object.values: 1.1.5 + object.values: 1.1.6 resolve: 1.22.1 tsconfig-paths: 3.14.1 transitivePeerDependencies: @@ -5650,7 +3605,7 @@ packages: - supports-color dev: true - /eslint-plugin-prettier/4.2.1_h62lvancfh4b7r6zn2dgodrh5e: + /eslint-plugin-prettier/4.2.1_v7o5sx5x3wbs57ifz6wc4f76we: resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} engines: {node: '>=12.0.0'} peerDependencies: @@ -5661,8 +3616,8 @@ packages: eslint-config-prettier: optional: true dependencies: - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 + eslint: 8.27.0 + eslint-config-prettier: 8.5.0_eslint@8.27.0 prettier: 2.7.1 prettier-linter-helpers: 1.0.0 dev: true @@ -5683,13 +3638,13 @@ packages: estraverse: 5.3.0 dev: true - /eslint-utils/3.0.0_eslint@8.21.0: + /eslint-utils/3.0.0_eslint@8.27.0: resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} peerDependencies: eslint: '>=5' dependencies: - eslint: 8.21.0 + eslint: 8.27.0 eslint-visitor-keys: 2.1.0 dev: true @@ -5703,14 +3658,15 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /eslint/8.21.0: - resolution: {integrity: sha512-/XJ1+Qurf1T9G2M5IHrsjp+xrGT73RZf23xA1z5wB1ZzzEAWSZKvRwhWxTFp1rvkvCfwcvAUNAP31bhKTTGfDA==} + /eslint/8.27.0: + resolution: {integrity: sha512-0y1bfG2ho7mty+SiILVf9PfuRA49ek4Nc60Wmmu62QlobNR+CeXa4xXIJgcuwSQgZiWaPH+5BDsctpIW0PR/wQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: - '@eslint/eslintrc': 1.3.0 - '@humanwhocodes/config-array': 0.10.4 - '@humanwhocodes/gitignore-to-minimatch': 1.0.2 + '@eslint/eslintrc': 1.3.3 + '@humanwhocodes/config-array': 0.11.7 + '@humanwhocodes/module-importer': 1.0.1 + '@nodelib/fs.walk': 1.2.8 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 @@ -5718,23 +3674,23 @@ packages: doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.1.1 - eslint-utils: 3.0.0_eslint@8.21.0 + eslint-utils: 3.0.0_eslint@8.27.0 eslint-visitor-keys: 3.3.0 - espree: 9.3.3 + espree: 9.4.1 esquery: 1.4.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 file-entry-cache: 6.0.1 find-up: 5.0.0 - functional-red-black-tree: 1.0.1 glob-parent: 6.0.2 - globals: 13.17.0 - globby: 11.1.0 + globals: 13.18.0 grapheme-splitter: 1.0.4 ignore: 5.2.0 import-fresh: 3.3.0 imurmurhash: 0.1.4 is-glob: 4.0.3 + is-path-inside: 3.0.3 + js-sdsl: 4.1.5 js-yaml: 4.1.0 json-stable-stringify-without-jsonify: 1.0.1 levn: 0.4.1 @@ -5746,17 +3702,16 @@ packages: strip-ansi: 6.0.1 strip-json-comments: 3.1.1 text-table: 0.2.0 - v8-compile-cache: 2.3.0 transitivePeerDependencies: - supports-color dev: true - /espree/9.3.3: - resolution: {integrity: sha512-ORs1Rt/uQTqUKjDdGCyrtYxbazf5umATSf/K4qxjmZHORR6HJk+2s/2Pqe+Kk49HHINC/xNIrGfgh8sZcll0ng==} + /espree/9.4.1: + resolution: {integrity: sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - acorn: 8.8.0 - acorn-jsx: 5.3.2_acorn@8.8.0 + acorn: 8.8.1 + acorn-jsx: 5.3.2_acorn@8.8.1 eslint-visitor-keys: 3.3.0 dev: true @@ -5795,13 +3750,6 @@ packages: engines: {node: '>=0.10.0'} dev: true - /event-emitter/0.3.5: - resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==} - dependencies: - d: 1.0.1 - es5-ext: 0.10.62 - dev: false - /event-target-shim/5.0.1: resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} engines: {node: '>=6'} @@ -5817,7 +3765,6 @@ packages: /events/3.3.0: resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} engines: {node: '>=0.8.x'} - dev: true /execa/4.1.0: resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} @@ -5865,10 +3812,10 @@ packages: jest-util: 28.1.3 dev: true - /ext/1.6.0: - resolution: {integrity: sha512-sdBImtzkq2HpkdRLtlLWDa6w4DX22ijZLKx8BMPUuKe1c5lbN6xwQDQCxSfxBQnHZ13ls/FH0MQZx/q/gr6FQg==} + /ext/1.7.0: + resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==} dependencies: - type: 2.6.1 + type: 2.7.2 dev: false /external-editor/3.1.0: @@ -5880,8 +3827,8 @@ packages: tmp: 0.0.33 dev: true - /fast-copy/2.1.3: - resolution: {integrity: sha512-LDzYKNTHhD+XOp8wGMuCkY4eTxFZOOycmpwLBiuF3r3OjOmZnURRD8t2dUAbmKuXGbo/MGggwbSjcBdp8QT0+g==} + /fast-copy/2.1.7: + resolution: {integrity: sha512-ozrGwyuCTAy7YgFCua8rmqmytECYk/JYAMXcswOcm0qvGoE3tPb7ivBeIHTOK2DiapBhDZgacIhzhQIKU5TCfA==} dev: true /fast-decode-uri-component/1.0.1: @@ -5895,8 +3842,8 @@ packages: resolution: {integrity: sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==} dev: true - /fast-glob/3.2.11: - resolution: {integrity: sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==} + /fast-glob/3.2.12: + resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} engines: {node: '>=8.6.0'} dependencies: '@nodelib/fs.stat': 2.0.5 @@ -5922,18 +3869,14 @@ packages: resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} dev: true - /fast-redact/3.1.1: - resolution: {integrity: sha512-odVmjC8x8jNeMZ3C+rPMESzXVSEU8tSWSHv9HFxP2mm89G/1WwqhrerJDQm9Zus8X6aoRgQDThKqptdNA6bt+A==} + /fast-redact/3.1.2: + resolution: {integrity: sha512-+0em+Iya9fKGfEQGcd62Yv6onjBmmhV1uh86XVfOU8VwAe6kaFdQCWI9s0/Nnugx5Vd9tdbZ7e6gE2tR9dzXdw==} engines: {node: '>=6'} dev: false /fast-safe-stringify/2.1.1: resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==} - /fast-sha256/1.3.0: - resolution: {integrity: sha512-n11RGP/lrWEFI/bWdygLxhI+pVeo1ZYIVwvvPkW7azl/rOy+F3HYRZ2K5zeE9mmkhQppyv9sQFx0JM9UabnpPQ==} - dev: false - /fast-url-parser/1.1.3: resolution: {integrity: sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==} dependencies: @@ -5987,14 +3930,14 @@ packages: proxy-addr: 2.0.7 rfdc: 1.3.0 secure-json-parse: 2.5.0 - semver: 7.3.7 + semver: 7.3.8 tiny-lru: 8.0.2 transitivePeerDependencies: - supports-color dev: false - /fastify/3.29.1: - resolution: {integrity: sha512-UhGmh0/J0YQetqULYfv/utvut0R6ICQvO6Oh81JvG75UbjVgueqoE6EPChB3gR5aF3dVKpT/qFTgc7zvpGTYNg==} + /fastify/3.29.3: + resolution: {integrity: sha512-PA5mGkVnAnhysmyAnXMN9gdOlcfIxyGsfj9C7/a3sSfe5mC38euEGRLEB0T7ygbi7TIZ9yIZ/FLiERpwZeWriA==} dependencies: '@fastify/ajv-compiler': 1.1.0 '@fastify/error': 2.0.0 @@ -6009,7 +3952,7 @@ packages: proxy-addr: 2.0.7 rfdc: 1.3.0 secure-json-parse: 2.5.0 - semver: 7.3.7 + semver: 7.3.8 tiny-lru: 8.0.2 transitivePeerDependencies: - supports-color @@ -6020,8 +3963,8 @@ packages: dependencies: reusify: 1.0.4 - /fb-watchman/2.0.1: - resolution: {integrity: sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==} + /fb-watchman/2.0.2: + resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} dependencies: bser: 2.1.1 dev: true @@ -6064,13 +4007,6 @@ packages: semver-store: 0.3.0 dev: false - /find-up/2.1.0: - resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} - engines: {node: '>=4'} - dependencies: - locate-path: 2.0.0 - dev: true - /find-up/4.1.0: resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} engines: {node: '>=8'} @@ -6091,7 +4027,7 @@ packages: resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} engines: {node: ^10.12.0 || >=12.0.0} dependencies: - flatted: 3.2.6 + flatted: 3.2.7 rimraf: 3.0.2 dev: true @@ -6099,12 +4035,12 @@ packages: resolution: {integrity: sha512-4zPxDyhCyiN2wIAtSLI6gc82/EjqZc1onI4Mz/l0pWrAlsSfYH/2ZIcU+e3oA2wDwbzIWNKwa23F8rh6+DRWkw==} dev: false - /flatted/3.2.6: - resolution: {integrity: sha512-0sQoMh9s0BYsm+12Huy/rkKxVu4R1+r96YX5cG44rHV0pQ6iC3Q+mkoMFaGWObMFYQxCVT+ssG1ksneA2MI9KQ==} + /flatted/3.2.7: + resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} dev: true - /follow-redirects/1.15.1: - resolution: {integrity: sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==} + /follow-redirects/1.15.2: + resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==} engines: {node: '>=4.0'} peerDependencies: debug: '*' @@ -6126,13 +4062,13 @@ packages: '@babel/code-frame': 7.18.6 chalk: 4.1.2 chokidar: 3.5.3 - cosmiconfig: 7.0.1 + cosmiconfig: 7.1.0 deepmerge: 4.2.2 fs-extra: 10.1.0 - memfs: 3.4.7 + memfs: 3.4.11 minimatch: 3.1.2 schema-utils: 3.1.1 - semver: 7.3.7 + semver: 7.3.8 tapable: 2.2.1 typescript: 4.7.4 webpack: 5.73.0 @@ -6216,14 +4152,10 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 + es-abstract: 1.20.4 functions-have-names: 1.2.3 dev: true - /functional-red-black-tree/1.0.1: - resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} - dev: true - /functions-have-names/1.2.3: resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} dev: true @@ -6237,8 +4169,8 @@ packages: resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} engines: {node: 6.* || 8.* || >= 10.*} - /get-intrinsic/1.1.2: - resolution: {integrity: sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==} + /get-intrinsic/1.1.3: + resolution: {integrity: sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==} dependencies: function-bind: 1.1.1 has: 1.0.3 @@ -6267,7 +4199,7 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - get-intrinsic: 1.1.2 + get-intrinsic: 1.1.3 dev: true /glob-parent/5.1.2: @@ -6313,8 +4245,8 @@ packages: engines: {node: '>=4'} dev: true - /globals/13.17.0: - resolution: {integrity: sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==} + /globals/13.18.0: + resolution: {integrity: sha512-/mR4KI8Ps2spmoc0Ulu9L7agOF0du1CZNQ3dke8yItYlyKNmGrkONemBbd6V8UTc1Wgcqn21t3WYB7dbRmh6/A==} engines: {node: '>=8'} dependencies: type-fest: 0.20.2 @@ -6326,7 +4258,7 @@ packages: dependencies: array-union: 2.1.0 dir-glob: 3.0.1 - fast-glob: 3.2.11 + fast-glob: 3.2.12 ignore: 5.2.0 merge2: 1.4.1 slash: 3.0.0 @@ -6340,35 +4272,35 @@ packages: resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} dev: true - /graphql-tag/2.12.6_graphql@16.5.0: + /graphql-tag/2.12.6_graphql@16.6.0: resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==} engines: {node: '>=10'} peerDependencies: graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - graphql: 16.5.0 - tslib: 2.4.0 + graphql: 16.6.0 + tslib: 2.4.1 dev: false - /graphql-type-json/0.3.2_graphql@16.5.0: + /graphql-type-json/0.3.2_graphql@16.6.0: resolution: {integrity: sha512-J+vjof74oMlCWXSvt0DOf2APEdZOCdubEvGDUAlqH//VBYcOYsGgRW7Xzorr44LvkjiuvecWc8fChxuZZbChtg==} peerDependencies: graphql: '>=0.8.0' dependencies: - graphql: 16.5.0 + graphql: 16.6.0 dev: false - /graphql-ws/5.5.5_graphql@16.5.0: + /graphql-ws/5.5.5_graphql@16.6.0: resolution: {integrity: sha512-hvyIS71vs4Tu/yUYHPvGXsTgo0t3arU820+lT5VjZS2go0ewp2LqyCgxEN56CzOG7Iys52eRhHBiD1gGRdiQtw==} engines: {node: '>=10'} peerDependencies: graphql: '>=0.11 <=16' dependencies: - graphql: 16.5.0 + graphql: 16.6.0 dev: false - /graphql/16.5.0: - resolution: {integrity: sha512-qbHgh8Ix+j/qY+a/ZcJnFQ+j8ezakqPiHwPiZhV/3PgGlgf96QMBB5/f2rkiC9sgLoy/xvT6TSiaf2nTHJh5iA==} + /graphql/16.6.0: + resolution: {integrity: sha512-KPIBPDlW7NxrbT/eh4qPXz5FiFdL5UbaA0XUNz2Rp3Z3hqBSkbj0GVjwFDztsWVauZUWsbKHgMg++sk8UX0bkw==} engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} dev: false @@ -6388,7 +4320,7 @@ packages: /has-property-descriptors/1.0.0: resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} dependencies: - get-intrinsic: 1.1.2 + get-intrinsic: 1.1.3 dev: true /has-symbols/1.0.3: @@ -6410,29 +4342,13 @@ packages: function-bind: 1.1.1 dev: true - /hash-base/3.1.0: - resolution: {integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==} - engines: {node: '>=4'} - dependencies: - inherits: 2.0.4 - readable-stream: 3.6.0 - safe-buffer: 5.2.1 - dev: false - - /hash.js/1.1.7: - resolution: {integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==} - dependencies: - inherits: 2.0.4 - minimalistic-assert: 1.0.1 - dev: false - /helmet/5.1.1: resolution: {integrity: sha512-/yX0oVZBggA9cLJh8aw3PPCfedBnbd7J2aowjzsaWwZh7/UFY0nccn/aHAggIgWUFfnykX8GKd3a1pSbrmlcVQ==} engines: {node: '>=12.0.0'} dev: false - /help-me/4.0.1: - resolution: {integrity: sha512-PLv01Z+OhEPKj2QPYB4kjoCUkopYNPUK3EROlaPIf5bib752fZ+VCvGDAoA+FXo/OwCyLEA4D2e0mX8+Zhcplw==} + /help-me/4.1.0: + resolution: {integrity: sha512-5HMrkOks2j8Fpu2j5nTLhrBhT7VwHwELpqnSnx802ckofys5MO2SkLpgSz3dgNFHV7IYFX2igm5CM75SmuYidw==} dependencies: glob: 8.0.3 readable-stream: 3.6.0 @@ -6447,14 +4363,6 @@ packages: resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==} dev: false - /hmac-drbg/1.0.1: - resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==} - dependencies: - hash.js: 1.1.7 - minimalistic-assert: 1.0.1 - minimalistic-crypto-utils: 1.0.1 - dev: false - /html-escaper/2.0.2: resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} dev: true @@ -6548,7 +4456,7 @@ packages: mute-stream: 0.0.8 ora: 5.4.1 run-async: 2.4.1 - rxjs: 7.5.6 + rxjs: 7.5.7 string-width: 4.2.3 strip-ansi: 6.0.1 through: 2.3.8 @@ -6558,7 +4466,7 @@ packages: resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==} engines: {node: '>= 0.4'} dependencies: - get-intrinsic: 1.1.2 + get-intrinsic: 1.1.3 has: 1.0.3 side-channel: 1.0.4 dev: true @@ -6576,11 +4484,6 @@ packages: p-is-promise: 3.0.0 dev: false - /ip-regex/4.3.0: - resolution: {integrity: sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==} - engines: {node: '>=8'} - dev: false - /ipaddr.js/1.9.1: resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} engines: {node: '>= 0.10'} @@ -6610,13 +4513,13 @@ packages: has-tostringtag: 1.0.0 dev: true - /is-callable/1.2.4: - resolution: {integrity: sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==} + /is-callable/1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} engines: {node: '>= 0.4'} dev: true - /is-core-module/2.9.0: - resolution: {integrity: sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==} + /is-core-module/2.11.0: + resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==} dependencies: has: 1.0.3 dev: true @@ -6677,9 +4580,10 @@ packages: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} engines: {node: '>=0.12.0'} - /is-promise/2.2.2: - resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} - dev: false + /is-path-inside/3.0.3: + resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} + engines: {node: '>=8'} + dev: true /is-regex/1.1.4: resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} @@ -6746,12 +4650,12 @@ packages: engines: {node: '>=8'} dev: true - /istanbul-lib-instrument/5.2.0: - resolution: {integrity: sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==} + /istanbul-lib-instrument/5.2.1: + resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.18.10 - '@babel/parser': 7.18.10 + '@babel/core': 7.20.2 + '@babel/parser': 7.20.3 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 semver: 6.3.0 @@ -6811,7 +4715,7 @@ packages: '@jest/expect': 28.1.3 '@jest/test-result': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 16.11.47 + '@types/node': 16.18.3 chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 @@ -6825,12 +4729,12 @@ packages: p-limit: 3.1.0 pretty-format: 28.1.3 slash: 3.0.0 - stack-utils: 2.0.5 + stack-utils: 2.0.6 transitivePeerDependencies: - supports-color dev: true - /jest-cli/28.1.3_pqtjtaupojlaguyui6z2iois64: + /jest-cli/28.1.3_dnlfjp7n5lpfgnj4digwzn5fhe: resolution: {integrity: sha512-roY3kvrv57Azn1yPgdTebPAXvdR2xfezaKKYzVxZ6It/5NCxzJym6tUI5P1zkdWhfUYkxEI9uZWcQdaFLo8mJQ==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} hasBin: true @@ -6847,18 +4751,18 @@ packages: exit: 0.1.2 graceful-fs: 4.2.10 import-local: 3.1.0 - jest-config: 28.1.3_pqtjtaupojlaguyui6z2iois64 + jest-config: 28.1.3_dnlfjp7n5lpfgnj4digwzn5fhe jest-util: 28.1.3 jest-validate: 28.1.3 prompts: 2.4.2 - yargs: 17.5.1 + yargs: 17.6.2 transitivePeerDependencies: - '@types/node' - supports-color - ts-node dev: true - /jest-config/28.1.3_pqtjtaupojlaguyui6z2iois64: + /jest-config/28.1.3_dnlfjp7n5lpfgnj4digwzn5fhe: resolution: {integrity: sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: @@ -6870,13 +4774,13 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.2 '@jest/test-sequencer': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 16.11.47 - babel-jest: 28.1.3_@babel+core@7.18.10 + '@types/node': 16.18.3 + babel-jest: 28.1.3_@babel+core@7.20.2 chalk: 4.1.2 - ci-info: 3.3.2 + ci-info: 3.6.1 deepmerge: 4.2.2 glob: 7.2.3 graceful-fs: 4.2.10 @@ -6893,7 +4797,7 @@ packages: pretty-format: 28.1.3 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.1_ow5yu25silzxcp7pmv7jv4j54m + ts-node: 10.9.1_jyxu4bw6aqgjw6ykt6t6hx4o6e transitivePeerDependencies: - supports-color dev: true @@ -6933,7 +4837,7 @@ packages: '@jest/environment': 28.1.3 '@jest/fake-timers': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 16.11.47 + '@types/node': 16.18.3 jest-mock: 28.1.3 jest-util: 28.1.3 dev: true @@ -6949,9 +4853,9 @@ packages: dependencies: '@jest/types': 28.1.3 '@types/graceful-fs': 4.1.5 - '@types/node': 16.11.47 + '@types/node': 16.18.3 anymatch: 3.1.2 - fb-watchman: 2.0.1 + fb-watchman: 2.0.2 graceful-fs: 4.2.10 jest-regex-util: 28.0.2 jest-util: 28.1.3 @@ -6992,7 +4896,7 @@ packages: micromatch: 4.0.5 pretty-format: 28.1.3 slash: 3.0.0 - stack-utils: 2.0.5 + stack-utils: 2.0.6 dev: true /jest-mock/28.1.3: @@ -7000,11 +4904,11 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@jest/types': 28.1.3 - '@types/node': 16.11.47 + '@types/node': 16.18.3 dev: true - /jest-pnp-resolver/1.2.2_jest-resolve@28.1.3: - resolution: {integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==} + /jest-pnp-resolver/1.2.3_jest-resolve@28.1.3: + resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} engines: {node: '>=6'} peerDependencies: jest-resolve: '*' @@ -7037,7 +4941,7 @@ packages: chalk: 4.1.2 graceful-fs: 4.2.10 jest-haste-map: 28.1.3 - jest-pnp-resolver: 1.2.2_jest-resolve@28.1.3 + jest-pnp-resolver: 1.2.3_jest-resolve@28.1.3 jest-util: 28.1.3 jest-validate: 28.1.3 resolve: 1.22.1 @@ -7054,7 +4958,7 @@ packages: '@jest/test-result': 28.1.3 '@jest/transform': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 16.11.47 + '@types/node': 16.18.3 chalk: 4.1.2 emittery: 0.10.2 graceful-fs: 4.2.10 @@ -7108,17 +5012,17 @@ packages: resolution: {integrity: sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@babel/core': 7.18.10 - '@babel/generator': 7.18.10 - '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.18.10 - '@babel/traverse': 7.18.10 - '@babel/types': 7.18.10 + '@babel/core': 7.20.2 + '@babel/generator': 7.20.4 + '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.2 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.2 '@jest/expect-utils': 28.1.3 '@jest/transform': 28.1.3 '@jest/types': 28.1.3 - '@types/babel__traverse': 7.17.1 - '@types/prettier': 2.6.4 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.10 + '@types/babel__traverse': 7.18.2 + '@types/prettier': 2.7.1 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.2 chalk: 4.1.2 expect: 28.1.3 graceful-fs: 4.2.10 @@ -7130,7 +5034,7 @@ packages: jest-util: 28.1.3 natural-compare: 1.4.0 pretty-format: 28.1.3 - semver: 7.3.7 + semver: 7.3.8 transitivePeerDependencies: - supports-color dev: true @@ -7140,9 +5044,9 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@jest/types': 28.1.3 - '@types/node': 16.11.47 + '@types/node': 16.18.3 chalk: 4.1.2 - ci-info: 3.3.2 + ci-info: 3.6.1 graceful-fs: 4.2.10 picomatch: 2.3.1 dev: true @@ -7165,7 +5069,7 @@ packages: dependencies: '@jest/test-result': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 16.11.47 + '@types/node': 16.18.3 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.10.2 @@ -7177,7 +5081,7 @@ packages: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 16.11.47 + '@types/node': 16.18.3 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true @@ -7186,12 +5090,12 @@ packages: resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@types/node': 16.11.47 + '@types/node': 16.18.3 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true - /jest/28.1.3_pqtjtaupojlaguyui6z2iois64: + /jest/28.1.3_dnlfjp7n5lpfgnj4digwzn5fhe: resolution: {integrity: sha512-N4GT5on8UkZgH0O5LUavMRV1EDEhNTL0KEfRmDIeZHSV7p2XgLoY9t9VDUgL6o+yfdgYHVxuz81G8oB9VG5uyA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} hasBin: true @@ -7204,7 +5108,7 @@ packages: '@jest/core': 28.1.3_ts-node@10.9.1 '@jest/types': 28.1.3 import-local: 3.1.0 - jest-cli: 28.1.3_pqtjtaupojlaguyui6z2iois64 + jest-cli: 28.1.3_dnlfjp7n5lpfgnj4digwzn5fhe transitivePeerDependencies: - '@types/node' - supports-color @@ -7216,9 +5120,9 @@ packages: engines: {node: '>=10'} dev: true - /js-sha3/0.8.0: - resolution: {integrity: sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==} - dev: false + /js-sdsl/4.1.5: + resolution: {integrity: sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==} + dev: true /js-tokens/4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} @@ -7266,7 +5170,7 @@ packages: resolution: {integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==} hasBin: true dependencies: - minimist: 1.2.6 + minimist: 1.2.7 dev: true /json5/2.2.1: @@ -7305,13 +5209,13 @@ packages: type-check: 0.4.0 dev: true - /libphonenumber-js/1.10.11: - resolution: {integrity: sha512-ehoihx4HpRXO6FH/uJ0EnaEV4dVU+FDny+jv0S6k9JPyPsAIr0eXDAFvGRMBKE1daCtyHAaFSKCiuCxrOjVAzQ==} + /libphonenumber-js/1.10.14: + resolution: {integrity: sha512-McGS7GV/WjJ2KjfOGhJU1oJn29RYeo7Q+RpANRbUNMQ9gj5XArpbjurSuyYPTejFwbaUojstQ4XyWCrAzGOUXw==} /light-my-request/4.12.0: resolution: {integrity: sha512-0y+9VIfJEsPVzK5ArSIJ8Dkxp8QMP7/aCuxCUtG/tr9a2NoOf/snATE/OUc05XUplJCEnRh6gTkH7xh9POt1DQ==} dependencies: - ajv: 8.11.0 + ajv: 8.11.2 cookie: 0.5.0 process-warning: 1.0.0 set-cookie-parser: 2.5.1 @@ -7320,7 +5224,7 @@ packages: /light-my-request/5.0.0: resolution: {integrity: sha512-0OPHKV+uHgBOnRokzL1LqeMCnSAo5l/rZS7kyB6G1I8qxGCvhXpq1M6WK565Y9A5CSn50l3DVaHnJ5FCdpguZQ==} dependencies: - ajv: 8.11.0 + ajv: 8.11.2 cookie: 0.5.0 process-warning: 1.0.0 set-cookie-parser: 2.5.1 @@ -7335,14 +5239,6 @@ packages: engines: {node: '>=6.11.5'} dev: true - /locate-path/2.0.0: - resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} - engines: {node: '>=4'} - dependencies: - p-locate: 2.0.0 - path-exists: 3.0.0 - dev: true - /locate-path/5.0.0: resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} engines: {node: '>=8'} @@ -7357,16 +5253,13 @@ packages: p-locate: 5.0.0 dev: true - /lodash.camelcase/4.3.0: - resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} - dev: false - /lodash.memoize/4.1.2: resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} dev: true /lodash.merge/4.6.2: resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + dev: true /lodash.omit/4.5.0: resolution: {integrity: sha512-XeqSp49hNGmlkj2EJlfrQFIzQ6lXdNro9sddtQzcJY8QaoC2GO0DT7xaIokHeyM+mIT0mPMlPvkYzg2xCuHdZg==} @@ -7387,8 +5280,8 @@ packages: is-unicode-supported: 0.1.0 dev: true - /loglevel/1.8.0: - resolution: {integrity: sha512-G6A/nJLRgWOuuwdNuA6koovfEV1YpqqAG4pRUlFaz3jj2QNZ8M4vBqnVA+HBTmU/AMNUtlOsMmSpF6NyOjztbA==} + /loglevel/1.8.1: + resolution: {integrity: sha512-tCRIJM51SHjAayKwC+QAg8hT8vg6z7GSgLJKGvzuPb1Wc+hLzqtuVLxp6/HzSPOozuK+8ErAhy7U/sVzw8Dgfg==} engines: {node: '>= 0.6.0'} dev: false @@ -7409,17 +5302,11 @@ packages: dependencies: yallist: 4.0.0 - /lru-cache/7.13.2: - resolution: {integrity: sha512-VJL3nIpA79TodY/ctmZEfhASgqekbT574/c4j3jn4bKXbSCnTTCH/KltZyvL2GlV+tGSMtsWyem8DCX7qKTMBA==} + /lru-cache/7.14.1: + resolution: {integrity: sha512-ysxwsnTKdAx96aTRdhDOCQfDgbHnt8SK0KY8SEjO0wHinhWOFTESbjVCMPbU1uGXg/ch4lifqx0wfjOawU2+WA==} engines: {node: '>=12'} dev: false - /lru-queue/0.1.0: - resolution: {integrity: sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==} - dependencies: - es5-ext: 0.10.62 - dev: false - /macos-release/2.5.0: resolution: {integrity: sha512-EIgv+QZ9r+814gjJj0Bt5vSLJLzswGmSUbUpbi9AIr/fsN2IWFBl2NucV9PAiek+U1STK468tEkxmVYUtuAN3g==} engines: {node: '>=6'} @@ -7447,34 +5334,13 @@ packages: tmpl: 1.0.5 dev: true - /md5.js/1.3.5: - resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==} - dependencies: - hash-base: 3.1.0 - inherits: 2.0.4 - safe-buffer: 5.2.1 - dev: false - - /memfs/3.4.7: - resolution: {integrity: sha512-ygaiUSNalBX85388uskeCyhSAoOSgzBbtVCr9jA2RROssFL9Q19/ZXFqS+2Th2sr1ewNIWgFdLzLC3Yl1Zv+lw==} + /memfs/3.4.11: + resolution: {integrity: sha512-GvsCITGAyDCxxsJ+X6prJexFQEhOCJaIlUbsAvjzSI5o5O7j2dle3jWvz5Z5aOdpOxW6ol3vI1+0ut+641F1+w==} engines: {node: '>= 4.0.0'} dependencies: fs-monkey: 1.0.3 dev: true - /memoizee/0.4.15: - resolution: {integrity: sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ==} - dependencies: - d: 1.0.1 - es5-ext: 0.10.62 - es6-weak-map: 2.0.3 - event-emitter: 0.3.5 - is-promise: 2.2.2 - lru-queue: 0.1.0 - next-tick: 1.1.0 - timers-ext: 0.1.7 - dev: false - /merge-stream/2.0.0: resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} dev: true @@ -7488,11 +5354,6 @@ packages: engines: {node: '>= 0.6'} dev: true - /micro-base/0.9.0: - resolution: {integrity: sha512-4+tOMKidYT5nQ6/UNmYrGVO5PMcnJdfuR4NC8HK8s2H61B4itOhA9yrsjBdqGV7ecdtej36x3YSIfPLRmPrspg==} - deprecated: Switch to @scure/base for audited version of the lib & updates - dev: false - /micromatch/4.0.5: resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} engines: {node: '>=8.6'} @@ -7530,14 +5391,6 @@ packages: engines: {node: '>=6'} dev: true - /minimalistic-assert/1.0.1: - resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} - dev: false - - /minimalistic-crypto-utils/1.0.1: - resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==} - dev: false - /minimatch/3.1.2: resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} dependencies: @@ -7554,6 +5407,10 @@ packages: resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==} dev: true + /minimist/1.2.7: + resolution: {integrity: sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==} + dev: true + /minipass/3.3.4: resolution: {integrity: sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==} engines: {node: '>=8'} @@ -7572,19 +5429,6 @@ packages: engines: {node: '>= 8'} dev: false - /moment/2.29.4: - resolution: {integrity: sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==} - dev: false - - /moonbeam-types-bundle/2.0.7: - resolution: {integrity: sha512-YU/q/fS1jj2bK7+egeN7fQ5l5UqWQtRBZWekywQyskbpSNs/IlBdgo3uZixC5OiB4Vmtk+XXoIlHifgHgoFrnA==} - dependencies: - '@polkadot/api': 8.14.1 - typescript: 4.7.4 - transitivePeerDependencies: - - supports-color - dev: false - /ms/2.0.0: resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} @@ -7607,6 +5451,10 @@ packages: thenify-all: 1.6.0 dev: false + /natural-compare-lite/1.4.0: + resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} + dev: true + /natural-compare/1.4.0: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} dev: true @@ -7620,7 +5468,7 @@ packages: resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} dev: true - /nestjs-pino/3.1.1_isil7xagyf5s32dueim4ljgsga: + /nestjs-pino/3.1.1_ar6wzga4b223sd7tvh6kksb5h4: resolution: {integrity: sha512-T7ajfqYTSHKrirzrElQJ3EWO/OZF5fFFkgaRvD+I7F5YY2hU3X295E/CnTkgpHZozL0s/3Ud4OtTZlT3NisTBw==} engines: {node: '>= 14'} requiresBuild: true @@ -7628,8 +5476,8 @@ packages: '@nestjs/common': ^8.0.0 || ^9.0.0 pino-http: ^6.4.0 || ^7.0.0 || ^8.0.0 dependencies: - '@nestjs/common': 8.4.7_allg6cauirbqzgqcmexy2wdnoq - pino-http: 8.2.0 + '@nestjs/common': 8.4.7_x6yqyveuahcdef4z4mxykmuv6a + pino-http: 8.2.1 dev: false /next-tick/1.1.0: @@ -7648,6 +5496,10 @@ packages: - supports-color dev: false + /node-abort-controller/3.0.1: + resolution: {integrity: sha512-/ujIVxthRs+7q6hsdjHMaj8hRG9NuWmwrz+JdRwZ14jdFoKSkm+vDsCbF9PLpnSqjaWQJuTmVtcWHNLr+vrOFw==} + dev: false + /node-domexception/1.0.0: resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} engines: {node: '>=10.5.0'} @@ -7670,8 +5522,8 @@ packages: dependencies: whatwg-url: 5.0.0 - /node-fetch/3.2.10: - resolution: {integrity: sha512-MhuzNwdURnZ1Cp4XTazr69K0BTizsBroX7Zx3UgDSVcZYKF/6p0CBe4EUb/hLqmzVhl0UpYfgRljQ4yxE+iCxA==} + /node-fetch/3.3.0: + resolution: {integrity: sha512-BKwRP/O0UvoMKp7GNdwPlObhYGB5DQqwhEDQlNKuoqwVYSxkSZCSbHjnFFmUEtwSKRPU4kNK8PbDYYitwaE3QA==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: data-uri-to-buffer: 4.0.0 @@ -7721,8 +5573,8 @@ packages: engines: {node: '>= 0.4'} dev: true - /object.assign/4.1.2: - resolution: {integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==} + /object.assign/4.1.4: + resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 @@ -7731,13 +5583,13 @@ packages: object-keys: 1.1.1 dev: true - /object.values/1.1.5: - resolution: {integrity: sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==} + /object.values/1.1.6: + resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 + es-abstract: 1.20.4 dev: true /on-exit-leak-free/1.0.0: @@ -7820,13 +5672,6 @@ packages: engines: {node: '>=8'} dev: false - /p-limit/1.3.0: - resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} - engines: {node: '>=4'} - dependencies: - p-try: 1.0.0 - dev: true - /p-limit/2.3.0: resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} engines: {node: '>=6'} @@ -7841,13 +5686,6 @@ packages: yocto-queue: 0.1.0 dev: true - /p-locate/2.0.0: - resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} - engines: {node: '>=4'} - dependencies: - p-limit: 1.3.0 - dev: true - /p-locate/4.1.0: resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} engines: {node: '>=8'} @@ -7877,11 +5715,6 @@ packages: p-finally: 1.0.0 dev: false - /p-try/1.0.0: - resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} - engines: {node: '>=4'} - dev: true - /p-try/2.2.0: resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} engines: {node: '>=6'} @@ -7891,8 +5724,8 @@ packages: resolution: {integrity: sha512-HAKu/fG3HpHFO0AA8WE8q2g+gBJaZ9MG7fcKk+IJPLTGAD6Psw4443l+9DGRbOIh3/aXr7Phy0TjilYivJo5XQ==} dev: false - /pako/2.0.4: - resolution: {integrity: sha512-v8tweI900AUkZN6heMU/4Uy4cXRc2AYNRggVmTR+dEncawDJgCdLMximOVA2p4qO57WMynangsfGRb5WD6L1Bg==} + /pako/2.1.0: + resolution: {integrity: sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==} dev: false /parent-module/1.0.1: @@ -7926,11 +5759,6 @@ packages: resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} dev: false - /path-exists/3.0.0: - resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} - engines: {node: '>=4'} - dev: true - /path-exists/4.0.0: resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} engines: {node: '>=8'} @@ -7978,12 +5806,12 @@ packages: engines: {node: '>=4.0.0'} dev: false - /pg-pool/3.5.1_pg@8.7.3: - resolution: {integrity: sha512-6iCR0wVrro6OOHFsyavV+i6KYL4lVNyYAB9RD18w66xSzN+d8b66HiwuP30Gp1SH5O9T82fckkzsRjlrhD0ioQ==} + /pg-pool/3.5.2_pg@8.8.0: + resolution: {integrity: sha512-His3Fh17Z4eg7oANLob6ZvH8xIVen3phEZh2QuyrIl4dQSDVEabNducv6ysROKpDNPSD+12tONZVWfSgMvDD9w==} peerDependencies: pg: '>=8.0' dependencies: - pg: 8.7.3 + pg: 8.8.0 dev: false /pg-protocol/1.5.0: @@ -8001,11 +5829,11 @@ packages: postgres-interval: 1.2.0 dev: false - /pg/8.7.3: - resolution: {integrity: sha512-HPmH4GH4H3AOprDJOazoIcpI49XFsHCe8xlrjHkWiapdbHK+HLtbm/GQzXYAZwmPju/kzKhjaSfMACG+8cgJcw==} + /pg/8.8.0: + resolution: {integrity: sha512-UXYN0ziKj+AeNNP7VDMwrehpACThH7LUl/p8TDFpEUuSejCUIwGSfxpHsPvtM6/WXFy6SU4E5RG4IJV/TZAGjw==} engines: {node: '>= 8.0.0'} peerDependencies: - pg-native: '>=2.0.0' + pg-native: '>=3.0.1' peerDependenciesMeta: pg-native: optional: true @@ -8013,7 +5841,7 @@ packages: buffer-writer: 2.0.0 packet-reader: 1.0.0 pg-connection-string: 2.5.0 - pg-pool: 3.5.1_pg@8.7.3 + pg-pool: 3.5.2_pg@8.8.0 pg-protocol: 1.5.0 pg-types: 2.2.0 pgpass: 1.0.5 @@ -8036,15 +5864,15 @@ packages: /pino-abstract-transport/1.0.0: resolution: {integrity: sha512-c7vo5OpW4wIS42hUVcT5REsL8ZljsUfBjqV/e2sFxmFEFZiq1XLUp5EYLtuDH6PEHq9W1egWqRbnLUP5FuZmOA==} dependencies: - readable-stream: 4.1.0 + readable-stream: 4.2.0 split2: 4.1.0 - /pino-http/8.2.0: - resolution: {integrity: sha512-L5exMoXpqPFgBdCR0ftFRXWu20pt1r+3Kcf7R8A2QGdmkKZihYwB5t4yZ+bGrU/+h8APMAM83pTAPYMR7v84Rg==} + /pino-http/8.2.1: + resolution: {integrity: sha512-bdWAE4HYfFjDhKw2/N7BLNSIFAs+WDLZnetsGRpBdNEKq7/RoZUgblLS5OlMY257RPQml6J5QiiLkwxbstzWbA==} dependencies: fast-url-parser: 1.1.3 get-caller-file: 2.0.5 - pino: 8.3.1 + pino: 8.7.0 pino-std-serializers: 6.0.0 process-warning: 2.0.0 dev: false @@ -8055,15 +5883,15 @@ packages: dependencies: colorette: 2.0.19 dateformat: 4.6.3 - fast-copy: 2.1.3 + fast-copy: 2.1.7 fast-safe-stringify: 2.1.1 - help-me: 4.0.1 + help-me: 4.1.0 joycon: 3.1.1 - minimist: 1.2.6 + minimist: 1.2.7 on-exit-leak-free: 1.0.0 pino-abstract-transport: 1.0.0 pump: 3.0.0 - readable-stream: 4.1.0 + readable-stream: 4.2.0 secure-json-parse: 2.5.0 sonic-boom: 3.2.0 strip-json-comments: 3.1.1 @@ -8081,7 +5909,7 @@ packages: resolution: {integrity: sha512-iuhEDel3Z3hF9Jfe44DPXR8l07bhjuFY3GMHIXbjnY9XcafbyDDwl2sN2vw2GjMPf5Nkoe+OFao7ffn9SXaKDg==} hasBin: true dependencies: - fast-redact: 3.1.1 + fast-redact: 3.1.2 fast-safe-stringify: 2.1.1 flatstr: 1.0.12 pino-std-serializers: 3.2.0 @@ -8090,21 +5918,21 @@ packages: sonic-boom: 1.4.1 dev: false - /pino/8.3.1: - resolution: {integrity: sha512-G5KDVXr8viwc/n7iKfDyqqRZflY7OpJn0SDq1wagUhXkcPodZuSymLFziSuD/gCEcVG65IN5MPDY4ZMT9OJWfg==} + /pino/8.7.0: + resolution: {integrity: sha512-l9sA5uPxmZzwydhMWUcm1gI0YxNnYl8MfSr2h8cwLvOAzQLBLewzF247h/vqHe3/tt6fgtXeG9wdjjoetdI/vA==} hasBin: true dependencies: atomic-sleep: 1.0.0 - fast-redact: 3.1.1 + fast-redact: 3.1.2 on-exit-leak-free: 2.1.0 pino-abstract-transport: 1.0.0 pino-std-serializers: 6.0.0 process-warning: 2.0.0 quick-format-unescaped: 4.0.4 real-require: 0.2.0 - safe-stable-stringify: 2.3.1 + safe-stable-stringify: 2.4.1 sonic-boom: 3.2.0 - thread-stream: 2.0.0 + thread-stream: 2.2.0 dev: false /pirates/4.0.5: @@ -8124,14 +5952,6 @@ packages: engines: {node: '>=4'} dev: true - /pontem-types-bundle/1.0.15: - resolution: {integrity: sha512-PXQTwvb6QB5VW3UILU9w7du55j7hd2mZspfLPcum7XEwxhVhzH22dygd3waSNEhybTgcsV40XB4d3OIdwgaLvw==} - dependencies: - '@polkadot/keyring': 7.9.2 - '@polkadot/types': 6.12.1 - typescript: 4.7.4 - dev: false - /postgres-array/2.0.0: resolution: {integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==} engines: {node: '>=4'} @@ -8202,6 +6022,10 @@ packages: resolution: {integrity: sha512-+MmoAXoUX+VTHAlwns0h+kFUWFs/3FZy+ZuchkgjyOu3oioLAo2LB5aCfKPh2+P9O18i3m43tUEv3YqttSy0Ww==} dev: false + /process/0.11.10: + resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} + engines: {node: '>= 0.6.0'} + /prompts/2.4.2: resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} engines: {node: '>= 6'} @@ -8297,11 +6121,14 @@ packages: string_decoder: 1.3.0 util-deprecate: 1.0.2 - /readable-stream/4.1.0: - resolution: {integrity: sha512-sVisi3+P2lJ2t0BPbpK629j8wRW06yKGJUcaLAGXPAUhyUxVJm7VsCTit1PFgT4JHUDMrGNR+ZjSKpzGaRF3zw==} + /readable-stream/4.2.0: + resolution: {integrity: sha512-gJrBHsaI3lgBoGMW/jHZsQ/o/TIWiu5ENCJG1BB7fuCKzpFM8GaS2UoBVt9NO+oI+3FcrBNbUkl3ilDe09aY4A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: abort-controller: 3.0.0 + buffer: 6.0.3 + events: 3.3.0 + process: 0.11.10 /readdirp/3.6.0: resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} @@ -8309,11 +6136,6 @@ packages: dependencies: picomatch: 2.3.1 - /real-require/0.1.0: - resolution: {integrity: sha512-r/H9MzAWtrv8aSVjPCMFpDMl5q66GqtmmRkRjpHTsp4zBAa+snZyiQNlMONiUmEJcsnaw0wCauJ2GWODr/aFkg==} - engines: {node: '>= 12.13.0'} - dev: false - /real-require/0.2.0: resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==} engines: {node: '>= 12.13.0'} @@ -8329,8 +6151,8 @@ packages: /reflect-metadata/0.1.13: resolution: {integrity: sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==} - /regenerator-runtime/0.13.9: - resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==} + /regenerator-runtime/0.13.10: + resolution: {integrity: sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw==} dev: false /regexp.prototype.flags/1.4.3: @@ -8381,7 +6203,7 @@ packages: resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} hasBin: true dependencies: - is-core-module: 2.9.0 + is-core-module: 2.11.0 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 dev: true @@ -8418,13 +6240,6 @@ packages: dependencies: glob: 7.2.3 - /ripemd160/2.0.2: - resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==} - dependencies: - hash-base: 3.1.0 - inherits: 2.0.4 - dev: false - /run-async/2.4.1: resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} engines: {node: '>=0.12.0'} @@ -8440,17 +6255,12 @@ packages: engines: {npm: '>=2.0.0'} dependencies: tslib: 1.14.1 - - /rxjs/7.5.6: - resolution: {integrity: sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw==} - dependencies: - tslib: 2.4.0 + dev: true /rxjs/7.5.7: resolution: {integrity: sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==} dependencies: - tslib: 2.4.0 - dev: false + tslib: 2.4.1 /safe-buffer/5.1.2: resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} @@ -8458,14 +6268,22 @@ packages: /safe-buffer/5.2.1: resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + /safe-regex-test/1.0.0: + resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.1.3 + is-regex: 1.1.4 + dev: true + /safe-regex2/2.0.0: resolution: {integrity: sha512-PaUSFsUaNNuKwkBijoAPHAK6/eM6VirvyPWlZ7BAQy4D+hCvh4B6lIG+nPdhbFfIbP+gTGBcrdsOaUs0F+ZBOQ==} dependencies: ret: 0.2.2 dev: false - /safe-stable-stringify/2.3.1: - resolution: {integrity: sha512-kYBSfT+troD9cDA85VDnHZ1rpHC50O0g1e6WlGHVCz/g+JS+9WKLj+XwFYyR8UbrZN8ll9HUpDAAddY58MGisg==} + /safe-stable-stringify/2.4.1: + resolution: {integrity: sha512-dVHE6bMtS/bnL2mwualjc6IxEv1F+OCUpA46pKUj6F8uDbUM0jCCulPqRNPSnWwGNKx5etqMjZYdXtrm5KJZGA==} engines: {node: '>=10'} dev: false @@ -8486,10 +6304,6 @@ packages: ajv-keywords: 3.5.2_ajv@6.12.6 dev: true - /scryptsy/2.1.0: - resolution: {integrity: sha512-1CdSqHQowJBnMAFyPEBRfqag/YP9OF394FV+4YREIJX4ljD7OxvQRDayyoyyCk+senRjSkP6VnUNQmVQqB6g7w==} - dev: false - /secure-json-parse/2.5.0: resolution: {integrity: sha512-ZQruFgZnIWH+WyO9t5rWt4ZEGqCKPwhiw+YbzTwpmT9elgLrLcfuyUiSnwwjUiVy9r4VM3urtbNF1xmEh9IL2w==} @@ -8502,8 +6316,8 @@ packages: hasBin: true dev: true - /semver/7.3.7: - resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==} + /semver/7.3.8: + resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==} engines: {node: '>=10'} hasBin: true dependencies: @@ -8565,7 +6379,7 @@ packages: resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} dependencies: call-bind: 1.0.2 - get-intrinsic: 1.1.2 + get-intrinsic: 1.1.3 object-inspect: 1.12.2 dev: true @@ -8638,8 +6452,8 @@ packages: resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} dev: true - /stack-utils/2.0.5: - resolution: {integrity: sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==} + /stack-utils/2.0.6: + resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} engines: {node: '>=10'} dependencies: escape-string-regexp: 2.0.0 @@ -8675,20 +6489,20 @@ packages: is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 - /string.prototype.trimend/1.0.5: - resolution: {integrity: sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==} + /string.prototype.trimend/1.0.6: + resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==} dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 + es-abstract: 1.20.4 dev: true - /string.prototype.trimstart/1.0.5: - resolution: {integrity: sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==} + /string.prototype.trimstart/1.0.6: + resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==} dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 + es-abstract: 1.20.4 dev: true /string_decoder/1.1.1: @@ -8727,7 +6541,7 @@ packages: engines: {node: '>=8'} dev: true - /subscriptions-transport-ws/0.11.0_graphql@16.5.0: + /subscriptions-transport-ws/0.11.0_graphql@16.6.0: resolution: {integrity: sha512-8D4C6DIH5tGiAIpp5I0wD/xRlNiZAPGHygzCe7VzyzUoxHtawzjNAY9SUTXU05/EY2NMY9/9GF0ycizkXr1CWQ==} deprecated: The `subscriptions-transport-ws` package is no longer maintained. We recommend you use `graphql-ws` instead. For help migrating Apollo software to `graphql-ws`, see https://www.apollographql.com/docs/apollo-server/data/subscriptions/#switching-from-subscriptions-transport-ws For general help using `graphql-ws`, see https://github.com/enisdenjo/graphql-ws/blob/master/README.md peerDependencies: @@ -8735,7 +6549,7 @@ packages: dependencies: backo2: 1.0.2 eventemitter3: 3.1.2 - graphql: 16.5.0 + graphql: 16.6.0 iterall: 1.3.0 symbol-observable: 1.2.0 ws: 7.5.9 @@ -8744,8 +6558,8 @@ packages: - utf-8-validate dev: false - /superagent/8.0.0: - resolution: {integrity: sha512-iudipXEel+SzlP9y29UBWGDjB+Zzag+eeA1iLosaR2YHBRr1Q1kC29iBrF2zIVD9fqVbpZnXkN/VJmwFMVyNWg==} + /superagent/8.0.3: + resolution: {integrity: sha512-oBC+aNsCjzzjmO5AOPBPFS+Z7HPzlx+DQr/aHwM08kI+R24gsDmAS1LMfza1fK+P+SKlTAoNZpOvooE/pRO1HA==} engines: {node: '>=6.4.0 <13 || >=14'} dependencies: component-emitter: 1.3.0 @@ -8757,18 +6571,17 @@ packages: methods: 1.1.2 mime: 2.6.0 qs: 6.11.0 - readable-stream: 3.6.0 - semver: 7.3.7 + semver: 7.3.8 transitivePeerDependencies: - supports-color dev: true - /supertest/6.2.4: - resolution: {integrity: sha512-M8xVnCNv+q2T2WXVzxDECvL2695Uv2uUj2O0utxsld/HRyJvOU8W9f1gvsYxSNU4wmIe0/L/ItnpU4iKq0emDA==} + /supertest/6.3.1: + resolution: {integrity: sha512-hRohNeIfk/cA48Cxpa/w48hktP6ZaRqXb0QV5rLvW0C7paRsBU3Q5zydzYrslOJtj/gd48qx540jKtcs6vG1fQ==} engines: {node: '>=6.4.0'} dependencies: methods: 1.1.2 - superagent: 8.0.0 + superagent: 8.0.3 transitivePeerDependencies: - supports-color dev: true @@ -8793,8 +6606,8 @@ packages: has-flag: 4.0.0 dev: true - /supports-hyperlinks/2.2.0: - resolution: {integrity: sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==} + /supports-hyperlinks/2.3.0: + resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==} engines: {node: '>=8'} dependencies: has-flag: 4.0.0 @@ -8826,11 +6639,11 @@ packages: engines: {node: '>=8'} dependencies: ansi-escapes: 4.3.2 - supports-hyperlinks: 2.2.0 + supports-hyperlinks: 2.3.0 dev: true - /terser-webpack-plugin/5.3.3_webpack@5.73.0: - resolution: {integrity: sha512-Fx60G5HNYknNTNQnzQ1VePRuu89ZVYWfjRAeT5rITuCY/1b08s49e5kSQwHDirKZWuoKOBRFS98EUUoZ9kLEwQ==} + /terser-webpack-plugin/5.3.6_webpack@5.73.0: + resolution: {integrity: sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==} engines: {node: '>= 10.13.0'} peerDependencies: '@swc/core': '*' @@ -8845,16 +6658,16 @@ packages: uglify-js: optional: true dependencies: - '@jridgewell/trace-mapping': 0.3.14 + '@jridgewell/trace-mapping': 0.3.17 jest-worker: 27.5.1 schema-utils: 3.1.1 serialize-javascript: 6.0.0 - terser: 5.14.2 + terser: 5.15.1 webpack: 5.73.0 dev: true - /terser-webpack-plugin/5.3.3_webpack@5.74.0: - resolution: {integrity: sha512-Fx60G5HNYknNTNQnzQ1VePRuu89ZVYWfjRAeT5rITuCY/1b08s49e5kSQwHDirKZWuoKOBRFS98EUUoZ9kLEwQ==} + /terser-webpack-plugin/5.3.6_webpack@5.75.0: + resolution: {integrity: sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==} engines: {node: '>= 10.13.0'} peerDependencies: '@swc/core': '*' @@ -8869,21 +6682,21 @@ packages: uglify-js: optional: true dependencies: - '@jridgewell/trace-mapping': 0.3.14 + '@jridgewell/trace-mapping': 0.3.17 jest-worker: 27.5.1 schema-utils: 3.1.1 serialize-javascript: 6.0.0 - terser: 5.14.2 - webpack: 5.74.0 + terser: 5.15.1 + webpack: 5.75.0 dev: true - /terser/5.14.2: - resolution: {integrity: sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA==} + /terser/5.15.1: + resolution: {integrity: sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==} engines: {node: '>=10'} hasBin: true dependencies: '@jridgewell/source-map': 0.3.2 - acorn: 8.8.0 + acorn: 8.8.1 commander: 2.20.3 source-map-support: 0.5.21 dev: true @@ -8914,10 +6727,10 @@ packages: any-promise: 1.3.0 dev: false - /thread-stream/2.0.0: - resolution: {integrity: sha512-tnbzCbIrA4Khq5SJt/Fyz5DlE8pUnPR3//nWv+cqdRktvAl2NuC9O08HHq2Ifa10bhkvHLuzcesNjaH15EgTXA==} + /thread-stream/2.2.0: + resolution: {integrity: sha512-rUkv4/fnb4rqy/gGy7VuqK6wE1+1DOCOWy4RMeaV69ZHMP11tQKZvZSip1yTgrKCMZzEMcCL/bKfHvSfDHx+iQ==} dependencies: - real-require: 0.1.0 + real-require: 0.2.0 dev: false /through/2.3.8: @@ -8931,13 +6744,6 @@ packages: xtend: 4.0.2 dev: false - /timers-ext/0.1.7: - resolution: {integrity: sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ==} - dependencies: - es5-ext: 0.10.62 - next-tick: 1.1.0 - dev: false - /tiny-lru/8.0.2: resolution: {integrity: sha512-ApGvZ6vVvTNdsmt676grvCkUCGwzG9IqXma5Z07xJgiC5L7akUMof5U8G2JTI9Rz/ovtVhJBlY6mNhEvtjzOIg==} engines: {node: '>=6'} @@ -8973,8 +6779,8 @@ packages: hasBin: true dev: true - /ts-jest/28.0.7_lhw3xkmzugq5tscs3x2ndm4sby: - resolution: {integrity: sha512-wWXCSmTwBVmdvWrOpYhal79bDpioDy4rTT+0vyUnE3ZzM7LOAAGG9NXwzkEL/a516rQEgnMmS/WKP9jBPCVJyA==} + /ts-jest/28.0.8_lhw3xkmzugq5tscs3x2ndm4sby: + resolution: {integrity: sha512-5FaG0lXmRPzApix8oFG8RKjAz4ehtm8yMKOTy5HX3fY6W8kmvOrmcY0hKDElW52FJov+clhUbrKAqofnj4mXTg==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} hasBin: true peerDependencies: @@ -8997,18 +6803,18 @@ packages: '@jest/types': 28.1.3 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 28.1.3_pqtjtaupojlaguyui6z2iois64 + jest: 28.1.3_dnlfjp7n5lpfgnj4digwzn5fhe jest-util: 28.1.3 json5: 2.2.1 lodash.memoize: 4.1.2 make-error: 1.3.6 - semver: 7.3.7 + semver: 7.3.8 typescript: 4.7.4 - yargs-parser: 21.0.1 + yargs-parser: 21.1.1 dev: true - /ts-loader/9.3.1_xnp4kzegbjokq62cajex2ovgkm: - resolution: {integrity: sha512-OkyShkcZTsTwyS3Kt7a4rsT/t2qvEVQuKCTg4LJmpj9fhFR7ukGdZwV6Qq3tRUkqcXtfGpPR7+hFKHCG/0d3Lw==} + /ts-loader/9.4.1_l2co7ao223gzrfox7yaiyzd7wu: + resolution: {integrity: sha512-384TYAqGs70rn9F0VBnh6BPTfhga7yFNdC5gXbQpDrBj9/KsT4iRkGqKXhziofHOlE2j6YEaiTYVGKKvPhGWvw==} engines: {node: '>=12.0.0'} peerDependencies: typescript: '*' @@ -9017,12 +6823,12 @@ packages: chalk: 4.1.2 enhanced-resolve: 5.10.0 micromatch: 4.0.5 - semver: 7.3.7 + semver: 7.3.8 typescript: 4.7.4 - webpack: 5.74.0 + webpack: 5.75.0 dev: true - /ts-node/10.9.1_ow5yu25silzxcp7pmv7jv4j54m: + /ts-node/10.9.1_jyxu4bw6aqgjw6ykt6t6hx4o6e: resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: @@ -9041,8 +6847,8 @@ packages: '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.3 - '@types/node': 16.11.47 - acorn: 8.8.0 + '@types/node': 16.18.3 + acorn: 8.8.1 acorn-walk: 8.2.0 arg: 4.1.3 create-require: 1.1.1 @@ -9065,24 +6871,29 @@ packages: dependencies: '@types/json5': 0.0.29 json5: 1.0.1 - minimist: 1.2.6 + minimist: 1.2.7 strip-bom: 3.0.0 dev: true - /tsconfig-paths/4.0.0: - resolution: {integrity: sha512-SLBg2GBKlR6bVtMgJJlud/o3waplKtL7skmLkExomIiaAtLGtVsoXIqP3SYdjbcH9lq/KVv7pMZeCBpLYOit6Q==} + /tsconfig-paths/4.1.0: + resolution: {integrity: sha512-AHx4Euop/dXFC+Vx589alFba8QItjF+8hf8LtmuiCwHyI4rHXQtOOENaM8kvYf5fR0dRChy3wzWIZ9WbB7FWow==} + engines: {node: '>=6'} dependencies: json5: 2.2.1 - minimist: 1.2.6 + minimist: 1.2.7 strip-bom: 3.0.0 dev: true /tslib/1.14.1: resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + dev: true /tslib/2.4.0: resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} + /tslib/2.4.1: + resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==} + /tsutils/3.21.0_typescript@4.7.4: resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} @@ -9123,8 +6934,8 @@ packages: resolution: {integrity: sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==} dev: false - /type/2.6.1: - resolution: {integrity: sha512-OvgH5rB0XM+iDZGQ1Eg/o7IZn0XYJFVrN/9FQ4OWIYILyJJgVP2s1hLTOFn6UOZoDUI/HctGa0PFlE2n2HW3NQ==} + /type/2.7.2: + resolution: {integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==} dev: false /typedarray-to-buffer/3.1.5: @@ -9137,8 +6948,8 @@ packages: resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} dev: true - /typeorm/0.3.7_pg@8.7.3+ts-node@10.9.1: - resolution: {integrity: sha512-MsPJeP6Zuwfe64c++l80+VRqpGEGxf0CkztIEnehQ+CMmQPSHjOnFbFxwBuZ2jiLqZTjLk2ZqQdVF0RmvxNF3Q==} + /typeorm/0.3.10_pg@8.8.0+ts-node@10.9.1: + resolution: {integrity: sha512-VMKiM84EpJQ+Mz9xDIPqnfplWhyUy1d8ccaKdMY9obifxJOTFnv8GYVyPsGwG8Lk7Nb8MlttHyHWENGAhBA3WA==} engines: {node: '>= 12.9.0'} hasBin: true peerDependencies: @@ -9195,25 +7006,25 @@ packages: typeorm-aurora-data-api-driver: optional: true dependencies: - '@sqltools/formatter': 1.2.3 - app-root-path: 3.0.0 + '@sqltools/formatter': 1.2.5 + app-root-path: 3.1.0 buffer: 6.0.3 chalk: 4.1.2 cli-highlight: 2.1.11 - date-fns: 2.29.1 + date-fns: 2.29.3 debug: 4.3.4 - dotenv: 16.0.1 + dotenv: 16.0.3 glob: 7.2.3 js-yaml: 4.1.0 mkdirp: 1.0.4 - pg: 8.7.3 + pg: 8.8.0 reflect-metadata: 0.1.13 sha.js: 2.4.11 - ts-node: 10.9.1_ow5yu25silzxcp7pmv7jv4j54m - tslib: 2.4.0 + ts-node: 10.9.1_jyxu4bw6aqgjw6ykt6t6hx4o6e + tslib: 2.4.1 uuid: 8.3.2 xml2js: 0.4.23 - yargs: 17.5.1 + yargs: 17.6.2 transitivePeerDependencies: - supports-color dev: false @@ -9237,13 +7048,13 @@ packages: engines: {node: '>= 10.0.0'} dev: true - /update-browserslist-db/1.0.5_browserslist@4.21.3: - resolution: {integrity: sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q==} + /update-browserslist-db/1.0.10_browserslist@4.21.4: + resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' dependencies: - browserslist: 4.21.3 + browserslist: 4.21.4 escalade: 3.1.1 picocolors: 1.0.0 dev: true @@ -9253,8 +7064,8 @@ packages: dependencies: punycode: 2.1.1 - /utf-8-validate/5.0.9: - resolution: {integrity: sha512-Yek7dAy0v3Kl0orwMlvi7TPtiCNrdfHNd7Gcc/pLq4BLXqfAmd0J7OWMizUQnTTJsyjKn02mU7anqwfmUP4J8Q==} + /utf-8-validate/5.0.10: + resolution: {integrity: sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==} engines: {node: '>=6.14.2'} requiresBuild: true dependencies: @@ -9268,6 +7079,11 @@ packages: resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} hasBin: true + /uuid/9.0.0: + resolution: {integrity: sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==} + hasBin: true + dev: false + /uuidv4/6.2.13: resolution: {integrity: sha512-AXyzMjazYB3ovL3q051VLH06Ixj//Knx7QnUSi1T//Ie3io6CpsPu9nVMOx5MoLWh6xV0B9J0hIaxungxXUbPQ==} dependencies: @@ -9278,17 +7094,13 @@ packages: /v8-compile-cache-lib/3.0.1: resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} - /v8-compile-cache/2.3.0: - resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} - dev: true - /v8-to-istanbul/9.0.1: resolution: {integrity: sha512-74Y4LqY74kLE6IFyIjPtkSTWzUZmj8tdHT9Ii/26dvQ6K9Dl2NbEfj0XgU2sHCtKgt5VupqhlO/5aWuqS+IY1w==} engines: {node: '>=10.12.0'} dependencies: - '@jridgewell/trace-mapping': 0.3.14 + '@jridgewell/trace-mapping': 0.3.17 '@types/istanbul-lib-coverage': 2.0.4 - convert-source-map: 1.8.0 + convert-source-map: 1.9.0 dev: true /validator/13.7.0: @@ -9322,7 +7134,7 @@ packages: /wcwidth/1.0.1: resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} dependencies: - defaults: 1.0.3 + defaults: 1.0.4 dev: true /web-streams-polyfill/3.2.1: @@ -9358,9 +7170,9 @@ packages: '@webassemblyjs/ast': 1.11.1 '@webassemblyjs/wasm-edit': 1.11.1 '@webassemblyjs/wasm-parser': 1.11.1 - acorn: 8.8.0 - acorn-import-assertions: 1.8.0_acorn@8.8.0 - browserslist: 4.21.3 + acorn: 8.8.1 + acorn-import-assertions: 1.8.0_acorn@8.8.1 + browserslist: 4.21.4 chrome-trace-event: 1.0.3 enhanced-resolve: 5.10.0 es-module-lexer: 0.9.3 @@ -9374,7 +7186,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.1.1 tapable: 2.2.1 - terser-webpack-plugin: 5.3.3_webpack@5.73.0 + terser-webpack-plugin: 5.3.6_webpack@5.73.0 watchpack: 2.4.0 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -9383,8 +7195,8 @@ packages: - uglify-js dev: true - /webpack/5.74.0: - resolution: {integrity: sha512-A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA==} + /webpack/5.75.0: + resolution: {integrity: sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==} engines: {node: '>=10.13.0'} hasBin: true peerDependencies: @@ -9398,9 +7210,9 @@ packages: '@webassemblyjs/ast': 1.11.1 '@webassemblyjs/wasm-edit': 1.11.1 '@webassemblyjs/wasm-parser': 1.11.1 - acorn: 8.8.0 - acorn-import-assertions: 1.8.0_acorn@8.8.0 - browserslist: 4.21.3 + acorn: 8.8.1 + acorn-import-assertions: 1.8.0_acorn@8.8.1 + browserslist: 4.21.4 chrome-trace-event: 1.0.3 enhanced-resolve: 5.10.0 es-module-lexer: 0.9.3 @@ -9414,7 +7226,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.1.1 tapable: 2.2.1 - terser-webpack-plugin: 5.3.3_webpack@5.74.0 + terser-webpack-plugin: 5.3.6_webpack@5.75.0 watchpack: 2.4.0 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -9427,11 +7239,11 @@ packages: resolution: {integrity: sha512-PRDso2sGwF6kM75QykIesBijKSVceR6jL2G8NGYyq2XrItNC2P5/qL5XeR056GhA+Ly7JMFvJb9I312mJfmqnQ==} engines: {node: '>=4.0.0'} dependencies: - bufferutil: 4.0.6 + bufferutil: 4.0.7 debug: 2.6.9 es5-ext: 0.10.62 typedarray-to-buffer: 3.1.5 - utf-8-validate: 5.0.9 + utf-8-validate: 5.0.10 yaeti: 0.0.6 transitivePeerDependencies: - supports-color @@ -9496,9 +7308,9 @@ packages: /wrappy/1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - /write-file-atomic/4.0.1: - resolution: {integrity: sha512-nSKUxgAbyioruk6hU87QzVbY279oYT6uiwgDoujth2ju4mJ+TZau7SQBhtbTmUyuNYTuXnSyRn66FV0+eCgcrQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16} + /write-file-atomic/4.0.2: + resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: imurmurhash: 0.1.4 signal-exit: 3.0.7 @@ -9517,8 +7329,8 @@ packages: optional: true dev: false - /ws/8.8.1: - resolution: {integrity: sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA==} + /ws/8.11.0: + resolution: {integrity: sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==} engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 @@ -9543,8 +7355,8 @@ packages: engines: {node: '>=4.0'} dev: false - /xss/1.0.13: - resolution: {integrity: sha512-clu7dxTm1e8Mo5fz3n/oW3UCXBfV89xZ72jM8yzo1vR/pIS0w3sgB3XV2H8Vm6zfGnHL0FzvLJPJEBhd86/z4Q==} + /xss/1.0.14: + resolution: {integrity: sha512-og7TEJhXvn1a7kzZGQ7ETjdQVS2UfZyTlsEdDOqvQF7GoxNfY+0YLCzBy1kPdsDDx4QuNAonQPddpsn6Xl/7sw==} engines: {node: '>= 0.10.0'} hasBin: true dependencies: @@ -9557,12 +7369,6 @@ packages: engines: {node: '>=0.4'} dev: false - /xxhashjs/0.2.2: - resolution: {integrity: sha512-AkTuIuVTET12tpsVIQo+ZU6f/qDmKuRUcjaqR+OIvm+aCBsZ95i7UVY5WJ9TMsSaZ0DA2WxoZ4acu0sPH+OKAw==} - dependencies: - cuint: 0.2.2 - dev: false - /y18n/5.0.8: resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} engines: {node: '>=10'} @@ -9589,8 +7395,8 @@ packages: engines: {node: '>=10'} dev: false - /yargs-parser/21.0.1: - resolution: {integrity: sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg==} + /yargs-parser/21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} engines: {node: '>=12'} /yargs/16.2.0: @@ -9606,17 +7412,17 @@ packages: yargs-parser: 20.2.9 dev: false - /yargs/17.5.1: - resolution: {integrity: sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA==} + /yargs/17.6.2: + resolution: {integrity: sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==} engines: {node: '>=12'} dependencies: - cliui: 7.0.4 + cliui: 8.0.1 escalade: 3.1.1 get-caller-file: 2.0.5 require-directory: 2.1.1 string-width: 4.2.3 y18n: 5.0.8 - yargs-parser: 21.0.1 + yargs-parser: 21.1.1 /yn/3.1.1: resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} diff --git a/src/app.module.ts b/src/app.module.ts index 7fa7596..dbddcb4 100644 --- a/src/app.module.ts +++ b/src/app.module.ts @@ -1,3 +1,4 @@ +import '@polkadot/api-augment' import { ApolloDriver, ApolloDriverConfig } from '@nestjs/apollo' import { Module } from '@nestjs/common' import { GraphQLModule } from '@nestjs/graphql' diff --git a/src/contracts/contracts.service.spec.ts b/src/contracts/contracts.service.spec.ts index 07bc592..4c7237e 100644 --- a/src/contracts/contracts.service.spec.ts +++ b/src/contracts/contracts.service.spec.ts @@ -7,6 +7,7 @@ import { apiMock } from '../../mocks/api-mock' import { BASE64_METADATA } from '../../mocks/base64-metadata.mock' import { mockContractQueries } from '../../mocks/contracts-mocks' import { mockPinoService } from '../../mocks/pino-mocks' +import { EnvModule } from '../env/env.module' import { connect } from '../utils' import { ContractsService } from './contracts.service' import { Contract } from './entity/contract.entity' @@ -28,6 +29,7 @@ describe('ContractService', () => { beforeAll(async () => { const module: TestingModule = await Test.createTestingModule({ + imports: [EnvModule], providers: [ ContractsService, { diff --git a/src/contracts/contracts.service.ts b/src/contracts/contracts.service.ts index 0a7e634..ebeb539 100644 --- a/src/contracts/contracts.service.ts +++ b/src/contracts/contracts.service.ts @@ -3,16 +3,17 @@ import { InjectRepository } from '@nestjs/typeorm' import { Abi, ContractPromise } from '@polkadot/api-contract' import { InjectPinoLogger, PinoLogger } from 'nestjs-pino' import { Repository } from 'typeorm' +import { EnvService } from '../env/env.service' import { connect } from '../utils' import { FetchContractsInput } from './dtos/fetch-contracts.input' import { Contract, ContractQuery } from './entity/contract.entity' -const WS_PROVIDER = process.env.WS_PROVIDER || 'ws://127.0.0.1:9944' @Injectable() export class ContractsService { constructor( @InjectPinoLogger(ContractsService.name) private readonly logger: PinoLogger, + private readonly env: EnvService, @InjectRepository(Contract) private readonly contractRepository: Repository, ) {} @@ -47,7 +48,7 @@ export class ContractsService { } async getContractQueries(contractAddress: string): Promise { - const api = await connect(WS_PROVIDER) + const api = await connect(this.env.WS_PROVIDER, this.logger) const contract = await this.findOne(contractAddress) const { address, metadata } = contract if (!address || !metadata) { diff --git a/src/db/db.module.ts b/src/db/db.module.ts index ed204ae..035d5c3 100644 --- a/src/db/db.module.ts +++ b/src/db/db.module.ts @@ -27,7 +27,7 @@ import { Transaction } from '../transactions/entity/transaction.entity' keepConnectionAlive: false, } - if (!env.isProduction()) { + if (!env.DATABASE_SSL_CA) { return config } diff --git a/src/env/env.service.ts b/src/env/env.service.ts index 6dde667..3d7564c 100644 --- a/src/env/env.service.ts +++ b/src/env/env.service.ts @@ -21,9 +21,13 @@ export class EnvService { public readonly DATABASE_NAME: string public readonly DATABASE_USERNAME: string public readonly DATABASE_PASSWORD: string + public readonly DATABASE_SSL_CA: string public readonly DATABASE_RETRY_ATTEMPTS: number public readonly DATABASE_RETRY_DELAY: number - public readonly DATABASE_SSL_CA: string + public readonly WS_PROVIDER: string + public readonly LOAD_ALL_BLOCKS: boolean + public readonly FIRST_BLOCK_TO_LOAD: number + public readonly BLOCKS_CONCURRENCY: number constructor(private readonly config: ConfigService) { // public env variables @@ -41,9 +45,13 @@ export class EnvService { this.DATABASE_NAME = this.config.get('DATABASE_NAME', '') this.DATABASE_USERNAME = this.config.get('DATABASE_USERNAME', '') this.DATABASE_PASSWORD = this.config.get('DATABASE_PASSWORD', 'password') + this.DATABASE_SSL_CA = this.config.get('DATABASE_SSL_CA', '') this.DATABASE_RETRY_ATTEMPTS = parseInt(this.config.get('DATABASE_RETRY_ATTEMPTS', '20'), 10) this.DATABASE_RETRY_DELAY = parseInt(this.config.get('DATABASE_RETRY_DELAY', '6000'), 10) - this.DATABASE_SSL_CA = this.config.get('DATABASE_SSL_CA', '') + this.WS_PROVIDER = this.config.get('WS_PROVIDER', '') + this.LOAD_ALL_BLOCKS = config.get('LOAD_ALL_BLOCKS', 'false') === 'true' + this.FIRST_BLOCK_TO_LOAD = parseInt(this.config.get('FIRST_BLOCK_TO_LOAD', '0'), 10) + this.BLOCKS_CONCURRENCY = parseInt(this.config.get('BLOCKS_CONCURRENCY', '1000'), 10) } public isProduction(): boolean { diff --git a/src/env/env.validation.ts b/src/env/env.validation.ts index 3080abc..5df57d8 100644 --- a/src/env/env.validation.ts +++ b/src/env/env.validation.ts @@ -23,22 +23,22 @@ export class EnvironmentVariables { LOG_LEVEL: PinoLevel = 'debug' @IsBooleanString() - GRAPHQL_DEBUG = false + GRAPHQL_DEBUG: string | undefined @IsBooleanString() - GRAPHQL_PLAYGROUND = false + GRAPHQL_PLAYGROUND: string | undefined @IsBooleanString() - GRAPHQL_SORT_SCHEMA = true + GRAPHQL_SORT_SCHEMA: string | undefined @IsBooleanString() - GRAPHQL_INTROSPECTION = false + GRAPHQL_INTROSPECTION: string | undefined @IsString() DATABASE_HOST: string | undefined @IsNumberString() - DATABASE_PORT = '5432' + DATABASE_PORT: string | undefined @IsString() DATABASE_NAME: string | undefined @@ -49,6 +49,9 @@ export class EnvironmentVariables { @IsString() DATABASE_PASSWORD: string | undefined + @IsString() + DATABASE_SSL_CA: string | undefined + @IsNumberString() DATABASE_RETRY_ATTEMPTS: string | undefined @@ -56,7 +59,16 @@ export class EnvironmentVariables { DATABASE_RETRY_DELAY: string | undefined @IsString() - DATABASE_SSL_CA: string | undefined + WS_PROVIDER: string | undefined + + @IsBooleanString() + LOAD_ALL_BLOCKS: boolean | undefined + + @IsNumberString() + FIRST_BLOCK_TO_LOAD: number | undefined + + @IsNumberString() + BLOCKS_CONCURRENCY: number | undefined } export function validate(config: Record) { diff --git a/src/events/events.service.spec.ts b/src/events/events.service.spec.ts index 4037943..2732bcd 100644 --- a/src/events/events.service.spec.ts +++ b/src/events/events.service.spec.ts @@ -9,6 +9,7 @@ import { mockPinoService } from '../../mocks/pino-mocks' import { mockTransaction } from '../../mocks/transactions-mock' import { ContractsService } from '../contracts/contracts.service' import { Contract } from '../contracts/entity/contract.entity' +import { EnvModule } from '../env/env.module' import { Event } from './entity/event.entity' import { EventsService } from './events.service' @@ -19,6 +20,7 @@ describe('EventsService', () => { beforeEach(async () => { const module: TestingModule = await Test.createTestingModule({ + imports: [EnvModule], providers: [ EventsService, { diff --git a/src/subscriptions/subscriptions.service.spec.ts b/src/subscriptions/subscriptions.service.spec.ts index 34e0fca..9d56c80 100644 --- a/src/subscriptions/subscriptions.service.spec.ts +++ b/src/subscriptions/subscriptions.service.spec.ts @@ -6,10 +6,12 @@ import { mockEvents } from '../../mocks/events-mocks' import { mockPinoService } from '../../mocks/pino-mocks' import { mockExtrinsics, mockTimestamp, mockTransactions } from '../../mocks/transactions-mock' import { BlocksService } from '../blocks/blocks.service' +import { EnvModule } from '../env/env.module' import { EventsService } from '../events/events.service' import { TransactionsService } from '../transactions/transactions.service' import { connect } from '../utils' import { SubscriptionsService } from './subscriptions.service' + jest.mock('@polkadot/api') jest.mock('../utils') @@ -29,6 +31,7 @@ describe('subscriptionsService', () => { beforeEach(async () => { const module: TestingModule = await Test.createTestingModule({ + imports: [EnvModule], providers: [ SubscriptionsService, { diff --git a/src/subscriptions/subscriptions.service.ts b/src/subscriptions/subscriptions.service.ts index 4b0139c..69f38df 100644 --- a/src/subscriptions/subscriptions.service.ts +++ b/src/subscriptions/subscriptions.service.ts @@ -1,27 +1,23 @@ /* eslint-disable @typescript-eslint/no-var-requires */ import { Injectable, OnModuleInit } from '@nestjs/common' -import '@polkadot/api-augment' import { ApiPromise } from '@polkadot/api' import { BlockHash, Header } from '@polkadot/types/interfaces' import { InjectPinoLogger, PinoLogger } from 'nestjs-pino' import PQueue from 'p-queue' import { BlocksService } from '../blocks/blocks.service' +import { EnvService } from '../env/env.service' import { EventsService } from '../events/events.service' import { TransactionsService } from '../transactions/transactions.service' import { connect } from '../utils' -const retry = require('async-await-retry') - -const FIRST_BLOCK_TO_LOAD = Number(process.env.FIRST_BLOCK_TO_LOAD) || 0 -const BLOCKS_CONCURRENCY = Number(process.env.BLOCKS_CONCURRENCY) || 1000 -const LOAD_ALL_BLOCKS = process.env.LOAD_ALL_BLOCKS === 'true' -const WS_PROVIDER = process.env.WS_PROVIDER || 'ws://127.0.0.1:9944' +const asyncRetry = require('async-await-retry') @Injectable() export class SubscriptionsService implements OnModuleInit { constructor( @InjectPinoLogger(SubscriptionsService.name) private readonly logger: PinoLogger, + private readonly env: EnvService, private readonly blocksService: BlocksService, private transactionsService: TransactionsService, private readonly eventsService: EventsService, @@ -38,10 +34,10 @@ export class SubscriptionsService implements OnModuleInit { } async syncBlocks() { - const api = await connect(WS_PROVIDER) + const api = await connect(this.env.WS_PROVIDER, this.logger) const lastDBBlockNumber = (await this.blocksService.getLastBlock())?.number || 0 const lastBlockNumber = (await api.rpc.chain.getHeader()).number.toNumber() - const loadFromBlockNumber = LOAD_ALL_BLOCKS ? FIRST_BLOCK_TO_LOAD : lastDBBlockNumber + const loadFromBlockNumber = this.env.LOAD_ALL_BLOCKS ? this.env.FIRST_BLOCK_TO_LOAD : lastDBBlockNumber await this.subscribeNewHeads(api) @@ -55,7 +51,7 @@ export class SubscriptionsService implements OnModuleInit { const blocksToLoad = this.getBlocksToLoad(loadFromBlockNumber, lastBlockNumber) this.logger.info(`Loading ${blocksToLoad.length} blocks. This may take a while...`) this.logger.debug(`From: ${blocksToLoad[0]}. To: ${blocksToLoad[blocksToLoad.length - 1]}`) - const queue = new PQueue({ concurrency: BLOCKS_CONCURRENCY }) + const queue = new PQueue({ concurrency: this.env.BLOCKS_CONCURRENCY }) const q = blocksToLoad.map( (blockNumber) => () => new Promise(async (res, rej) => { @@ -91,7 +87,7 @@ export class SubscriptionsService implements OnModuleInit { async processBlock(api: ApiPromise, blockNumber: number) { try { - return await retry( + return await asyncRetry( async () => { const hash = await api.rpc.chain.getBlockHash(blockNumber) const blockData = await this.getBlockData(api, hash) diff --git a/src/utils.spec.ts b/src/utils.spec.ts index 0467182..2611bd4 100644 --- a/src/utils.spec.ts +++ b/src/utils.spec.ts @@ -1,7 +1,9 @@ import { ApiPromise } from '@polkadot/api' import { apiMock } from '../mocks/api-mock' import { connect } from './utils' + jest.mock('@polkadot/api') + describe('Utils', () => { let api: ApiPromise @@ -13,6 +15,7 @@ describe('Utils', () => { it('should return an ApiPromise instance', async () => { const result = await connect('ws://localhost:9944') + expect(result).toEqual(api) }) }) diff --git a/src/utils.ts b/src/utils.ts index 965012d..3f95a23 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -1,5 +1,26 @@ import { ApiPromise, WsProvider } from '@polkadot/api' +import { PinoLogger } from 'nestjs-pino' -export const connect = async (provider: string | string[] | undefined) => { - return ApiPromise.create({ provider: new WsProvider(provider) }) +export const connect = async (endpoint: string, logger: PinoLogger | Console = console) => { + const provider = new WsProvider(endpoint, false) + + logger.info(`Connecting to ${endpoint}...`) + + await provider.connect() + + provider.on('connected', () => { + logger.info(`Connected to ${endpoint}`) + }) + + provider.on('disconnected', async () => { + logger.warn(`Disconnected to ${endpoint}, retying...`) + + await provider.connect() + }) + + provider.on('error', async (err) => { + logger.error({ err }, `Error connecting to ${endpoint}`) + }) + + return ApiPromise.create({ provider }) } diff --git a/tsconfig.json b/tsconfig.json index 725e1f5..f6c6c29 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -21,6 +21,6 @@ "noImplicitThis": true, "noUnusedLocals": true, "noFallthroughCasesInSwitch": true, - "skipLibCheck": true, + "skipLibCheck": true } }